diff options
author | Niels Thykier <niels@thykier.net> | 2018-11-04 08:11:09 +0000 |
---|---|---|
committer | Niels Thykier <niels@thykier.net> | 2018-11-04 08:11:09 +0000 |
commit | d757e39dc5a6add65539cb10b8b4dda66ce52fb1 (patch) | |
tree | c8f93adfd1db6d95034fd0a4fcd56a16d3ff6f43 /lib/Debian | |
parent | 2c411249f911e903a20a73884fe0fc6d1e1767a3 (diff) | |
download | debhelper-d757e39dc5a6add65539cb10b8b4dda66ce52fb1.tar.gz |
Dh_Lib: Add a LOWEST_VIRTUAL_DEBHELPER_COMPAT_LEVEL constant
Signed-off-by: Niels Thykier <niels@thykier.net>
Diffstat (limited to 'lib/Debian')
-rw-r--r-- | lib/Debian/Debhelper/Dh_Lib.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Debian/Debhelper/Dh_Lib.pm b/lib/Debian/Debhelper/Dh_Lib.pm index 9359eb27..98b60413 100644 --- a/lib/Debian/Debhelper/Dh_Lib.pm +++ b/lib/Debian/Debhelper/Dh_Lib.pm @@ -15,6 +15,9 @@ use constant { # Lowest compat level that does *not* cause deprecation # warnings 'LOWEST_NON_DEPRECATED_COMPAT_LEVEL' => 9, + # Lowest compat level to generate "debhelper-compat (= X)" + # relations for. + 'LOWEST_VIRTUAL_DEBHELPER_COMPAT_LEVEL' => 9, # Highest compat level permitted 'MAX_COMPAT_LEVEL' => 12, # Magic value for xargs |