IO::Compress::* 2.010
Paul Marquess [Mon, 5 May 2008 18:32:54 +0000 (19:32 +0100)]
From: "Paul Marquess" <Paul.Marquess@ntlworld.com>
Message-ID: <01dc01c8aed6$0eb13cf0$6501a8c0@myopwv.com>

p4raw-id: //depot/perl@33816

40 files changed:
ext/Compress/Raw/Zlib/Changes
ext/Compress/Raw/Zlib/README
ext/Compress/Raw/Zlib/Zlib.xs
ext/Compress/Raw/Zlib/lib/Compress/Raw/Zlib.pm
ext/Compress/Raw/Zlib/private/MakeUtil.pm
ext/Compress/Zlib/Changes
ext/Compress/Zlib/Makefile.PL
ext/Compress/Zlib/README
ext/Compress/Zlib/lib/Compress/Zlib.pm
ext/Compress/Zlib/private/MakeUtil.pm
ext/IO_Compress_Base/Changes
ext/IO_Compress_Base/Makefile.PL
ext/IO_Compress_Base/README
ext/IO_Compress_Base/lib/IO/Compress/Base.pm
ext/IO_Compress_Base/lib/IO/Compress/Base/Common.pm
ext/IO_Compress_Base/lib/IO/Uncompress/AnyUncompress.pm
ext/IO_Compress_Base/lib/IO/Uncompress/Base.pm
ext/IO_Compress_Base/private/MakeUtil.pm
ext/IO_Compress_Base/t/01misc.t
ext/IO_Compress_Zlib/Changes
ext/IO_Compress_Zlib/Makefile.PL
ext/IO_Compress_Zlib/README
ext/IO_Compress_Zlib/lib/IO/Compress/Adapter/Deflate.pm
ext/IO_Compress_Zlib/lib/IO/Compress/Adapter/Identity.pm
ext/IO_Compress_Zlib/lib/IO/Compress/Deflate.pm
ext/IO_Compress_Zlib/lib/IO/Compress/Gzip.pm
ext/IO_Compress_Zlib/lib/IO/Compress/Gzip/Constants.pm
ext/IO_Compress_Zlib/lib/IO/Compress/RawDeflate.pm
ext/IO_Compress_Zlib/lib/IO/Compress/Zip.pm
ext/IO_Compress_Zlib/lib/IO/Compress/Zip/Constants.pm
ext/IO_Compress_Zlib/lib/IO/Compress/Zlib/Constants.pm
ext/IO_Compress_Zlib/lib/IO/Compress/Zlib/Extra.pm
ext/IO_Compress_Zlib/lib/IO/Uncompress/Adapter/Identity.pm
ext/IO_Compress_Zlib/lib/IO/Uncompress/Adapter/Inflate.pm
ext/IO_Compress_Zlib/lib/IO/Uncompress/AnyInflate.pm
ext/IO_Compress_Zlib/lib/IO/Uncompress/Gunzip.pm
ext/IO_Compress_Zlib/lib/IO/Uncompress/Inflate.pm
ext/IO_Compress_Zlib/lib/IO/Uncompress/RawInflate.pm
ext/IO_Compress_Zlib/lib/IO/Uncompress/Unzip.pm
ext/IO_Compress_Zlib/private/MakeUtil.pm

index 40c4ecb..7f76041 100644 (file)
@@ -1,6 +1,10 @@
 CHANGES
 -------
 
+  2.010 5 May 2008
+
+      * No Changes
+
   2.009 20 April 2008
 
       * No Changes
index 0a4216d..240245f 100644 (file)
@@ -1,9 +1,9 @@
 
                              Compress-Raw-Zlib
 
-                             Version 2.009
+                             Version 2.010
 
-                              20th April 2008
+                               5th May 2008
 
        Copyright (c) 2005-2008 Paul Marquess. All rights reserved.
           This program is free software; you can redistribute it
@@ -326,7 +326,7 @@ To help me help you, I need all of the following information:
         If you haven't installed Compress-Raw-Zlib then search Compress::Raw::Zlib.pm
         for a line like this:
 
