r21105 - in /trunk/libpar-dist-perl: Changes META.yml debian/changelog lib/PAR/Dist.pm

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sat Jun 14 20:58:27 UTC 2008


Author: gregoa
Date: Sat Jun 14 20:58:27 2008
New Revision: 21105

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=21105
Log:
New upstream release.

Modified:
    trunk/libpar-dist-perl/Changes
    trunk/libpar-dist-perl/META.yml
    trunk/libpar-dist-perl/debian/changelog
    trunk/libpar-dist-perl/lib/PAR/Dist.pm

Modified: trunk/libpar-dist-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpar-dist-perl/Changes?rev=21105&op=diff
==============================================================================
--- trunk/libpar-dist-perl/Changes (original)
+++ trunk/libpar-dist-perl/Changes Sat Jun 14 20:58:27 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: trunk/libpar-dist-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpar-dist-perl/META.yml?rev=21105&op=diff
==============================================================================
--- trunk/libpar-dist-perl/META.yml (original)
+++ trunk/libpar-dist-perl/META.yml Sat Jun 14 20:58:27 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: trunk/libpar-dist-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpar-dist-perl/debian/changelog?rev=21105&op=diff
==============================================================================
--- trunk/libpar-dist-perl/debian/changelog (original)
+++ trunk/libpar-dist-perl/debian/changelog Sat Jun 14 20:58:27 2008
@@ -1,3 +1,9 @@
+libpar-dist-perl (0.31-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+
+ -- gregor herrmann <gregoa at debian.org>  Sat, 14 Jun 2008 22:57:41 +0200
+
 libpar-dist-perl (0.29-2) unstable; urgency=low
 
   * debian/rules:

Modified: trunk/libpar-dist-perl/lib/PAR/Dist.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpar-dist-perl/lib/PAR/Dist.pm?rev=21105&op=diff
==============================================================================
--- trunk/libpar-dist-perl/lib/PAR/Dist.pm (original)
+++ trunk/libpar-dist-perl/lib/PAR/Dist.pm Sat Jun 14 20:58:27 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