r19556 - in /branches/upstream/libcompress-zlib-perl/current: Changes META.yml Makefile.PL README lib/Compress/Zlib.pm private/MakeUtil.pm t/000prereq.t

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Tue May 6 16:47:12 UTC 2008


Author: gregoa
Date: Tue May  6 16:47:11 2008
New Revision: 19556

URL: http://svn.debian.org/wsvn/?sc=1&rev=19556
Log:
[svn-upgrade] Integrating new upstream version, libcompress-zlib-perl (2.010)

Modified:
    branches/upstream/libcompress-zlib-perl/current/Changes
    branches/upstream/libcompress-zlib-perl/current/META.yml
    branches/upstream/libcompress-zlib-perl/current/Makefile.PL
    branches/upstream/libcompress-zlib-perl/current/README
    branches/upstream/libcompress-zlib-perl/current/lib/Compress/Zlib.pm
    branches/upstream/libcompress-zlib-perl/current/private/MakeUtil.pm
    branches/upstream/libcompress-zlib-perl/current/t/000prereq.t

Modified: branches/upstream/libcompress-zlib-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libcompress-zlib-perl/current/Changes?rev=19556&op=diff
==============================================================================
--- branches/upstream/libcompress-zlib-perl/current/Changes (original)
+++ branches/upstream/libcompress-zlib-perl/current/Changes Tue May  6 16:47:11 2008
@@ -1,5 +1,10 @@
 CHANGES
 -------
+
+  2.010 5 May 2008
+
+      * Fixed problem that meant Perl 5.10 could not upgrade this module.
+        [RT #35341]
 
   2.009 20 April 2008
 

Modified: branches/upstream/libcompress-zlib-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libcompress-zlib-perl/current/META.yml?rev=19556&op=diff
==============================================================================
--- branches/upstream/libcompress-zlib-perl/current/META.yml (original)
+++ branches/upstream/libcompress-zlib-perl/current/META.yml Tue May  6 16:47:11 2008
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                Compress-Zlib
-version:             2.009
+version:             2.010
 abstract:            Interface to zlib compression library
 license:             perl
 author:              
@@ -8,13 +8,13 @@
 generated_by:        ExtUtils::MakeMaker version 6.44
 distribution_type:   module
 requires:     
-    Compress::Raw::Zlib:           2.009
-    IO::Compress::Base:            2.009
-    IO::Compress::Base::Common:    2.009
-    IO::Compress::Gzip:            2.009
-    IO::Compress::Gzip::Constants: 2.009
-    IO::Uncompress::Base:          2.009
-    IO::Uncompress::Gunzip:        2.009
+    Compress::Raw::Zlib:           2.010
+    IO::Compress::Base:            2.010
+    IO::Compress::Base::Common:    2.010
+    IO::Compress::Gzip:            2.010
+    IO::Compress::Gzip::Constants: 2.010
+    IO::Uncompress::Base:          2.010
+    IO::Uncompress::Gunzip:        2.010
     Scalar::Util:                  0
 meta-spec:
     url:     http://module-build.sourceforge.net/META-spec-v1.3.html

Modified: branches/upstream/libcompress-zlib-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/branches/upstream/libcompress-zlib-perl/current/Makefile.PL?rev=19556&op=diff
==============================================================================
--- branches/upstream/libcompress-zlib-perl/current/Makefile.PL (original)
+++ branches/upstream/libcompress-zlib-perl/current/Makefile.PL Tue May  6 16:47:11 2008
@@ -3,7 +3,7 @@
 use strict ;
 require 5.004 ;
 
-$::VERSION = '2.009' ;
+$::VERSION = '2.010' ;
 
 use private::MakeUtil;
 use ExtUtils::MakeMaker 5.16 ;
@@ -45,6 +45,12 @@
 
     INSTALLDIRS => ($] >= 5.009 ? 'perl' : 'site'),
 
+    (
+    $] >= 5.009 && ! $ENV{PERL_CORE}
+        ? (INST_LIB    => 'blib/arch')
+        : ()
+    ),
+
     ((ExtUtils::MakeMaker->VERSION() gt '6.30') ?
         ('LICENSE'  => 'perl')         : ()),    
 

