r21103 - in /branches/upstream/libpar-dist-perl/current: Changes META.yml lib/PAR/Dist.pm

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sat Jun 14 20:57:23 UTC 2008


Author: gregoa
Date: Sat Jun 14 20:57:23 2008
New Revision: 21103

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

Modified:
    branches/upstream/libpar-dist-perl/current/Changes
    branches/upstream/libpar-dist-perl/current/META.yml
    branches/upstream/libpar-dist-perl/current/lib/PAR/Dist.pm

Modified: branches/upstream/libpar-dist-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libpar-dist-perl/current/Changes?rev=21103&op=diff
==============================================================================
--- branches/upstream/libpar-dist-perl/current/Changes (original)
+++ branches/upstream/libpar-dist-perl/current/Changes Sat Jun 14 20:57:23 2008
@@ -1,3 +1,7 @@
+By: smueller on 2008/05/28
+    * Fix small bug in _unzip that could cause double extraction.
+    * This is 0.31.
+____________________________________________________________________________
 By: smueller on 2008/02/06
     * Make file://foo.par URLs installable.
     * This is 0.29.

Modified: branches/upstream/libpar-dist-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libpar-dist-perl/current/META.yml?rev=21103&op=diff
==============================================================================
--- branches/upstream/libpar-dist-perl/current/META.yml (original)
+++ branches/upstream/libpar-dist-perl/current/META.yml Sat Jun 14 20:57:23 2008
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                PAR-Dist
-version:             0.29
+version:             0.31
 abstract:            Create and manipulate PAR distributions
 license:             ~
 author:              

Modified: branches/upstream/libpar-dist-perl/current/lib/PAR/Dist.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libpar-dist-perl/current/lib/PAR/Dist.pm?rev=21103&op=diff
==============================================================================
--- branches/upstream/libpar-dist-perl/current/lib/PAR/Dist.pm (original)
+++ branches/upstream/libpar-dist-perl/current/lib/PAR/Dist.pm Sat Jun 14 20:57:23 2008
@@ -2,7 +2,7 @@
 require Exporter;
 use vars qw/$VERSION @ISA @EXPORT @EXPORT_OK/;
 
-$VERSION    = '0.29';
+$VERSION    = '0.31';
 @ISA	    = 'Exporter';
 @EXPORT	    = qw/
   blib_to_par
@@ -31,7 +31,7 @@
 
 =head1 VERSION
 
-This document describes version 0.28 of PAR::Dist, released Feb  5, 2008.
+This document describes version 0.31 of PAR::Dist, released May 28, 2008.
 
 =head1 SYNOPSIS
 
@@ -789,7 +789,7 @@
 
     # Try fast unzipping first
     if (eval { require Archive::Unzip::Burst; 1 }) {
-        my $return = Archive::Unzip::Burst::unzip($dist, $path);
+        my $return = !Archive::Unzip::Burst::unzip($dist, $path);
         return if $return; # true return value == error (a la system call)
     }
     # Then slow unzipping




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