[SCM] Debian packaging of dh-make-perl branch, master, updated. debian/0.76-1-50-g1ae05cc
Damyan Ivanov
dmn at debian.org
Wed May 22 05:32:51 UTC 2013
The following commit has been merged in the master branch:
commit 1ae05cc57bf0746d90731d6cab6200aced3ad0d5
Author: Damyan Ivanov <dmn at debian.org>
Date: Wed May 22 08:31:58 2013 +0300
drop support for debhelper compatibility levels before 8
diff --git a/TODO b/TODO
index 570da82..9a6242b 100644
--- a/TODO
+++ b/TODO
@@ -33,7 +33,5 @@
directory has stuff lying around from a failed run. ~periapt
* Add a switch for "app" (foo-bar) vs. "lib" (libfoo-bar-perl) packages?
* debhelper:
- (1) remove all the special casing for debhelper 7.x
- we require >= 8 anyway and die on <=7
(3) use debhelper 9 to get rid of the "dh_pysupport: This program is
deprecated" warning. ~abe
diff --git a/lib/DhMakePerl/Command/refresh.pm b/lib/DhMakePerl/Command/refresh.pm
index b385055..6d545a6 100644
--- a/lib/DhMakePerl/Command/refresh.pm
+++ b/lib/DhMakePerl/Command/refresh.pm
@@ -64,9 +64,7 @@ sub execute {
if ( 'rules' ~~ $self->cfg->only ) {
$self->create_rules;
- if ( !-f $self->debian_file('compat') or $self->cfg->dh == 7 ) {
- $self->create_compat( $self->debian_file('compat') );
- }
+ $self->create_compat( $self->debian_file('compat') );
}
if ( 'examples' ~~ $self->cfg->only ) {
diff --git a/lib/DhMakePerl/Config.pm b/lib/DhMakePerl/Config.pm
index d566529..4d3496b 100644
--- a/lib/DhMakePerl/Config.pm
+++ b/lib/DhMakePerl/Config.pm
@@ -305,8 +305,8 @@ sub check_obsolete_entries {
warn "--notest ignored. if you don't want to run the tests when building the package, add 'nocheck' to DEB_BUILD_OPTIONS\n"
if $self->notest;
- if ( $self->dh < 7 ) {
- warn "debhelper compatibility levels before 7 are not supported.\n";
+ if ( $self->dh < 8 ) {
+ warn "debhelper compatibility levels before 8 are not supported.\n";
exit(1);
}
}
--
Debian packaging of dh-make-perl
More information about the Pkg-perl-cvs-commits
mailing list