diff options
author | Guillem Jover <guillem@debian.org> | 2012-05-28 08:34:26 +0200 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2016-01-26 13:34:02 +0100 |
commit | cf66d0e6f0e81db7757af9af7eee39de028f2d24 (patch) | |
tree | d18f6757c403343efc450d17e73737c6ac25c949 /scripts/Dpkg/Control/Types.pm | |
parent | 9497c00cf86c449115353284908198ee7567e440 (diff) | |
download | dpkg-cf66d0e6f0e81db7757af9af7eee39de028f2d24.tar.gz |
Dpkg::Control: Add new CTRL_REPO_RELEASE control block type
Diffstat (limited to 'scripts/Dpkg/Control/Types.pm')
-rw-r--r-- | scripts/Dpkg/Control/Types.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/Dpkg/Control/Types.pm b/scripts/Dpkg/Control/Types.pm index 09e12d155..ba3658d45 100644 --- a/scripts/Dpkg/Control/Types.pm +++ b/scripts/Dpkg/Control/Types.pm @@ -21,6 +21,7 @@ our @EXPORT = qw( CTRL_UNKNOWN CTRL_INFO_SRC CTRL_INFO_PKG + CTRL_REPO_RELEASE CTRL_INDEX_SRC CTRL_INDEX_PKG CTRL_PKG_SRC @@ -61,6 +62,8 @@ use constant { CTRL_FILE_VENDOR => 128, # File in $Dpkg::CONFDIR/origins CTRL_FILE_STATUS => 256, # $Dpkg::ADMINDIR/status CTRL_CHANGELOG => 512, # Output of dpkg-parsechangelog + # Repository's (In)Release file. + CTRL_REPO_RELEASE => 1024, }; =head1 CHANGES |