-          $VERSION = "2.009" ;
+          $VERSION = "2.010" ;
 
      c. The version of zlib you have used.
         If you have successfully installed Compress-Raw-Zlib, this one-liner
index aee174e..3386f7f 100644 (file)
 #  include "ppport.h"
 #endif
 
+#if PERL_REVISION == 5 && PERL_VERSION == 9
+    /* For Andreas */
+#   define sv_pvbyte_force(sv,lp) sv_pvbyten_force(sv,lp)
+#endif
+
 #if PERL_REVISION == 5 && (PERL_VERSION < 8 || (PERL_VERSION == 8 && PERL_SUBVERSION < 4 ))
 
 #    ifdef SvPVbyte_force
index 7eb8915..7e8ff17 100644 (file)
@@ -13,7 +13,7 @@ use warnings ;
 use bytes ;
 our ($VERSION, $XS_VERSION, @ISA, @EXPORT, $AUTOLOAD);
 
-$VERSION = '2.009';
+$VERSION = '2.010';
 $XS_VERSION = $VERSION; 
 $VERSION = eval $VERSION;
 
index af86677..974b761 100644 (file)
@@ -6,6 +6,8 @@ use strict ;
 use Config qw(%Config);
 use File::Copy;
 
+my $VERSION = '1.0';
+
 
 BEGIN
 {
index c62b1bc..0917142 100644 (file)
@@ -1,6 +1,11 @@
 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
 
       * Minor documentation issue with flush.
index d7d5bb1..270c55c 100755 (executable)
@@ -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 @@ WriteMakefile(
 
     INSTALLDIRS => ($] >= 5.009 ? 'perl' : 'site'),
 
+    (
+    $] >= 5.009 && ! $ENV{PERL_CORE}
+        ? (INST_LIB    => 'blib/arch')
+        : ()
+    ),
+
     ((ExtUtils::MakeMaker->VERSION() gt '6.30') ?
         ('LICENSE'  => 'perl')         : ()),    
 
index 47b634e..4308b9c 100644 (file)
@@ -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 @@ To help me help you, I need all of the following information:
         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
index eff5491..dc7cb5e 100644 (file)
@@ -8,17 +8,17 @@ use Carp ;
 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 @@ sub inflate
 
 package Compress::Zlib ;
 
