IO::Compress::* 2.003
Paul Marquess [Tue, 2 Jan 2007 13:14:26 +0000 (13:14 +0000)]
From: "Paul Marquess" <Paul.Marquess@ntlworld.com>
Message-ID: <02ca01c72e6f$eef88360$6401a8c0@myopwv.com>

p4raw-id: //depot/perl@29672

33 files changed:
ext/Compress/Raw/Zlib/Changes
ext/Compress/Raw/Zlib/README
ext/Compress/Raw/Zlib/lib/Compress/Raw/Zlib.pm
ext/Compress/Zlib/Changes
ext/Compress/Zlib/Makefile.PL
ext/Compress/Zlib/README
ext/Compress/Zlib/lib/Compress/Zlib.pm
ext/IO/Compress/Base/Changes
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/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

index 10939b5..1295b1e 100644 (file)
@@ -1,6 +1,10 @@
 CHANGES
 -------
 
+  2.003 2 January 2007
+
+      * Added explicit version checking
+
   2.002 29 December 2006
 
       * Documentation updates.
index 5d8ab3b..4e0e246 100644 (file)
@@ -1,12 +1,12 @@
 
                              Compress::Raw::Zlib
 
-                             Version 2.002
+                             Version 2.003
 
-                            29th December 2006
+                             2nd January 2007
 
 
-       Copyright (c) 2005-2006 Paul Marquess. All rights reserved.
+       Copyright (c) 2005-2007 Paul Marquess. All rights reserved.
           This program is free software; you can redistribute it
            and/or modify it under the same terms as Perl itself.
 
index 0cc4b11..70e46df 100644 (file)
@@ -13,7 +13,7 @@ use warnings ;
 use bytes ;
 our ($VERSION, $XS_VERSION, @ISA, @EXPORT, $AUTOLOAD);
 
-$VERSION = '2.002';
+$VERSION = '2.003';
 $XS_VERSION = $VERSION; 
 $VERSION = eval $VERSION;
 
@@ -1189,7 +1189,7 @@ See the Changes file.
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (c) 2005-2006 Paul Marquess. All rights reserved.
+Copyright (c) 2005-2007 Paul Marquess. All rights reserved.
 
 This program is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.
index 4a21122..73ebd53 100644 (file)
@@ -1,6 +1,10 @@
 CHANGES
 -------
 
+  2.003 2 January 2007
+
+      * Added explicit version checking
+
   2.002 29 December 2006
 
       * Documentation updates.
index df93a6c..d2d2e1a 100755 (executable)
@@ -3,6 +3,8 @@
 use strict ;
 require 5.004 ;
 
+$::VERSION = '2.003' ;
+
 use private::MakeUtil;
 use ExtUtils::MakeMaker 5.16 ;
 
