r60722 - in /trunk/dh-make-perl: debian/changelog lib/DhMakePerl.pm lib/DhMakePerl/Command/Packaging.pm

carnil-guest at users.alioth.debian.org carnil-guest at users.alioth.debian.org
Wed Jul 28 05:09:59 UTC 2010


Author: carnil-guest
Date: Wed Jul 28 05:09:30 2010
New Revision: 60722

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=60722
Log:
* dh --buildsystem=buildsystem needs at least debhelper (>= 7.3.7), add this
  rule to DhMakePerl::Command::Packaging. 
* Bump dh-make-perl version to 0.70.

Modified:
    trunk/dh-make-perl/debian/changelog
    trunk/dh-make-perl/lib/DhMakePerl.pm
    trunk/dh-make-perl/lib/DhMakePerl/Command/Packaging.pm

Modified: trunk/dh-make-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/debian/changelog?rev=60722&op=diff
==============================================================================
--- trunk/dh-make-perl/debian/changelog (original)
+++ trunk/dh-make-perl/debian/changelog Wed Jul 28 05:09:30 2010
@@ -1,3 +1,11 @@
+dh-make-perl (0.70-1) UNRELEASED; urgency=low
+
+  * dh --buildsystem=buildsystem needs at least debhelper (>= 7.3.7), add this
+    rule to DhMakePerl::Command::Packaging. 
+  * Bump dh-make-perl version to 0.70.
+
+ -- Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com>  Wed, 28 Jul 2010 07:07:35 +0200
+
 dh-make-perl (0.69-1) unstable; urgency=low
 
   [ Damyan Ivanov ]

Modified: trunk/dh-make-perl/lib/DhMakePerl.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/lib/DhMakePerl.pm?rev=60722&op=diff
==============================================================================
--- trunk/dh-make-perl/lib/DhMakePerl.pm (original)
+++ trunk/dh-make-perl/lib/DhMakePerl.pm Wed Jul 28 05:09:30 2010
@@ -14,11 +14,11 @@
 
 =head1 VERSION
 
-Version 0.68
+Version 0.70
 
 =cut
 
-our $VERSION = '0.69';
+our $VERSION = '0.70';
 
 =head1 SYNOPSIS
 

Modified: trunk/dh-make-perl/lib/DhMakePerl/Command/Packaging.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/lib/DhMakePerl/Command/Packaging.pm?rev=60722&op=diff
==============================================================================
--- trunk/dh-make-perl/lib/DhMakePerl/Command/Packaging.pm (original)
+++ trunk/dh-make-perl/lib/DhMakePerl/Command/Packaging.pm Wed Jul 28 05:09:30 2010
@@ -1182,6 +1182,10 @@
 
 C<dh --with=perl_dbi> needs debhelper 7.0.8 and libdbi-perl 1.612.
 
+=item dh --buildsystem=buildsystem
+
+C<dh --buildsystem=buildsystem needs debhelper 7.3.7.
+
 =item quilt.make
 
 If F</usr/share/quilt/quilt.make> is included in F<debian/rules>, a
@@ -1263,6 +1267,11 @@
         $self->explained_dependency( 'dh* --max-parallel',
             $deps, 'debhelper (>= 7.4.4)' )
             if /dh.* --max-parallel/;
+
+        # Modular --buildsystem support for debhelper needs 7.3.7.
+        $self->explained_dependency( 'dh* --buildsystem',
+            $deps, 'debhelper (>= 7.3.7)' )
+            if /dh.* --buildsystem/;
     }
 
     if (    -e $self->main_file('Makefile.PL')




More information about the Pkg-perl-cvs-commits mailing list