-use IO::Compress::Gzip::Constants 2.009 ;
+use IO::Compress::Gzip::Constants 2.010 ;
 
 sub memGzip($)
 {
index af86677..974b761 100644 (file)
@@ -6,6 +6,8 @@ use strict ;
 use Config qw(%Config);
 use File::Copy;
 
+my $VERSION = '1.0';
+
 
 BEGIN
 {
index 5a00b59..5316c7b 100644 (file)
@@ -1,6 +1,11 @@
 CHANGES
 -------
 
+  2.010 5 May 2008
+
+      * Fixed problem that meant Perl 5.10 could not upgrade this module.
+        [RT #35342]
+
   2.009 20 April 2008
 
       * Removed the alpha status from File::GlobMapper
index 8695dee..751442a 100644 (file)
@@ -37,6 +37,12 @@ WriteMakefile(
 
     INSTALLDIRS => ($] >= 5.009 ? 'perl' : 'site'),
 
+    (
+    $] >= 5.009 && ! $ENV{PERL_CORE}
+        ? (INST_LIB    => 'blib/arch')
+        : ()
+    ),
+
     ((ExtUtils::MakeMaker->VERSION() gt '6.30') ?
         ('LICENSE'  => 'perl')         : ()),
     
index 2ac1712..b159fd7 100644 (file)
@@ -1,9 +1,9 @@
 
                              IO-Compress-Base
 
-                             Version 2.009
+                             Version 2.010
 
-                              20th April 2008
+                               5th May 2008
 
        Copyright (c) 2005-2008 Paul Marquess. All rights reserved.
           This program is free software; you can redistribute it
@@ -76,7 +76,7 @@ To help me help you, I need all of the following information:
         If you haven't installed IO-Compress-Base then search IO::Compress::Base.pm
         for a line like this:
 
-          $VERSION = "2.009" ;
+          $VERSION = "2.010" ;
 
  2. If you are having problems building IO-Compress-Base, send me a
     complete log of what happened. Start by unpacking the IO-Compress-Base
index cbd8d25..36939e1 100644 (file)
@@ -6,7 +6,7 @@ require 5.004 ;
 use strict ;
 use warnings;
 
-use IO::Compress::Base::Common 2.009 ;
+use IO::Compress::Base::Common 2.010 ;
 
 use IO::File ;
 use Scalar::Util qw(blessed readonly);
@@ -20,7 +20,7 @@ use bytes;
 our (@ISA, $VERSION);
 @ISA    = qw(Exporter IO::File);
 
-$VERSION = '2.009';
+$VERSION = '2.010';
 
 #Can't locate object method "SWASHNEW" via package "utf8" (perhaps you forgot to load "utf8"?) at .../ext/Compress-Zlib/Gzip/blib/lib/Compress/Zlib/Common.pm line 16.
 
index 8f4a5d0..68e8d6d 100644 (file)
@@ -11,7 +11,7 @@ use File::GlobMapper;
 require Exporter;
 our ($VERSION, @ISA, @EXPORT, %EXPORT_TAGS, $HAS_ENCODE);
 @ISA = qw(Exporter);
-$VERSION = '2.009';
+$VERSION = '2.010';
 
 @EXPORT = qw( isaFilehandle isaFilename whatIsInput whatIsOutput 
               isaFileGlobString cleanFileGlobString oneTarget
index 0553ab0..3b8402c 100644 (file)
@@ -4,16 +4,16 @@ use strict;
 use warnings;
 use bytes;
 
-use IO::Compress::Base::Common 2.009 qw(createSelfTiedObject);
+use IO::Compress::Base::Common 2.010 qw(createSelfTiedObject);
 
-use IO::Uncompress::Base 2.009 ;
+use IO::Uncompress::Base 2.010 ;
 
 
 require Exporter ;
 
 our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $AnyUncompressError);
 
-$VERSION = '2.009';
+$VERSION = '2.010';
 $AnyUncompressError = '';
 
 @ISA = qw( Exporter IO::Uncompress::Base );
@@ -27,18 +27,18 @@ Exporter::export_ok_tags('all');
 
 BEGIN
 {
-   eval ' use IO::Uncompress::Adapter::Inflate 2.009 ;';
-   eval ' use IO::Uncompress::Adapter::Bunzip2 2.009 ;';
-   eval ' use IO::Uncompress::Adapter::LZO 2.009 ;';
-   eval ' use IO::Uncompress::Adapter::Lzf 2.009 ;';
-
-   eval ' use IO::Uncompress::Bunzip2 2.009 ;';
-   eval ' use IO::Uncompress::UnLzop 2.009 ;';
-   eval ' use IO::Uncompress::Gunzip 2.009 ;';
-   eval ' use IO::Uncompress::Inflate 2.009 ;';
-   eval ' use IO::Uncompress::RawInflate 2.009 ;';
-   eval ' use IO::Uncompress::Unzip 2.009 ;';
-   eval ' use IO::Uncompress::UnLzf 2.009 ;';
+   eval ' use IO::Uncompress::Adapter::Inflate 2.010 ;';
+   eval ' use IO::Uncompress::Adapter::Bunzip2 2.010 ;';
+   eval ' use IO::Uncompress::Adapter::LZO 2.010 ;';
+   eval ' use IO::Uncompress::Adapter::Lzf 2.010 ;';
+
+   eval ' use IO::Uncompress::Bunzip2 2.010 ;';
+   eval ' use IO::Uncompress::UnLzop 2.010 ;';
+   eval ' use IO::Uncompress::Gunzip 2.010 ;';
+   eval ' use IO::Uncompress::Inflate 2.010 ;';
+   eval ' use IO::Uncompress::RawInflate 2.010 ;';
+   eval ' use IO::Uncompress::Unzip 2.010 ;';
+   eval ' use IO::Uncompress::UnLzf 2.010 ;';
 }
 
 sub new
@@ -56,7 +56,7 @@ sub anyuncompress
 
 sub getExtraParams
 {
-    use IO::Compress::Base::Common 2.009 qw(:Parse);
+    use IO::Compress::Base::Common 2.010 qw(:Parse);
     return ( 'RawInflate' => [1, 1, Parse_boolean,  0] ) ;
 }
 
index 110cde3..adb54c6 100644 (file)
@@ -9,12 +9,12 @@ our (@ISA, $VERSION, @EXPORT_OK, %EXPORT_TAGS);
 @ISA    = qw(Exporter IO::File);
 
 
-$VERSION = '2.009';
+$VERSION = '2.010';
 
 use constant G_EOF => 0 ;
 use constant G_ERR => -1 ;
 
-use IO::Compress::Base::Common 2.009 ;
+use IO::Compress::Base::Common 2.010 ;
 #use Parse::Parameters ;
 
 use IO::File ;
index af86677..974b761 100644 (file)
@@ -6,6 +6,8 @@ use strict ;
 use Config qw(%Config);
 use File::Copy;
 
+my $VERSION = '1.0';
+
 
 BEGIN
 {
index 5c104e7..3dda40a 100644 (file)
@@ -19,7 +19,7 @@ BEGIN {
     $extra = 1
         if eval { require Test::NoWarnings ;  import Test::NoWarnings; 1 };
 
-    plan tests => 80 + $extra ;
+    plan tests => 78 + $extra ;
 
     use_ok('Scalar::Util');
     use_ok('IO::Compress::Base::Common');
@@ -120,11 +120,11 @@ undef) ;
     $$xx_ref = 666 ;
     is $xx, 666;
 
-    my $got1 = ParseParameters(1, {'Fred' => [1, 1, Parse_writable_scalar, undef]}, $got) ;
-    ok $got->parsed('Fred'), "parsed" ;
-    $xx_ref = $got->value('Fred');
-    $$xx_ref = 666 ;
-    is $xx, 666;
+#    my $got1 = ParseParameters(1, {'Fred' => [1, 1, Parse_writable_scalar, undef]}, $got) ;
+#    ok $got->parsed('Fred'), "parsed" ;
+#    $xx_ref = $got->value('Fred');
+#    $$xx_ref = 666 ;
+#    is $xx, 666;
 }
 
 My::testParseParameters();
index 206feb5..ba79b78 100644 (file)
@@ -1,6 +1,11 @@
 CHANGES
 -------
 
+  2.010 5 May 2008
+
+      * Fixed problem that meant Perl 5.10 could not upgrade this module.
+        [RT #35343]
+
   2.009 20 April 2008
 
       * IO::Compress::Zip 
index afd6f22..a2130aa 100644 (file)
@@ -3,7 +3,7 @@
 use strict ;
 require 5.004 ;
 
-$::VERSION = '2.009' ;
+$::VERSION = '2.010' ;
 
 use private::MakeUtil;
 use ExtUtils::MakeMaker 5.16 ;
@@ -51,6 +51,13 @@ WriteMakefile(
 
     INSTALLDIRS => ($] >= 5.009 ? 'perl' : 'site'),
 
+    (
+    $] >= 5.009 && ! $ENV{PERL_CORE}
+        ? (INST_LIB    => 'blib/arch')
+        : ()
+    ),
+
+
     ((ExtUtils::MakeMaker->VERSION() gt '6.30') ?
         ('LICENSE'  => 'perl')         : ()),    
 
index e26c701..9c403e6 100644 (file)
@@ -1,9 +1,9 @@
 
                              IO-Compress-Zlib
 
-                             Version 2.009
+                             Version 2.010
 
-                              20th April 2008
+                               5th May 2008
 
        Copyright (c) 2005-2008 Paul Marquess. All rights reserved.
           This program is free software; you can redistribute it
@@ -93,7 +93,7 @@ To help me help you, I need all of the following information:
         If you haven't installed IO-Compress-Zlib then search IO::Compress::Gzip.pm
         for a line like this:
 
-          $VERSION = "2.009" ;
+          $VERSION = "2.010" ;
 
  2. If you are having problems building IO-Compress-Zlib, send me a
     complete log of what happened. Start by unpacking the IO-Compress-Zlib
index 2ba4b2b..c269d4f 100644 (file)
@@ -4,12 +4,12 @@ use strict;
 use warnings;
 use bytes;
 
-use IO::Compress::Base::Common  2.009 qw(:Status);
+use IO::Compress::Base::Common  2.010 qw(:Status);
 
-use Compress::Raw::Zlib  2.009 qw(Z_OK Z_FINISH MAX_WBITS) ;
+use Compress::Raw::Zlib  2.010 qw(Z_OK Z_FINISH MAX_WBITS) ;
 our ($VERSION);
 
-$VERSION = '2.009';
+$VERSION = '2.010';
 
 sub mkCompObject
 {
index 998792e..2eef317 100644 (file)
@@ -4,10 +4,10 @@ use strict;
 use warnings;
 use bytes;
 
-use IO::Compress::Base::Common  2.009 qw(:Status);
+use IO::Compress::Base::Common  2.010 qw(:Status);
 our ($VERSION);
 
-$VERSION = '2.009';
+$VERSION = '2.010';
 
 sub mkCompObject
 {
index 17b89d6..c5d1d02 100644 (file)
@@ -6,16 +6,16 @@ use bytes;
 
 require Exporter ;
 
-use IO::Compress::RawDeflate 2.009 ;
+use IO::Compress::RawDeflate 2.010 ;
 
-use Compress::Raw::Zlib  2.009 ;
-use IO::Compress::Zlib::Constants 2.009 ;
-use IO::Compress::Base::Common  2.009 qw(createSelfTiedObject);
+use Compress::Raw::Zlib  2.010 ;
+use IO::Compress::Zlib::Constants 2.010 ;
+use IO::Compress::Base::Common  2.010 qw(createSelfTiedObject);
 
 
 our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $DeflateError);
 
-$VERSION = '2.009';
+$VERSION = '2.010';
 $DeflateError = '';
 
 @ISA    = qw(Exporter IO::Compress::RawDeflate);
index 2733830..4bea560 100644 (file)
@@ -8,12 +8,12 @@ use warnings;
 use bytes;
 
 
-use IO::Compress::RawDeflate 2.009 ;
+use IO::Compress::RawDeflate 2.010 ;
 
-use Compress::Raw::Zlib  2.009 ;
-use IO::Compress::Base::Common  2.009 qw(:Status :Parse createSelfTiedObject);
-use IO::Compress::Gzip::Constants 2.009 ;
-use IO::Compress::Zlib::Extra 2.009 ;
+use Compress::Raw::Zlib  2.010 ;
+use IO::Compress::Base::Common  2.010 qw(:Status :Parse createSelfTiedObject);
+use IO::Compress::Gzip::Constants 2.010 ;
+use IO::Compress::Zlib::Extra 2.010 ;
 
 BEGIN
 {
@@ -27,7 +27,7 @@ require Exporter ;
 
 our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $GzipError);
 
-$VERSION = '2.009';
+$VERSION = '2.010';
 $GzipError = '' ;
 
 @ISA    = qw(Exporter IO::Compress::RawDeflate);
index 92eeddb..0c0b168 100644 (file)
@@ -9,7 +9,7 @@ require Exporter;
 our ($VERSION, @ISA, @EXPORT, %GZIP_OS_Names);
 our ($GZIP_FNAME_INVALID_CHAR_RE, $GZIP_FCOMMENT_INVALID_CHAR_RE);
 
-$VERSION = '2.009';
+$VERSION = '2.010';
 
 @ISA = qw(Exporter);
 
index c0c4170..e728d53 100644 (file)
@@ -7,16 +7,16 @@ use warnings;
 use bytes;
 
 
-use IO::Compress::Base 2.009 ;
-use IO::Compress::Base::Common  2.009 qw(:Status createSelfTiedObject);
-use IO::Compress::Adapter::Deflate  2.009 ;
+use IO::Compress::Base 2.010 ;
+use IO::Compress::Base::Common  2.010 qw(:Status createSelfTiedObject);
+use IO::Compress::Adapter::Deflate  2.010 ;
 
 require Exporter ;
 
 
 our ($VERSION, @ISA, @EXPORT_OK, %DEFLATE_CONSTANTS, %EXPORT_TAGS, $RawDeflateError);
 
-$VERSION = '2.009';
+$VERSION = '2.010';
 $RawDeflateError = '';
 
 @ISA = qw(Exporter IO::Compress::Base);
@@ -143,8 +143,8 @@ sub getZlibParams
 {
     my $self = shift ;
 
-    use IO::Compress::Base::Common  2.009 qw(:Parse);
-    use Compress::Raw::Zlib  2.009 qw(Z_DEFLATED Z_DEFAULT_COMPRESSION Z_DEFAULT_STRATEGY);
+    use IO::Compress::Base::Common  2.010 qw(:Parse);
+    use Compress::Raw::Zlib  2.010 qw(Z_DEFLATED Z_DEFAULT_COMPRESSION Z_DEFAULT_STRATEGY);
 
     
     return (
index d501dcf..752763d 100644 (file)
@@ -4,21 +4,21 @@ use strict ;
 use warnings;
 use bytes;
 
-use IO::Compress::Base::Common  2.009 qw(:Status createSelfTiedObject);
-use IO::Compress::RawDeflate 2.009 ;
-use IO::Compress::Adapter::Deflate 2.009 ;
-use IO::Compress::Adapter::Identity 2.009 ;
-use IO::Compress::Zlib::Extra 2.009 ;
-use IO::Compress::Zip::Constants 2.009 ;
+use IO::Compress::Base::Common  2.010 qw(:Status createSelfTiedObject);
+use IO::Compress::RawDeflate 2.010 ;
+use IO::Compress::Adapter::Deflate 2.010 ;
+use IO::Compress::Adapter::Identity 2.010 ;
+use IO::Compress::Zlib::Extra 2.010 ;
+use IO::Compress::Zip::Constants 2.010 ;
 
 
-use Compress::Raw::Zlib  2.009 qw(crc32) ;
+use Compress::Raw::Zlib  2.010 qw(crc32) ;
 BEGIN
 {
     eval { require IO::Compress::Adapter::Bzip2 ; 
-           import  IO::Compress::Adapter::Bzip2 2.009 ; 
+           import  IO::Compress::Adapter::Bzip2 2.010 ; 
            require IO::Compress::Bzip2 ; 
-           import  IO::Compress::Bzip2 2.009 ; 
+           import  IO::Compress::Bzip2 2.010 ; 
          } ;
 }
 
@@ -27,7 +27,7 @@ require Exporter ;
 
 our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $ZipError);
 
-$VERSION = '2.009';
+$VERSION = '2.010';
 $ZipError = '';
 
 @ISA = qw(Exporter IO::Compress::RawDeflate);
@@ -453,8 +453,8 @@ sub getExtraParams
 {
     my $self = shift ;
 
-    use IO::Compress::Base::Common  2.009 qw(:Parse);
-    use Compress::Raw::Zlib  2.009 qw(Z_DEFLATED Z_DEFAULT_COMPRESSION Z_DEFAULT_STRATEGY);
+    use IO::Compress::Base::Common  2.010 qw(:Parse);
+    use Compress::Raw::Zlib  2.010 qw(Z_DEFLATED Z_DEFAULT_COMPRESSION Z_DEFAULT_STRATEGY);
 
     my @Bzip2 = ();
     
index d10e8f1..b49f6d7 100644 (file)
@@ -7,7 +7,7 @@ require Exporter;
 
 our ($VERSION, @ISA, @EXPORT, %ZIP_CM_MIN_VERSIONS);
 
-$VERSION = '2.009';
+$VERSION = '2.010';
 
 @ISA = qw(Exporter);
 
index c5db5e8..6535fe1 100644 (file)
@@ -9,7 +9,7 @@ require Exporter;
 
 our ($VERSION, @ISA, @EXPORT);
 
-$VERSION = '2.009';
+$VERSION = '2.010';
 
 @ISA = qw(Exporter);
 
index d822971..0ab3bf5 100644 (file)
@@ -8,9 +8,9 @@ use bytes;
 
 our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS);
 
-$VERSION = '2.009';
+$VERSION = '2.010';
 
-use IO::Compress::Gzip::Constants 2.009 ;
+use IO::Compress::Gzip::Constants 2.010 ;
 
 sub ExtraFieldError
 {
index f39dd42..0435825 100644 (file)
@@ -4,13 +4,13 @@ use warnings;
 use strict;
 use bytes;
 
-use IO::Compress::Base::Common  2.009 qw(:Status);
+use IO::Compress::Base::Common  2.010 qw(:Status);
 
 our ($VERSION);
 
-$VERSION = '2.009';
+$VERSION = '2.010';
 
-use Compress::Raw::Zlib  2.009 ();
+use Compress::Raw::Zlib  2.010 ();
 
 sub mkUncompObject
 {
index ac52a92..e3c6e71 100644 (file)
@@ -4,11 +4,11 @@ use strict;
 use warnings;
 use bytes;
 
-use IO::Compress::Base::Common  2.009 qw(:Status);
-use Compress::Raw::Zlib  2.009 qw(Z_OK Z_DATA_ERROR Z_STREAM_END Z_FINISH MAX_WBITS);
+use IO::Compress::Base::Common  2.010 qw(:Status);
+use Compress::Raw::Zlib  2.010 qw(Z_OK Z_DATA_ERROR Z_STREAM_END Z_FINISH MAX_WBITS);
 
 our ($VERSION);
-$VERSION = '2.009';
+$VERSION = '2.010';
 
 
 
index cace88e..d1a2477 100644 (file)
@@ -6,22 +6,22 @@ use strict;
 use warnings;
 use bytes;
 
-use IO::Compress::Base::Common  2.009 qw(createSelfTiedObject);
+use IO::Compress::Base::Common  2.010 qw(createSelfTiedObject);
 
-use IO::Uncompress::Adapter::Inflate  2.009 ();
+use IO::Uncompress::Adapter::Inflate  2.010 ();
 
 
-use IO::Uncompress::Base  2.009 ;
-use IO::Uncompress::Gunzip  2.009 ;
-use IO::Uncompress::Inflate  2.009 ;
-use IO::Uncompress::RawInflate  2.009 ;
-use IO::Uncompress::Unzip  2.009 ;
+use IO::Uncompress::Base  2.010 ;
+use IO::Uncompress::Gunzip  2.010 ;
+use IO::Uncompress::Inflate  2.010 ;
+use IO::Uncompress::RawInflate  2.010 ;
+use IO::Uncompress::Unzip  2.010 ;
 
 require Exporter ;
 
 our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $AnyInflateError);
 
-$VERSION = '2.009';
+$VERSION = '2.010';
 $AnyInflateError = '';
 
 @ISA = qw( Exporter IO::Uncompress::Base );
@@ -48,7 +48,7 @@ sub anyinflate
 
 sub getExtraParams
 {
-    use IO::Compress::Base::Common  2.009 qw(:Parse);
+    use IO::Compress::Base::Common  2.010 qw(:Parse);
     return ( 'RawInflate' => [1, 1, Parse_boolean,  0] ) ;
 }
 
index 4e69be1..e6cce8e 100644 (file)
@@ -9,12 +9,12 @@ use strict ;
 use warnings;
 use bytes;
 
-use IO::Uncompress::RawInflate 2.009 ;
+use IO::Uncompress::RawInflate 2.010 ;
 
-use Compress::Raw::Zlib 2.009 qw( crc32 ) ;
-use IO::Compress::Base::Common 2.009 qw(:Status createSelfTiedObject);
-use IO::Compress::Gzip::Constants 2.009 ;
-use IO::Compress::Zlib::Extra 2.009 ;
+use Compress::Raw::Zlib 2.010 qw( crc32 ) ;
+use IO::Compress::Base::Common 2.010 qw(:Status createSelfTiedObject);
+use IO::Compress::Gzip::Constants 2.010 ;
+use IO::Compress::Zlib::Extra 2.010 ;
 
 require Exporter ;
 
@@ -28,7 +28,7 @@ Exporter::export_ok_tags('all');
 
 $GunzipError = '';
 
-$VERSION = '2.009';
+$VERSION = '2.010';
 
 sub new
 {
@@ -47,7 +47,7 @@ sub gunzip
 
 sub getExtraParams
 {
-    use IO::Compress::Base::Common  2.009 qw(:Parse);
+    use IO::Compress::Base::Common  2.010 qw(:Parse);
     return ( 'ParseExtra' => [1, 1, Parse_boolean,  0] ) ;
 }
 
index d1d636a..52b3ded 100644 (file)
@@ -5,15 +5,15 @@ use strict ;
 use warnings;
 use bytes;
 
-use IO::Compress::Base::Common  2.009 qw(:Status createSelfTiedObject);
-use IO::Compress::Zlib::Constants 2.009 ;
+use IO::Compress::Base::Common  2.010 qw(:Status createSelfTiedObject);
+use IO::Compress::Zlib::Constants 2.010 ;
 
-use IO::Uncompress::RawInflate  2.009 ;
+use IO::Uncompress::RawInflate  2.010 ;
 
 require Exporter ;
 our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $InflateError);
 
-$VERSION = '2.009';
+$VERSION = '2.010';
 $InflateError = '';
 
 @ISA    = qw( Exporter IO::Uncompress::RawInflate );
index 1b13aa1..c251edc 100644 (file)
@@ -5,11 +5,11 @@ use strict ;
 use warnings;
 use bytes;
 
-use Compress::Raw::Zlib  2.009 ;
-use IO::Compress::Base::Common  2.009 qw(:Status createSelfTiedObject);
+use Compress::Raw::Zlib  2.010 ;
+use IO::Compress::Base::Common  2.010 qw(:Status createSelfTiedObject);
 
-use IO::Uncompress::Base  2.009 ;
-use IO::Uncompress::Adapter::Inflate  2.009 ;
+use IO::Uncompress::Base  2.010 ;
+use IO::Uncompress::Adapter::Inflate  2.010 ;
 
 
 
@@ -17,7 +17,7 @@ use IO::Uncompress::Adapter::Inflate  2.009 ;
 require Exporter ;
 our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, %DEFLATE_CONSTANTS, $RawInflateError);
 
-$VERSION = '2.009';
+$VERSION = '2.010';
 $RawInflateError = '';
 
 @ISA    = qw( Exporter IO::Uncompress::Base );
index bf26560..2a31f73 100644 (file)
@@ -8,13 +8,13 @@ use strict ;
 use warnings;
 use bytes;
 
-use IO::Uncompress::RawInflate  2.009 ;
-use IO::Compress::Base::Common  2.009 qw(:Status createSelfTiedObject);
-use IO::Uncompress::Adapter::Identity 2.009 ;
-use IO::Compress::Zlib::Extra 2.009 ;
-use IO::Compress::Zip::Constants 2.009 ;
+use IO::Uncompress::RawInflate  2.010 ;
+use IO::Compress::Base::Common  2.010 qw(:Status createSelfTiedObject);
+use IO::Uncompress::Adapter::Identity 2.010 ;
+use IO::Compress::Zlib::Extra 2.010 ;
+use IO::Compress::Zip::Constants 2.010 ;
 
-use Compress::Raw::Zlib  2.009 qw(crc32) ;
+use Compress::Raw::Zlib  2.010 qw(crc32) ;
 
 BEGIN
 {
@@ -27,7 +27,7 @@ require Exporter ;
 
 our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $UnzipError, %headerLookup);
 
-$VERSION = '2.009';
+$VERSION = '2.010';
 $UnzipError = '';
 
 @ISA    = qw(Exporter IO::Uncompress::RawInflate);
@@ -60,7 +60,7 @@ sub unzip
 
 sub getExtraParams
 {
-    use IO::Compress::Base::Common  2.009 qw(:Parse);
+    use IO::Compress::Base::Common  2.010 qw(:Parse);
 
     
     return (
index af86677..974b761 100644 (file)
@@ -6,6 +6,8 @@ use strict ;
 use Config qw(%Config);
 use File::Copy;
 
+my $VERSION = '1.0';
+
 
 BEGIN
 {