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

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


Author: jawnsy-guest
Date: Tue Aug  4 01:13:12 2009
New Revision: 41286

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

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/pkg-perl/branches/upstream/libpar-dist-perl/current/Changes?rev=41286&op=diff
==============================================================================
--- branches/upstream/libpar-dist-perl/current/Changes (original)
+++ branches/upstream/libpar-dist-perl/current/Changes Tue Aug  4 01:13:12 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: branches/upstream/libpar-dist-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpar-dist-perl/current/META.yml?rev=41286&op=diff
==============================================================================
--- branches/upstream/libpar-dist-perl/current/META.yml (original)
+++ branches/upstream/libpar-dist-perl/current/META.yml Tue Aug  4 01:13:12 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: branches/upstream/libpar-dist-perl/current/lib/PAR/Dist.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpar-dist-perl/current/lib/PAR/Dist.pm?rev=41286&op=diff
==============================================================================
--- branches/upstream/libpar-dist-perl/current/lib/PAR/Dist.pm (original)
+++ branches/upstream/libpar-dist-perl/current/lib/PAR/Dist.pm Tue Aug  4 01:13:12 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