r47899 - in /trunk/libpar-packer-perl: ChangeLog META.yml debian/changelog lib/PAR/Packer.pm

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


Author: jawnsy-guest
Date: Sun Nov 29 06:33:48 2009
New Revision: 47899

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=47899
Log:
integrate new upstream release; merge changelogs since 1.000 was not released

Modified:
    trunk/libpar-packer-perl/ChangeLog
    trunk/libpar-packer-perl/META.yml
    trunk/libpar-packer-perl/debian/changelog
    trunk/libpar-packer-perl/lib/PAR/Packer.pm

Modified: trunk/libpar-packer-perl/ChangeLog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpar-packer-perl/ChangeLog?rev=47899&op=diff
==============================================================================
--- trunk/libpar-packer-perl/ChangeLog (original)
+++ trunk/libpar-packer-perl/ChangeLog Sun Nov 29 06:33:48 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: trunk/libpar-packer-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpar-packer-perl/META.yml?rev=47899&op=diff
==============================================================================
--- trunk/libpar-packer-perl/META.yml (original)
+++ trunk/libpar-packer-perl/META.yml Sun Nov 29 06:33:48 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: trunk/libpar-packer-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpar-packer-perl/debian/changelog?rev=47899&op=diff
==============================================================================
--- trunk/libpar-packer-perl/debian/changelog (original)
+++ trunk/libpar-packer-perl/debian/changelog Sun Nov 29 06:33:48 2009
@@ -1,4 +1,4 @@
-libpar-packer-perl (1.000-1) unstable; urgency=low
+libpar-packer-perl (1.001-1) UNRELEASED; urgency=low
 
   * New upstream release
   * Update dependencies per upstream

Modified: trunk/libpar-packer-perl/lib/PAR/Packer.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpar-packer-perl/lib/PAR/Packer.pm?rev=47899&op=diff
==============================================================================
--- trunk/libpar-packer-perl/lib/PAR/Packer.pm (original)
+++ trunk/libpar-packer-perl/lib/PAR/Packer.pm Sun Nov 29 06:33:48 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