r4185 - in /tools/dh-make-perl/trunk: debian/changelog dh-make-perl

gwolf at users.alioth.debian.org gwolf at users.alioth.debian.org
Fri Nov 3 17:00:05 CET 2006


Author: gwolf
Date: Fri Nov  3 17:00:05 2006
New Revision: 4185

URL: http://svn.debian.org/wsvn/?sc=1&rev=4185
Log:
Incorporating patch for 396846

Modified:
    tools/dh-make-perl/trunk/debian/changelog
    tools/dh-make-perl/trunk/dh-make-perl

Modified: tools/dh-make-perl/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/tools/dh-make-perl/trunk/debian/changelog?rev=4185&op=diff
==============================================================================
--- tools/dh-make-perl/trunk/debian/changelog (original)
+++ tools/dh-make-perl/trunk/debian/changelog Fri Nov  3 17:00:05 2006
@@ -1,3 +1,10 @@
+dh-make-perl (0.25) unstable; urgency=low
+
+  * Fixed the Perl package data parsing function, fixing an unneeded
+    warning. Thanks to Johnny Morano for the patch! (Closes: #396846)
+
+ -- Gunnar Wolf <gwolf at debian.org>  Fri,  3 Nov 2006 09:46:37 -0600
+
 dh-make-perl (0.24) unstable; urgency=low
 
   * Transferred package ownership to the Debian Perl Group

Modified: tools/dh-make-perl/trunk/dh-make-perl
URL: http://svn.debian.org/wsvn/tools/dh-make-perl/trunk/dh-make-perl?rev=4185&op=diff
==============================================================================
--- tools/dh-make-perl/trunk/dh-make-perl (original)
+++ tools/dh-make-perl/trunk/dh-make-perl Fri Nov  3 17:00:05 2006
@@ -247,8 +247,8 @@
 
 sub get_perl_pkg_details {
     my (@dpkg_info);
-    @dpkg_info = map {chomp; s/\s*:\s*/:/; $_} `dpkg -p perl`;
-    return { map {split /:/, $_} @dpkg_info };
+    chomp( @dpkg_info =  grep /^\S/, `dpkg -p perl`);
+       return( { map { m/^(\S+?):\s+(.*)/; $1 => $2} @dpkg_info })  ;
 }
 
 sub setup_dir {
@@ -1052,6 +1052,7 @@
   Fermin Galan E<lt>galan at dit.upm.esE<gt>
   Geoff Richards E<lt>qef at ungwe.orgE<gt>
   Gergely Nagy E<lt>algernon at bonehunter.rulez.orgE<gt>
+  Johnny Morano E<lt>jmorano at moretrix.comE<gt>
   Juerd E<lt>juerd at ouranos.juerd.netE<gt>
   Matt Hope E<lt>dopey at debian.orgE<gt>
   Noel Maddy E<lt>noel at zhtwn.comE<gt>




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