Modified: branches/upstream/libcompress-zlib-perl/current/README
URL: http://svn.debian.org/wsvn/branches/upstream/libcompress-zlib-perl/current/README?rev=19556&op=diff
==============================================================================
--- branches/upstream/libcompress-zlib-perl/current/README (original)
+++ branches/upstream/libcompress-zlib-perl/current/README Tue May  6 16:47:11 2008
@@ -1,9 +1,9 @@
 
                              Compress-Zlib
 
-                             Version 2.009
+                             Version 2.010
 
-                              20th April 2008
+                               5th May 2008
 
        Copyright (c) 1995-2008 Paul Marquess. All rights reserved.
           This program is free software; you can redistribute it
@@ -106,7 +106,7 @@
         If you haven't installed Compress-Zlib then search Compress::Zlib.pm
         for a line like this:
 
-          $VERSION = "2.009" ;
+          $VERSION = "2.010" ;
 
  2. If you are having problems building Compress-Zlib, send me a
     complete log of what happened. Start by unpacking the Compress-Zlib

Modified: branches/upstream/libcompress-zlib-perl/current/lib/Compress/Zlib.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libcompress-zlib-perl/current/lib/Compress/Zlib.pm?rev=19556&op=diff
==============================================================================
--- branches/upstream/libcompress-zlib-perl/current/lib/Compress/Zlib.pm (original)
+++ branches/upstream/libcompress-zlib-perl/current/lib/Compress/Zlib.pm Tue May  6 16:47:11 2008
@@ -8,17 +8,17 @@
 use IO::Handle ;
 use Scalar::Util qw(dualvar);
 
-use IO::Compress::Base::Common 2.009 ;
-use Compress::Raw::Zlib 2.009 ;
-use IO::Compress::Gzip 2.009 ;
-use IO::Uncompress::Gunzip 2.009 ;
+use IO::Compress::Base::Common 2.010 ;
+use Compress::Raw::Zlib 2.010 ;
+use IO::Compress::Gzip 2.010 ;
+use IO::Uncompress::Gunzip 2.010 ;
 
 use strict ;
 use warnings ;
 use bytes ;
 our ($VERSION, $XS_VERSION, @ISA, @EXPORT, $AUTOLOAD);
 
-$VERSION = '2.009';
+$VERSION = '2.010';
 $XS_VERSION = $VERSION; 
 $VERSION = eval $VERSION;
 
@@ -452,7 +452,7 @@
 
 package Compress::Zlib ;
 
-use IO::Compress::Gzip::Constants 2.009 ;
+use IO::Compress::Gzip::Constants 2.010 ;
 
 sub memGzip($)
 {

Modified: branches/upstream/libcompress-zlib-perl/current/private/MakeUtil.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libcompress-zlib-perl/current/private/MakeUtil.pm?rev=19556&op=diff
==============================================================================
--- branches/upstream/libcompress-zlib-perl/current/private/MakeUtil.pm (original)
+++ branches/upstream/libcompress-zlib-perl/current/private/MakeUtil.pm Tue May  6 16:47:11 2008
@@ -5,6 +5,8 @@
 
 use Config qw(%Config);
 use File::Copy;
+
+my $VERSION = '1.0';
 
 
 BEGIN

Modified: branches/upstream/libcompress-zlib-perl/current/t/000prereq.t
URL: http://svn.debian.org/wsvn/branches/upstream/libcompress-zlib-perl/current/t/000prereq.t?rev=19556&op=diff
==============================================================================
--- branches/upstream/libcompress-zlib-perl/current/t/000prereq.t (original)
+++ branches/upstream/libcompress-zlib-perl/current/t/000prereq.t Tue May  6 16:47:11 2008
@@ -27,7 +27,7 @@
         if eval { require Test::NoWarnings ;  import Test::NoWarnings; 1 };
 
 
-    my $VERSION = '2.009';
+    my $VERSION = '2.010';
     my @NAMES = qw(
 			Compress::Raw::Zlib
 			IO::Compress::Base




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