r26996 - in /trunk/dh-make-perl: debian/changelog dh-make-perl

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Tue Nov 18 06:44:47 UTC 2008


Author: dmn
Date: Tue Nov 18 06:44:43 2008
New Revision: 26996

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=26996
Log:
Make parentheses around module name optional in the Module::Install-using
Makefile.PL. Closes: #493652 -- Fails to detect name
Thanks to Christ West (Faux) for the report and the patch

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

Modified: trunk/dh-make-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/debian/changelog?rev=26996&op=diff
==============================================================================
--- trunk/dh-make-perl/debian/changelog (original)
+++ trunk/dh-make-perl/debian/changelog Tue Nov 18 06:44:43 2008
@@ -2,6 +2,9 @@
 
   [ Damyan Ivanov ]
   * Default debhelper level on generated packages is 7
+  * Make parentheses around module name optional in the Module::Install-using
+    Makefile.PL. Closes: #493652 -- Fails to detect name
+    Thanks to Christ West (Faux) for the report and the patch
 
   [ Gunnar Wolf ]
   * Now creates machine-parsable debian/copyright files (cf.

Modified: trunk/dh-make-perl/dh-make-perl
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/dh-make-perl?rev=26996&op=diff
==============================================================================
--- trunk/dh-make-perl/dh-make-perl (original)
+++ trunk/dh-make-perl/dh-make-perl Tue Nov 18 06:44:43 2008
@@ -557,11 +557,11 @@
 	    $name = $4;
 	} elsif ($file =~ /name
 		 \s*
-		 \(
+		 \(?
 		     ([\'\"]?)
 		         (\S+)
 		     \1
-		 \);/xs) {
+		 \)?;/xs) {
 	    # Module::Install syntax
 	    $name = $2;
 	}




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