@@ -21,13 +23,13 @@ WriteMakefile(
     (
       $ENV{SKIP_FOR_CORE}
         ? (MAN3PODS    => {})
-           : (PREREQ_PM   => { 'Compress::Raw::Zlib'           => 0,
-                                   'IO::Compress::Base'            => 0,
-                                   'IO::Compress::Base::Common'    => 0,
-                                   'IO::Uncompress::Base'          => 0,
-                                   'IO::Compress::Gzip'            => 0,
-                                   'IO::Compress::Gzip::Constants' => 0,
-                                   'IO::Uncompress::Gunzip'        => 0,
+           : (PREREQ_PM   => { 'Compress::Raw::Zlib'           => $::VERSION,
+                                   'IO::Compress::Base'            => $::VERSION,
+                                   'IO::Compress::Base::Common'    => $::VERSION,
+                                   'IO::Uncompress::Base'          => $::VERSION,
+                                   'IO::Compress::Gzip'            => $::VERSION,
+                                   'IO::Compress::Gzip::Constants' => $::VERSION,
+                                   'IO::Uncompress::Gunzip'        => $::VERSION,
                                    'Scalar::Util'                  => 0,
                           }
              )
index e0caaf9..263eb7b 100644 (file)
@@ -1,12 +1,12 @@
 
                              Compress::Zlib
 
-                             Version 2.002
+                             Version 2.003
 
-                            29th December 2006
+                             2nd January 2007
 
 
-       Copyright (c) 1995-2006 Paul Marquess. All rights reserved.
+       Copyright (c) 1995-2007 Paul Marquess. All rights reserved.
           This program is free software; you can redistribute it
            and/or modify it under the same terms as Perl itself.
 
index cb9508b..e8e9da3 100644 (file)
@@ -8,17 +8,17 @@ use Carp ;
 use IO::Handle ;
 use Scalar::Util qw(dualvar);
 
-use IO::Compress::Base::Common ;
-use Compress::Raw::Zlib;
-use IO::Compress::Gzip;
-use IO::Uncompress::Gunzip;
+use IO::Compress::Base::Common 2.003 ;
+use Compress::Raw::Zlib 2.003 ;
+use IO::Compress::Gzip 2.003 ;
+use IO::Uncompress::Gunzip 2.003 ;
 
 use strict ;
 use warnings ;
 use bytes ;
 our ($VERSION, $XS_VERSION, @ISA, @EXPORT, $AUTOLOAD);
 
-$VERSION = '2.002';
+$VERSION = '2.003';
 $XS_VERSION = $VERSION; 
 $VERSION = eval $VERSION;
 
@@ -438,7 +438,7 @@ sub inflate
 
 package Compress::Zlib ;
 
-use IO::Compress::Gzip::Constants;
+use IO::Compress::Gzip::Constants 2.003 ;
 
 sub memGzip($)
 {
@@ -1452,7 +1452,7 @@ See the Changes file.
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (c) 1995-2006 Paul Marquess. All rights reserved.
+Copyright (c) 1995-2007 Paul Marquess. All rights reserved.
 
 This program is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.
index e51c432..f7357f1 100644 (file)
@@ -1,6 +1,10 @@
 CHANGES
 -------
 
+  2.003 2 January 2007
+
+      * Added explicit version checking
+
   2.002 29 December 2006
 
       * Documentation updates.
index 07caefc..ba41fd0 100644 (file)
@@ -1,12 +1,12 @@
 
                              IO::Compress::Base
 
-                             Version 2.002
+                             Version 2.003
 
-                            29th December 2006
+                             2nd January 2007
 
 
-       Copyright (c) 2005-2006 Paul Marquess. All rights reserved.
+       Copyright (c) 2005-2007 Paul Marquess. All rights reserved.
           This program is free software; you can redistribute it
            and/or modify it under the same terms as Perl itself.
 
index dc8a39a..47f26ef 100644 (file)
@@ -6,7 +6,7 @@ require 5.004 ;
 use strict ;
 use warnings;
 
-use IO::Compress::Base::Common;
+use IO::Compress::Base::Common 2.003 ;
 
 use IO::File ;
 use Scalar::Util qw(blessed readonly);
@@ -20,7 +20,7 @@ use bytes;
 our (@ISA, $VERSION, $got_encode);
 #@ISA    = qw(Exporter IO::File);
 
-$VERSION = '2.002';
+$VERSION = '2.003';
 
 #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.
 
@@ -997,7 +997,7 @@ See the Changes file.
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (c) 2005-2006 Paul Marquess. All rights reserved.
+Copyright (c) 2005-2007 Paul Marquess. All rights reserved.
 
 This program is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.
index 3ccb19a..dc772a8 100644 (file)
@@ -11,7 +11,7 @@ use File::GlobMapper;
 require Exporter;
 our ($VERSION, @ISA, @EXPORT, %EXPORT_TAGS);
 @ISA = qw(Exporter);
-$VERSION = '2.002';
+$VERSION = '2.003';
 
 @EXPORT = qw( isaFilehandle isaFilename whatIsInput whatIsOutput 
               isaFileGlobString cleanFileGlobString oneTarget
index e9c1628..8657c18 100644 (file)
@@ -4,16 +4,16 @@ use strict;
 use warnings;
 use bytes;
 
-use IO::Compress::Base::Common qw(createSelfTiedObject);
+use IO::Compress::Base::Common 2.003 qw(createSelfTiedObject);
 
-use IO::Uncompress::Base ;
+use IO::Uncompress::Base 2.003 ;
 
 
 require Exporter ;
 
 our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $AnyUncompressError);
 
-$VERSION = '2.002';
+$VERSION = '2.003';
 $AnyUncompressError = '';
 
 @ISA = qw( Exporter IO::Uncompress::Base );
@@ -27,18 +27,18 @@ Exporter::export_ok_tags('all');
 
 BEGIN
 {
-   eval ' use IO::Uncompress::Adapter::Inflate ';
-   eval ' use IO::Uncompress::Adapter::Bunzip2 ';
-   eval ' use IO::Uncompress::Adapter::LZO ';
-   eval ' use IO::Uncompress::Adapter::Lzf ';
-
-   eval ' use IO::Uncompress::Bunzip2 ';
-   eval ' use IO::Uncompress::UnLzop ';
-   eval ' use IO::Uncompress::Gunzip ';
-   eval ' use IO::Uncompress::Inflate ';
-   eval ' use IO::Uncompress::RawInflate ';
-   eval ' use IO::Uncompress::Unzip ';
-   eval ' use IO::Uncompress::UnLzf ';
+   eval ' use IO::Uncompress::Adapter::Inflate 2.003 ;';
+   eval ' use IO::Uncompress::Adapter::Bunzip2 2.003 ;';
+   eval ' use IO::Uncompress::Adapter::LZO 2.003 ;';
+   eval ' use IO::Uncompress::Adapter::Lzf 2.003 ;';
+
+   eval ' use IO::Uncompress::Bunzip2 2.003 ;';
+   eval ' use IO::Uncompress::UnLzop 2.003 ;';
+   eval ' use IO::Uncompress::Gunzip 2.003 ;';
+   eval ' use IO::Uncompress::Inflate 2.003 ;';
+   eval ' use IO::Uncompress::RawInflate 2.003 ;';
+   eval ' use IO::Uncompress::Unzip 2.003 ;';
+   eval ' use IO::Uncompress::UnLzf 2.003 ;';
 }
 
 sub new
@@ -56,7 +56,7 @@ sub anyuncompress
 
 sub getExtraParams
 {
-    use IO::Compress::Base::Common qw(:Parse);
+    use IO::Compress::Base::Common 2.003 qw(:Parse);
     return ( 'RawInflate' => [1, 1, Parse_boolean,  0] ) ;
 }
 
@@ -1023,7 +1023,7 @@ See the Changes file.
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (c) 2005-2006 Paul Marquess. All rights reserved.
+Copyright (c) 2005-2007 Paul Marquess. All rights reserved.
 
 This program is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.
index cbf87f8..709d705 100644 (file)
@@ -10,12 +10,12 @@ our (@ISA, $VERSION, @EXPORT_OK, %EXPORT_TAGS);
 @ISA    = qw(Exporter );
 
 
-$VERSION = '2.002';
+$VERSION = '2.003';
 
 use constant G_EOF => 0 ;
 use constant G_ERR => -1 ;
 
-use IO::Compress::Base::Common;
+use IO::Compress::Base::Common 2.003 ;
 #use Parse::Parameters ;
 
 use IO::File ;
@@ -1399,7 +1399,7 @@ See the Changes file.
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (c) 2005-2006 Paul Marquess. All rights reserved.
+Copyright (c) 2005-2007 Paul Marquess. All rights reserved.
 
 This program is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.
index af41759..4e616b4 100644 (file)
@@ -1,6 +1,10 @@
 CHANGES
 -------
 
+  2.003 2 January 2007
+
+      * Added explicit version checking
+
   2.002 29 December 2006
 
       * Documentation updates.
index b56eb28..0368115 100644 (file)
@@ -3,6 +3,8 @@
 use strict ;
 require 5.004 ;
 
+$::VERSION = '2.003' ;
+
 use private::MakeUtil;
 use ExtUtils::MakeMaker 5.16 ;
 
@@ -21,9 +23,9 @@ WriteMakefile(
     (
       $ENV{SKIP_FOR_CORE}
         ? (MAN3PODS    => {})
-           : (PREREQ_PM   => { 'Compress::Raw::Zlib'  => 0,
-                                   'IO::Compress::Base'   => 0,
-                                   'IO::Uncompress::Base' => 0,
+           : (PREREQ_PM   => { 'Compress::Raw::Zlib'  => $::VERSION,
+                                   'IO::Compress::Base'   => $::VERSION,
+                                   'IO::Uncompress::Base' => $::VERSION,
                                    $] >= 5.005 && $] < 5.006   
                                 ? ('File::BSDGlob' => 0) 
                                 : () }
index dac01b9..9bdda20 100644 (file)
@@ -1,12 +1,12 @@
 
                              IO::Compress::Zlib
 
-                             Version 2.002
+                             Version 2.003
 
-                            29th December 2006
+                             2nd January 2007
 
 
-       Copyright (c) 2005-2006 Paul Marquess. All rights reserved.
+       Copyright (c) 2005-2007 Paul Marquess. All rights reserved.
           This program is free software; you can redistribute it
            and/or modify it under the same terms as Perl itself.
 
index 93b18c2..c8b43bd 100644 (file)
@@ -4,12 +4,12 @@ use strict;
 use warnings;
 use bytes;
 
-use IO::Compress::Base::Common qw(:Status);
+use IO::Compress::Base::Common  2.003 qw(:Status);
 
-use Compress::Raw::Zlib qw(Z_OK Z_FINISH MAX_WBITS) ;
+use Compress::Raw::Zlib  2.003 qw(Z_OK Z_FINISH MAX_WBITS) ;
 our ($VERSION);
 
-$VERSION = '2.002';
+$VERSION = '2.003';
 
 sub mkCompObject
 {
index 4bb176b..15af467 100644 (file)
@@ -4,10 +4,10 @@ use strict;
 use warnings;
 use bytes;
 
-use IO::Compress::Base::Common qw(:Status);
+use IO::Compress::Base::Common  2.003 qw(:Status);
 our ($VERSION);
 
-$VERSION = '2.002';
+$VERSION = '2.003';
 
 sub mkCompObject
 {
index 5928f24..ff69332 100644 (file)
@@ -6,16 +6,16 @@ use bytes;
 
 require Exporter ;
 
-use IO::Compress::RawDeflate;
+use IO::Compress::RawDeflate 2.003 ;
 
-use Compress::Raw::Zlib ;
-use IO::Compress::Zlib::Constants;
-use IO::Compress::Base::Common qw(createSelfTiedObject);
+use Compress::Raw::Zlib  2.003 ;
+use IO::Compress::Zlib::Constants 2.003 ;
+use IO::Compress::Base::Common  2.003 qw(createSelfTiedObject);
 
 
 our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $DeflateError);
 
-$VERSION = '2.002';
+$VERSION = '2.003';
 $DeflateError = '';
 
 @ISA    = qw(Exporter IO::Compress::RawDeflate);
@@ -992,7 +992,7 @@ See the Changes file.
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (c) 2005-2006 Paul Marquess. All rights reserved.
+Copyright (c) 2005-2007 Paul Marquess. All rights reserved.
 
 This program is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.
index 0c39c3a..c4253b6 100644 (file)
@@ -8,12 +8,12 @@ use warnings;
 use bytes;
 
 
-use IO::Compress::RawDeflate;
+use IO::Compress::RawDeflate 2.003 ;
 
-use Compress::Raw::Zlib ;
-use IO::Compress::Base::Common qw(:Status :Parse createSelfTiedObject);
-use IO::Compress::Gzip::Constants;
-use IO::Compress::Zlib::Extra;
+use Compress::Raw::Zlib  2.003 ;
+use IO::Compress::Base::Common  2.003 qw(:Status :Parse createSelfTiedObject);
+use IO::Compress::Gzip::Constants 2.003 ;
+use IO::Compress::Zlib::Extra 2.003 ;
 
 BEGIN
 {
@@ -27,7 +27,7 @@ require Exporter ;
 
 our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $GzipError);
 
-$VERSION = '2.002';
+$VERSION = '2.003';
 $GzipError = '' ;
 
 @ISA    = qw(Exporter IO::Compress::RawDeflate);
@@ -1307,7 +1307,7 @@ See the Changes file.
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (c) 2005-2006 Paul Marquess. All rights reserved.
+Copyright (c) 2005-2007 Paul Marquess. All rights reserved.
 
 This program is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.
index 2007a40..4e47f73 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.002';
+$VERSION = '2.003';
 
 @ISA = qw(Exporter);
 
index 5addd85..0cd340b 100644 (file)
@@ -7,16 +7,16 @@ use warnings;
 use bytes;
 
 
-use IO::Compress::Base;
-use IO::Compress::Base::Common qw(:Status createSelfTiedObject);
-use IO::Compress::Adapter::Deflate ;
+use IO::Compress::Base 2.003 ;
+use IO::Compress::Base::Common  2.003 qw(:Status createSelfTiedObject);
+use IO::Compress::Adapter::Deflate  2.003 ;
 
 require Exporter ;
 
 
 our ($VERSION, @ISA, @EXPORT_OK, %DEFLATE_CONSTANTS, %EXPORT_TAGS, $RawDeflateError);
 
-$VERSION = '2.002';
+$VERSION = '2.003';
 $RawDeflateError = '';
 
 @ISA = qw(Exporter IO::Compress::Base);
@@ -141,8 +141,8 @@ sub getZlibParams
 {
     my $self = shift ;
 
-    use IO::Compress::Base::Common qw(:Parse);
-    use Compress::Raw::Zlib qw(Z_DEFLATED Z_DEFAULT_COMPRESSION Z_DEFAULT_STRATEGY);
+    use IO::Compress::Base::Common  2.003 qw(:Parse);
+    use Compress::Raw::Zlib  2.003 qw(Z_DEFLATED Z_DEFAULT_COMPRESSION Z_DEFAULT_STRATEGY);
 
     
     return (
@@ -1078,7 +1078,7 @@ See the Changes file.
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (c) 2005-2006 Paul Marquess. All rights reserved.
+Copyright (c) 2005-2007 Paul Marquess. All rights reserved.
 
 This program is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.
index e065375..899cbbe 100644 (file)
@@ -4,21 +4,21 @@ use strict ;
 use warnings;
 use bytes;
 
-use IO::Compress::Base::Common qw(:Status createSelfTiedObject);
-use IO::Compress::RawDeflate;
-use IO::Compress::Adapter::Deflate;
-use IO::Compress::Adapter::Identity;
-use IO::Compress::Zlib::Extra;
-use IO::Compress::Zip::Constants;
+use IO::Compress::Base::Common  2.003 qw(:Status createSelfTiedObject);
+use IO::Compress::RawDeflate 2.003 ;
+use IO::Compress::Adapter::Deflate 2.003 ;
+use IO::Compress::Adapter::Identity 2.003 ;
+use IO::Compress::Zlib::Extra 2.003 ;
+use IO::Compress::Zip::Constants 2.003 ;
 
 
-use Compress::Raw::Zlib qw(crc32) ;
+use Compress::Raw::Zlib  2.003 qw(crc32) ;
 BEGIN
 {
-    eval { require IO::Compress::Adapter::Bzip2; 
-           import  IO::Compress::Adapter::Bzip2; 
-           require IO::Compress::Bzip2; 
-           import  IO::Compress::Bzip2; 
+    eval { require IO::Compress::Adapter::Bzip2 ; 
+           import  IO::Compress::Adapter::Bzip2 2.003 ; 
+           require IO::Compress::Bzip2 ; 
+           import  IO::Compress::Bzip2 2.003 ; 
          } ;
 }
 
@@ -27,7 +27,7 @@ require Exporter ;
 
 our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $ZipError);
 
-$VERSION = '2.002';
+$VERSION = '2.003';
 $ZipError = '';
 
 @ISA = qw(Exporter IO::Compress::RawDeflate);
@@ -438,8 +438,8 @@ sub getExtraParams
 {
     my $self = shift ;
 
-    use IO::Compress::Base::Common qw(:Parse);
-    use Compress::Raw::Zlib qw(Z_DEFLATED Z_DEFAULT_COMPRESSION Z_DEFAULT_STRATEGY);
+    use IO::Compress::Base::Common  2.003 qw(:Parse);
+    use Compress::Raw::Zlib  2.003 qw(Z_DEFLATED Z_DEFAULT_COMPRESSION Z_DEFAULT_STRATEGY);
 
     my @Bzip2 = ();
     
@@ -1536,7 +1536,7 @@ See the Changes file.
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (c) 2005-2006 Paul Marquess. All rights reserved.
+Copyright (c) 2005-2007 Paul Marquess. All rights reserved.
 
 This program is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.
index 5594b20..dc8912d 100644 (file)
@@ -7,7 +7,7 @@ require Exporter;
 
 our ($VERSION, @ISA, @EXPORT, %ZIP_CM_MIN_VERSIONS);
 
-$VERSION = '2.002';
+$VERSION = '2.003';
 
 @ISA = qw(Exporter);
 
index afbd1fc..694f9ec 100644 (file)
@@ -9,7 +9,7 @@ require Exporter;
 
 our ($VERSION, @ISA, @EXPORT);
 
-$VERSION = '2.002';
+$VERSION = '2.003';
 
 @ISA = qw(Exporter);
 
index 325d87a..7f9f7b0 100644 (file)
@@ -8,9 +8,9 @@ use bytes;
 
 our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS);
 
-$VERSION = '2.002';
+$VERSION = '2.003';
 
-use IO::Compress::Gzip::Constants;
+use IO::Compress::Gzip::Constants 2.003 ;
 
 sub ExtraFieldError
 {
index 8a5b9a2..4a3b316 100644 (file)
@@ -4,13 +4,13 @@ use warnings;
 use strict;
 use bytes;
 
-use IO::Compress::Base::Common qw(:Status);
+use IO::Compress::Base::Common  2.003 qw(:Status);
 
 our ($VERSION);
 
-$VERSION = '2.002';
+$VERSION = '2.003';
 
-use Compress::Raw::Zlib ();
+use Compress::Raw::Zlib  2.003 ();
 
 sub mkUncompObject
 {
index cf46228..96e42cc 100644 (file)
@@ -4,11 +4,11 @@ use strict;
 use warnings;
 use bytes;
 
-use IO::Compress::Base::Common qw(:Status);
-use Compress::Raw::Zlib qw(Z_OK Z_DATA_ERROR Z_STREAM_END Z_FINISH MAX_WBITS);
+use IO::Compress::Base::Common  2.003 qw(:Status);
+use Compress::Raw::Zlib  2.003 qw(Z_OK Z_DATA_ERROR Z_STREAM_END Z_FINISH MAX_WBITS);
 
 our ($VERSION);
-$VERSION = '2.002';
+$VERSION = '2.003';
 
 
 
index 026999b..938013f 100644 (file)
@@ -6,22 +6,22 @@ use strict;
 use warnings;
 use bytes;
 
-use IO::Compress::Base::Common qw(createSelfTiedObject);
+use IO::Compress::Base::Common  2.003 qw(createSelfTiedObject);
 
-use IO::Uncompress::Adapter::Inflate ();
+use IO::Uncompress::Adapter::Inflate  2.003 ();
 
 
-use IO::Uncompress::Base ;
-use IO::Uncompress::Gunzip ;
-use IO::Uncompress::Inflate ;
-use IO::Uncompress::RawInflate ;
-use IO::Uncompress::Unzip ;
+use IO::Uncompress::Base  2.003 ;
+use IO::Uncompress::Gunzip  2.003 ;
+use IO::Uncompress::Inflate  2.003 ;
+use IO::Uncompress::RawInflate  2.003 ;
+use IO::Uncompress::Unzip  2.003 ;
 
 require Exporter ;
 
 our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $AnyInflateError);
 
-$VERSION = '2.002';
+$VERSION = '2.003';
 $AnyInflateError = '';
 
 @ISA = qw( Exporter IO::Uncompress::Base );
@@ -48,7 +48,7 @@ sub anyinflate
 
 sub getExtraParams
 {
-    use IO::Compress::Base::Common qw(:Parse);
+    use IO::Compress::Base::Common  2.003 qw(:Parse);
     return ( 'RawInflate' => [1, 1, Parse_boolean,  0] ) ;
 }
 
@@ -1048,7 +1048,7 @@ See the Changes file.
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (c) 2005-2006 Paul Marquess. All rights reserved.
+Copyright (c) 2005-2007 Paul Marquess. All rights reserved.
 
 This program is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.
index ae6d8bb..d350bec 100644 (file)
@@ -9,12 +9,12 @@ use strict ;
 use warnings;
 use bytes;
 
-use IO::Uncompress::RawInflate ;
+use IO::Uncompress::RawInflate 2.003 ;
 
-use Compress::Raw::Zlib qw( crc32 ) ;
-use IO::Compress::Base::Common qw(:Status createSelfTiedObject);
-use IO::Compress::Gzip::Constants;
-use IO::Compress::Zlib::Extra;
+use Compress::Raw::Zlib 2.003 qw( crc32 ) ;
+use IO::Compress::Base::Common 2.003 qw(:Status createSelfTiedObject);
+use IO::Compress::Gzip::Constants 2.003 ;
+use IO::Compress::Zlib::Extra 2.003 ;
 
 require Exporter ;
 
@@ -28,7 +28,7 @@ Exporter::export_ok_tags('all');
 
 $GunzipError = '';
 
-$VERSION = '2.002';
+$VERSION = '2.003';
 
 sub new
 {
@@ -47,7 +47,7 @@ sub gunzip
 
 sub getExtraParams
 {
-    use IO::Compress::Base::Common qw(:Parse);
+    use IO::Compress::Base::Common  2.003 qw(:Parse);
     return ( 'ParseExtra' => [1, 1, Parse_boolean,  0] ) ;
 }
 
@@ -1174,7 +1174,7 @@ See the Changes file.
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (c) 2005-2006 Paul Marquess. All rights reserved.
+Copyright (c) 2005-2007 Paul Marquess. All rights reserved.
 
 This program is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.
index e482a08..d2dc05d 100644 (file)
@@ -5,15 +5,15 @@ use strict ;
 use warnings;
 use bytes;
 
-use IO::Compress::Base::Common qw(:Status createSelfTiedObject);
-use IO::Compress::Zlib::Constants;
+use IO::Compress::Base::Common  2.003 qw(:Status createSelfTiedObject);
+use IO::Compress::Zlib::Constants 2.003 ;
 
-use IO::Uncompress::RawInflate ;
+use IO::Uncompress::RawInflate  2.003 ;
 
 require Exporter ;
 our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $InflateError);
 
-$VERSION = '2.002';
+$VERSION = '2.003';
 $InflateError = '';
 
 @ISA    = qw( Exporter IO::Uncompress::RawInflate );
@@ -1041,7 +1041,7 @@ See the Changes file.
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (c) 2005-2006 Paul Marquess. All rights reserved.
+Copyright (c) 2005-2007 Paul Marquess. All rights reserved.
 
 This program is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.
index 456cd69..f7a3b1e 100644 (file)
@@ -5,11 +5,11 @@ use strict ;
 use warnings;
 use bytes;
 
-use Compress::Raw::Zlib ;
-use IO::Compress::Base::Common qw(:Status createSelfTiedObject);
+use Compress::Raw::Zlib  2.003 ;
+use IO::Compress::Base::Common  2.003 qw(:Status createSelfTiedObject);
 
-use IO::Uncompress::Base ;
-use IO::Uncompress::Adapter::Inflate ;
+use IO::Uncompress::Base  2.003 ;
+use IO::Uncompress::Adapter::Inflate  2.003 ;
 
 
 
@@ -17,7 +17,7 @@ use IO::Uncompress::Adapter::Inflate ;
 require Exporter ;
 our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, %DEFLATE_CONSTANTS, $RawInflateError);
 
-$VERSION = '2.002';
+$VERSION = '2.003';
 $RawInflateError = '';
 
 @ISA    = qw( Exporter IO::Uncompress::Base );
@@ -1145,7 +1145,7 @@ See the Changes file.
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (c) 2005-2006 Paul Marquess. All rights reserved.
+Copyright (c) 2005-2007 Paul Marquess. All rights reserved.
 
 This program is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.
index 4aca7bb..63550e9 100644 (file)
@@ -8,13 +8,13 @@ use strict ;
 use warnings;
 use bytes;
 
-use IO::Uncompress::RawInflate ;
-use IO::Compress::Base::Common qw(:Status createSelfTiedObject);
-use IO::Uncompress::Adapter::Identity;
-use IO::Compress::Zlib::Extra;
-use IO::Compress::Zip::Constants;
+use IO::Uncompress::RawInflate  2.003 ;
+use IO::Compress::Base::Common  2.003 qw(:Status createSelfTiedObject);
+use IO::Uncompress::Adapter::Identity 2.003 ;
+use IO::Compress::Zlib::Extra 2.003 ;
+use IO::Compress::Zip::Constants 2.003 ;
 
-use Compress::Raw::Zlib qw(crc32) ;
+use Compress::Raw::Zlib  2.003 qw(crc32) ;
 
 BEGIN
 {
@@ -27,7 +27,7 @@ require Exporter ;
 
 our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $UnzipError, %headerLookup);
 
-$VERSION = '2.002';
+$VERSION = '2.003';
 $UnzipError = '';
 
 @ISA    = qw(Exporter IO::Uncompress::RawInflate);
@@ -60,7 +60,7 @@ sub unzip
 
 sub getExtraParams
 {
-    use IO::Compress::Base::Common qw(:Parse);
+    use IO::Compress::Base::Common  2.003 qw(:Parse);
 
     
     return (
@@ -1532,7 +1532,7 @@ See the Changes file.
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (c) 2005-2006 Paul Marquess. All rights reserved.
+Copyright (c) 2005-2007 Paul Marquess. All rights reserved.
 
 This program is free software; you can redistribute it and/or
 modify it under the same terms as Perl itself.