r53036 - in /trunk/dh-make-perl: debian/changelog lib/Debian/Control/FromCPAN.pm

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Thu Feb 18 21:24:50 UTC 2010


Author: dmn
Date: Thu Feb 18 21:24:28 2010
New Revision: 53036

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=53036
Log:
D::C::FromCPAN::prune_perl_deps: fix pruning of binary packages' dependencies

Modified:
    trunk/dh-make-perl/debian/changelog
    trunk/dh-make-perl/lib/Debian/Control/FromCPAN.pm

Modified: trunk/dh-make-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/debian/changelog?rev=53036&op=diff
==============================================================================
--- trunk/dh-make-perl/debian/changelog (original)
+++ trunk/dh-make-perl/debian/changelog Thu Feb 18 21:24:28 2010
@@ -16,6 +16,7 @@
     + looks for all kinds of WNPP bugs
     + uses the lists on http://www.debian.org/devel/wnpp
   * add --source-format option (defaults to "1.0")
+  * --refresh: fix pruning of binary package dependencies
 
   [ gregor herrmann ]
   * DhMakePerl: update_file_list() allows to --refresh --only docs and

Modified: trunk/dh-make-perl/lib/Debian/Control/FromCPAN.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/lib/Debian/Control/FromCPAN.pm?rev=53036&op=diff
==============================================================================
--- trunk/dh-make-perl/lib/Debian/Control/FromCPAN.pm (original)
+++ trunk/dh-make-perl/lib/Debian/Control/FromCPAN.pm Thu Feb 18 21:24:28 2010
@@ -321,7 +321,7 @@
                 for my $dep (@ess) {
                     my $pruned = $self->prune_perl_dep( $dep, 0 );
 
-                    $self->$pkg->$rel->add($pruned) if $pruned;
+                    $pkg->$rel->add($pruned) if $pruned;
                 }
             }
         }




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