r46238 - in /trunk/dh-make-perl: debian/changelog lib/DhMakePerl.pm

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Fri Oct 23 08:36:48 UTC 2009


Author: dmn
Date: Fri Oct 23 08:36:08 2009
New Revision: 46238

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=46238
Log:
when considering a core module dependency, use 'perl' package instead of 'perl-modules'

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

Modified: trunk/dh-make-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/debian/changelog?rev=46238&op=diff
==============================================================================
--- trunk/dh-make-perl/debian/changelog (original)
+++ trunk/dh-make-perl/debian/changelog Fri Oct 23 08:36:08 2009
@@ -9,6 +9,10 @@
   * Make sure we use the original $ENV{'PWD'} before CPAN::Distribution::get()
     resets it.
   * Add a note to the disclaimer in the generated debian/copyright file.
+
+  [ Damyan Ivanov ]
+  * when considering a core module dependency, use 'perl' package instead of
+    'perl-modules'
 
  -- Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com>  Sun, 04 Oct 2009 16:21:18 +0200
 

Modified: trunk/dh-make-perl/lib/DhMakePerl.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/lib/DhMakePerl.pm?rev=46238&op=diff
==============================================================================
--- trunk/dh-make-perl/lib/DhMakePerl.pm (original)
+++ trunk/dh-make-perl/lib/DhMakePerl.pm Fri Oct 23 08:36:08 2009
@@ -1087,8 +1087,8 @@
         ) {
             print "= $module is a core module\n" if $self->cfg->verbose;
 
-            $dep = Debian::Dependency->new( 'perl-modules', $ver );
-            $debs->add($dep) if $dep->satisfies( "perl-modules (>= $oldest_perl_version)" );
+            $dep = Debian::Dependency->new( 'perl', $ver );
+            $debs->add($dep) if $dep->satisfies( "perl (>= $oldest_perl_version)" );
 
             next;
         }




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