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

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Tue Aug 4 01:15:22 UTC 2009


Author: jawnsy-guest
Date: Tue Aug  4 01:15:15 2009
New Revision: 41288

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=41288
Log:
No release necessary
IGNORE-VERSION: 0.46-1
* New upstream release
  + Does not use Archive::Zip if it is version 1.28

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=41288&op=diff
==============================================================================
--- trunk/libpar-dist-perl/Changes (original)
+++ trunk/libpar-dist-perl/Changes Tue Aug  4 01:15:15 2009
@@ -1,3 +1,7 @@
+By: smueller on 2009/07/31
+    * Do not use Archive::Zip if its version is 1.28.
+    * This is 0.46.
+____________________________________________________________________________
 By: smueller on 2009/02/20
     * Fix test skipping if certain optional dependencies couldn't be found.
     * This is 0.45.

Modified: trunk/libpar-dist-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpar-dist-perl/META.yml?rev=41288&op=diff
==============================================================================
--- trunk/libpar-dist-perl/META.yml (original)
+++ trunk/libpar-dist-perl/META.yml Tue Aug  4 01:15:15 2009
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               PAR-Dist
-version:            0.45
+version:            0.46
 abstract:           Create and manipulate PAR distributions
 author:
     - Audrey Tang <cpan at audreyt.org>

Modified: trunk/libpar-dist-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libpar-dist-perl/debian/changelog?rev=41288&op=diff
==============================================================================
--- trunk/libpar-dist-perl/debian/changelog (original)
+++ trunk/libpar-dist-perl/debian/changelog Tue Aug  4 01:15:15 2009
@@ -1,3 +1,13 @@
+libpar-dist-perl (0.46-1) UNRELEASED; urgency=low
+
+  No release necessary
+  IGNORE-VERSION: 0.46-1
+
+  * New upstream release
+    + Does not use Archive::Zip if it is version 1.28
+
+ -- Jonathan Yu <frequency at cpan.org>  Mon, 03 Aug 2009 17:16:11 -0400
+
 libpar-dist-perl (0.45-1) unstable; urgency=low
 
   [ Ryan Niebur ]

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=41288&op=diff
==============================================================================
--- trunk/libpar-dist-perl/lib/PAR/Dist.pm (original)
+++ trunk/libpar-dist-perl/lib/PAR/Dist.pm Tue Aug  4 01:15:15 2009
@@ -4,7 +4,7 @@
 require Exporter;
 use vars qw/$VERSION @ISA @EXPORT @EXPORT_OK $DEBUG/;
 
-$VERSION    = '0.45';
+$VERSION    = '0.46'; # Change version in POD, too!
 @ISA	    = 'Exporter';
 @EXPORT	    = qw/
   blib_to_par
@@ -34,7 +34,7 @@
 
 =head1 VERSION
 
-This document describes version 0.45 of PAR::Dist, released June 11, 2009.
+This document describes version 0.46 of PAR::Dist, released July 31, 2009.
 
 =head1 SYNOPSIS
 
@@ -1378,7 +1378,8 @@
   }
 
   $tools->{zip} = undef;
-  if (eval {require Archive::Zip; 1;}) {
+  # A::Zip 1.28 was a broken release...
+  if (eval {require Archive::Zip; 1;} and $Archive::Zip::VERSION ne '1.28') {
     warn "Using Archive::Zip as ZIP tool.\n" if $DEBUG;
     $tools->{zip} = 'Archive::Zip';
   }
@@ -1387,7 +1388,7 @@
     $tools->{zip} = 'zip';
   }
   else {
-    warn "Found neither Archive::Zip nor ZIP/UNZIP as valid ZIP tools.\n" if $DEBUG;
+    warn "Found neither Archive::Zip (version != 1.28) nor ZIP/UNZIP as valid ZIP tools.\n" if $DEBUG;
     $tools->{zip} = undef;
   }
 




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