r47897 - in /branches/upstream/libpar-packer-perl/current: ChangeLog META.yml lib/PAR/Packer.pm

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sun Nov 29 06:24:58 UTC 2009


Author: jawnsy-guest
Date: Sun Nov 29 06:24:52 2009
New Revision: 47897

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=47897
Log:
[svn-upgrade] Integrating new upstream version, libpar-packer-perl (1.001)

Modified:
    branches/upstream/libpar-packer-perl/current/ChangeLog
    branches/upstream/libpar-packer-perl/current/META.yml
    branches/upstream/libpar-packer-perl/current/lib/PAR/Packer.pm

Modified: branches/upstream/libpar-packer-perl/current/ChangeLog
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpar-packer-perl/current/ChangeLog?rev=47897&op=diff
==============================================================================
--- branches/upstream/libpar-packer-perl/current/ChangeLog (original)
+++ branches/upstream/libpar-packer-perl/current/ChangeLog Sun Nov 29 06:24:52 2009
@@ -1,3 +1,9 @@
+[Changes for 1.001 - Nov 24, 2009]
+* Bug fixes, etc.
+    - Fix to the rejection of "main.pl" as input scripts. Previously,
+      we rejected /main\.pl$/, now we only reject files named "main.pl"
+      as we should (Markus Jansen)
+
 [Changes for 1.000 - Nov 22, 2009]
 No functional changes since the latest development release.
 

Modified: branches/upstream/libpar-packer-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpar-packer-perl/current/META.yml?rev=47897&op=diff
==============================================================================
--- branches/upstream/libpar-packer-perl/current/META.yml (original)
+++ branches/upstream/libpar-packer-perl/current/META.yml Sun Nov 29 06:24:52 2009
@@ -37,7 +37,7 @@
     file: lib/PAR/Filter/PodStrip.pm
   PAR::Packer:
     file: lib/PAR/Packer.pm
-    version: 1.000
+    version: 1.001
   PAR::StrippedPARL::Base:
     file: lib/PAR/StrippedPARL/Base.pm
     version: 0.975
@@ -63,4 +63,4 @@
   perl: 5.6.0
 resources:
   license: http://dev.perl.org/licenses/
-version: 1.000
+version: 1.001

Modified: branches/upstream/libpar-packer-perl/current/lib/PAR/Packer.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpar-packer-perl/current/lib/PAR/Packer.pm?rev=47897&op=diff
==============================================================================
--- branches/upstream/libpar-packer-perl/current/lib/PAR/Packer.pm (original)
+++ branches/upstream/libpar-packer-perl/current/lib/PAR/Packer.pm Sun Nov 29 06:24:52 2009
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-our $VERSION = '1.000';
+our $VERSION = '1.001';
 
 =head1 NAME
 
@@ -320,7 +320,7 @@
         $self->{input} ||= [];
 
         # Reject main.pl as input file to avoid beginner confusion
-        if ( grep /main\.pl$/,
+        if ( grep /(?:^|[\/\\])main\.pl$/,
              ($opt->{r} ? ($args->[0]) : @$args) )
         {
           # -r means "run this" => extra args are execution parameters




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