[PATCH] IO-Compress 2.022
Paul Marquess [Fri, 9 Oct 2009 21:51:37 +0000 (22:51 +0100)]
Message-ID: <4ACFB129.9070900@btinternet.com>

34 files changed:
cpan/IO-Compress/Changes
cpan/IO-Compress/Makefile.PL
cpan/IO-Compress/README
cpan/IO-Compress/lib/Compress/Zlib.pm
cpan/IO-Compress/lib/IO/Compress/Adapter/Bzip2.pm
cpan/IO-Compress/lib/IO/Compress/Adapter/Deflate.pm
cpan/IO-Compress/lib/IO/Compress/Adapter/Identity.pm
cpan/IO-Compress/lib/IO/Compress/Base.pm
cpan/IO-Compress/lib/IO/Compress/Base/Common.pm
cpan/IO-Compress/lib/IO/Compress/Bzip2.pm
cpan/IO-Compress/lib/IO/Compress/Deflate.pm
cpan/IO-Compress/lib/IO/Compress/Gzip.pm
cpan/IO-Compress/lib/IO/Compress/Gzip/Constants.pm
cpan/IO-Compress/lib/IO/Compress/RawDeflate.pm
cpan/IO-Compress/lib/IO/Compress/Zip.pm
cpan/IO-Compress/lib/IO/Compress/Zip/Constants.pm
cpan/IO-Compress/lib/IO/Compress/Zlib/Constants.pm
cpan/IO-Compress/lib/IO/Compress/Zlib/Extra.pm
cpan/IO-Compress/lib/IO/Uncompress/Adapter/Bunzip2.pm
cpan/IO-Compress/lib/IO/Uncompress/Adapter/Identity.pm
cpan/IO-Compress/lib/IO/Uncompress/Adapter/Inflate.pm
cpan/IO-Compress/lib/IO/Uncompress/AnyInflate.pm
cpan/IO-Compress/lib/IO/Uncompress/AnyUncompress.pm
cpan/IO-Compress/lib/IO/Uncompress/Base.pm
cpan/IO-Compress/lib/IO/Uncompress/Bunzip2.pm
cpan/IO-Compress/lib/IO/Uncompress/Gunzip.pm
cpan/IO-Compress/lib/IO/Uncompress/Inflate.pm
cpan/IO-Compress/lib/IO/Uncompress/RawInflate.pm
cpan/IO-Compress/lib/IO/Uncompress/Unzip.pm
cpan/IO-Compress/t/01misc.t
cpan/IO-Compress/t/compress/CompTestUtils.pm
cpan/IO-Compress/t/compress/any.pl
cpan/IO-Compress/t/compress/oneshot.pl
cpan/IO-Compress/t/compress/truncate.pl

index 6460a72..ef30644 100644 (file)
@@ -1,8 +1,12 @@
 CHANGES
 -------
 
-  2.021 30 August 2009
+  2.022 9 October 2009
+
+      * IO::Compress - Makefile.PL
+        Fix for core.
 
+  2.021 30 August 2009
 
       * IO::Compress::Base.pm
         - Less warnnings when reading from a closed filehandle.
index 64cdd29..018e27b 100644 (file)
@@ -42,8 +42,8 @@ WriteMakefile(
     INSTALLDIRS => ($] >= 5.009 ? 'perl' : 'site'),
     
     (
-    $] >= 5.009 && ! $ENV{PERL_CORE}
-        ? (INST_LIB    => 'blib/arch')
+    $] >= 5.009 && $] <= 5.011001 && ! $ENV{PERL_CORE}
+        ? (INSTALLPRIVLIB    => '$(INSTALLARCHLIB)')
         : ()
     ),
 
index 67cc0c6..8da9fbf 100644 (file)
@@ -1,9 +1,9 @@
 
-                             IO-Compress
+                                IO-Compress
 
-                             Version 2.021
+                               Version 2.022
 
-                             30th August 2009
+                             9th October 2009
 
        Copyright (c) 1995-2009 Paul Marquess. All rights reserved.
           This program is free software; you can redistribute it
index 0a61103..604227c 100644 (file)
@@ -18,7 +18,7 @@ use warnings ;
 use bytes ;
 our ($VERSION, $XS_VERSION, @ISA, @EXPORT, $AUTOLOAD);
 
-$VERSION = '2.021';
+$VERSION = '2.022';
 $XS_VERSION = $VERSION; 
 $VERSION = eval $VERSION;
 
index a56331d..103a045 100644 (file)
@@ -10,7 +10,7 @@ use IO::Compress::Base::Common  2.021 qw(:Status);
 use Compress::Raw::Bzip2  2.021 ;
 
 our ($VERSION);
-$VERSION = '2.021';
+$VERSION = '2.022';
 
 sub mkCompObject
 {
index 5258680..ac8f036 100644 (file)
@@ -9,7 +9,7 @@ use IO::Compress::Base::Common  2.021 qw(:Status);
 use Compress::Raw::Zlib  2.021 qw(Z_OK Z_FINISH MAX_WBITS) ;
 our ($VERSION);
 
-$VERSION = '2.021';
+$VERSION = '2.022';
 
 sub mkCompObject
 {
index c980e6c..e83542f 100644 (file)
@@ -7,7 +7,7 @@ use bytes;
 use IO::Compress::Base::Common  2.021 qw(:Status);
 our ($VERSION);
 
-$VERSION = '2.021';
+$VERSION = '2.022';
 
 sub mkCompObject
 {
index 7b558ea..bdd8d79 100644 (file)
@@ -20,7 +20,7 @@ use bytes;
 our (@ISA, $VERSION);
 @ISA    = qw(Exporter IO::File);
 
-$VERSION = '2.021';
+$VERSION = '2.022';
 
 #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 7981585..26af4f8 100644 (file)
@@ -11,7 +11,7 @@ use File::GlobMapper;
 require Exporter;
 our ($VERSION, @ISA, @EXPORT, %EXPORT_TAGS, $HAS_ENCODE);
 @ISA = qw(Exporter);
-$VERSION = '2.021';
+$VERSION = '2.022';
 
 @EXPORT = qw( isaFilehandle isaFilename whatIsInput whatIsOutput 
               isaFileGlobString cleanFileGlobString oneTarget
@@ -589,7 +589,7 @@ sub IO::Compress::Base::Parameters::parse
         $key = lc $key;
 
         if ($firstTime || ! $sticky) {
-            $x = [ $x ]
+            $x = []
                 if $type & Parse_multiple;
 
             $got->{$key} = [0, $type, $value, $x, $first_only, $sticky] ;
index e5f86b2..28725c6 100644 (file)
@@ -14,7 +14,7 @@ use IO::Compress::Adapter::Bzip2 2.021 ;
 
 our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $Bzip2Error);
 
-$VERSION = '2.021';
+$VERSION = '2.022';
 $Bzip2Error = '';
 
 @ISA    = qw(Exporter IO::Compress::Base);
index 7ee0a53..2e1a19f 100644 (file)
@@ -15,7 +15,7 @@ use IO::Compress::Base::Common  2.021 qw(createSelfTiedObject);
 
 our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $DeflateError);
 
-$VERSION = '2.021';
+$VERSION = '2.022';
 $DeflateError = '';
 
 @ISA    = qw(Exporter IO::Compress::RawDeflate);
index 5ddfad2..f2e60f6 100644 (file)
@@ -27,7 +27,7 @@ require Exporter ;
 
 our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $GzipError);
 
-$VERSION = '2.021';
+$VERSION = '2.022';
 $GzipError = '' ;
 
 @ISA    = qw(Exporter IO::Compress::RawDeflate);
index 8261836..095668e 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.021';
+$VERSION = '2.022';
 
 @ISA = qw(Exporter);
 
index ad642db..02a8cda 100644 (file)
@@ -16,7 +16,7 @@ require Exporter ;
 
 our ($VERSION, @ISA, @EXPORT_OK, %DEFLATE_CONSTANTS, %EXPORT_TAGS, $RawDeflateError);
 
-$VERSION = '2.021';
+$VERSION = '2.022';
 $RawDeflateError = '';
 
 @ISA = qw(Exporter IO::Compress::Base);
index 563b10d..d6e6167 100644 (file)
@@ -32,7 +32,7 @@ require Exporter ;
 
 our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $ZipError);
 
-$VERSION = '2.021';
+$VERSION = '2.022';
 $ZipError = '';
 
 @ISA = qw(Exporter IO::Compress::RawDeflate);
index d16eb23..a554d49 100644 (file)
@@ -7,7 +7,7 @@ require Exporter;
 
 our ($VERSION, @ISA, @EXPORT, %ZIP_CM_MIN_VERSIONS);
 
-$VERSION = '2.021';
+$VERSION = '2.022';
 
 @ISA = qw(Exporter);
 
index d65fedc..6b935ff 100644 (file)
@@ -9,7 +9,7 @@ require Exporter;
 
 our ($VERSION, @ISA, @EXPORT);
 
-$VERSION = '2.021';
+$VERSION = '2.022';
 
 @ISA = qw(Exporter);
 
index 72b4ddd..0c88017 100644 (file)
@@ -8,7 +8,7 @@ use bytes;
 
 our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS);
 
-$VERSION = '2.021';
+$VERSION = '2.022';
 
 use IO::Compress::Gzip::Constants 2.021 ;
 
index b2053af..796aadb 100644 (file)
@@ -9,7 +9,7 @@ use IO::Compress::Base::Common 2.021 qw(:Status);
 use Compress::Raw::Bzip2 2.021 ;
 
 our ($VERSION, @ISA);
-$VERSION = '2.021';
+$VERSION = '2.022';
 
 sub mkUncompObject
 {
index 0df1743..834eb5d 100644 (file)
@@ -8,7 +8,7 @@ use IO::Compress::Base::Common  2.021 qw(:Status);
 
 our ($VERSION);
 
-$VERSION = '2.021';
+$VERSION = '2.022';
 
 use Compress::Raw::Zlib  2.021 ();
 
index d03148c..5c67c1b 100644 (file)
@@ -8,7 +8,7 @@ use IO::Compress::Base::Common  2.021 qw(:Status);
 use Compress::Raw::Zlib  2.021 qw(Z_OK Z_BUF_ERROR Z_STREAM_END Z_FINISH MAX_WBITS);
 
 our ($VERSION);
-$VERSION = '2.021';
+$VERSION = '2.022';
 
 
 
index e8ffc5c..900feda 100644 (file)
@@ -21,7 +21,7 @@ require Exporter ;
 
 our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $AnyInflateError);
 
-$VERSION = '2.021';
+$VERSION = '2.022';
 $AnyInflateError = '';
 
 @ISA = qw( Exporter IO::Uncompress::Base );
index cc1ba24..c4406e5 100644 (file)
@@ -13,7 +13,7 @@ require Exporter ;
 
 our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $AnyUncompressError);
 
-$VERSION = '2.021';
+$VERSION = '2.022';
 $AnyUncompressError = '';
 
 @ISA = qw( Exporter IO::Uncompress::Base );
@@ -31,8 +31,8 @@ BEGIN
    eval ' use IO::Uncompress::Adapter::Bunzip2 2.021 ;';
    eval ' use IO::Uncompress::Adapter::LZO 2.021 ;';
    eval ' use IO::Uncompress::Adapter::Lzf 2.021 ;';
-   eval ' use IO::Uncompress::Adapter::UnLzma 2.020 ;';
-   eval ' use IO::Uncompress::Adapter::UnXz 2.020 ;';
+   #eval ' use IO::Uncompress::Adapter::UnLzma 2.020 ;';
+   #eval ' use IO::Uncompress::Adapter::UnXz 2.020 ;';
 
    eval ' use IO::Uncompress::Bunzip2 2.021 ;';
    eval ' use IO::Uncompress::UnLzop 2.021 ;';
@@ -41,8 +41,8 @@ BEGIN
    eval ' use IO::Uncompress::RawInflate 2.021 ;';
    eval ' use IO::Uncompress::Unzip 2.021 ;';
    eval ' use IO::Uncompress::UnLzf 2.021 ;';
-   eval ' use IO::Uncompress::UnLzma 2.018 ;';
-   eval ' use IO::Uncompress::UnXz 2.018 ;';
+   #eval ' use IO::Uncompress::UnLzma 2.018 ;';
+   #eval ' use IO::Uncompress::UnXz 2.018 ;';
 }
 
 sub new
@@ -61,7 +61,8 @@ sub anyuncompress
 sub getExtraParams
 {
     use IO::Compress::Base::Common 2.021 qw(:Parse);
-    return ( 'RawInflate' => [1, 1, Parse_boolean,  0] ) ;
+    return ( 'RawInflate' => [1, 1, Parse_boolean,  0] ,
+             'UnLzma'     => [1, 1, Parse_boolean,  0] ) ;
 }
 
 sub ckParams
@@ -107,7 +108,7 @@ sub mkUncomp
         }
      }
 
-#    if (defined $IO::Uncompress::UnLzma::VERSION )
+#    if (defined $IO::Uncompress::UnLzma::VERSION && $got->value('UnLzma'))
 #    {
 #        my ($obj, $errstr, $errno) = IO::Uncompress::Adapter::UnLzma::mkUncompObject();
 #
@@ -125,21 +126,21 @@ sub mkUncomp
 #            return 1;
 #        }
 #     }
-
-     if (defined $IO::Uncompress::UnXz::VERSION and
-         $magic = $self->ckMagic('UnXz')) {
-        *$self->{Info} = $self->readHeader($magic)
-            or return undef ;
-
-        my ($obj, $errstr, $errno) = IO::Uncompress::Adapter::UnXz::mkUncompObject();
-
-        return $self->saveErrorString(undef, $errstr, $errno)
-            if ! defined $obj;
-
-        *$self->{Uncomp} = $obj;
-
-         return 1;
-     }
+#
+#     if (defined $IO::Uncompress::UnXz::VERSION and
+#         $magic = $self->ckMagic('UnXz')) {
+#        *$self->{Info} = $self->readHeader($magic)
+#            or return undef ;
+#
+#        my ($obj, $errstr, $errno) = IO::Uncompress::Adapter::UnXz::mkUncompObject();
+#
+#        return $self->saveErrorString(undef, $errstr, $errno)
+#            if ! defined $obj;
+#
+#        *$self->{Uncomp} = $obj;
+#
+#         return 1;
+#     }
 
      if (defined $IO::Uncompress::Bunzip2::VERSION and
          $magic = $self->ckMagic('Bunzip2')) {
index 8459ce0..eccff87 100644 (file)
@@ -9,7 +9,7 @@ our (@ISA, $VERSION, @EXPORT_OK, %EXPORT_TAGS);
 @ISA    = qw(Exporter IO::File);
 
 
-$VERSION = '2.021';
+$VERSION = '2.022';
 
 use constant G_EOF => 0 ;
 use constant G_ERR => -1 ;
index ce483ea..22cf65d 100644 (file)
@@ -12,7 +12,7 @@ use IO::Uncompress::Adapter::Bunzip2 2.021 ;
 require Exporter ;
 our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $Bunzip2Error);
 
-$VERSION = '2.021';
+$VERSION = '2.022';
 $Bunzip2Error = '';
 
 @ISA    = qw( Exporter IO::Uncompress::Base );
index 8922865..41b6d3d 100644 (file)
@@ -28,7 +28,7 @@ Exporter::export_ok_tags('all');
 
 $GunzipError = '';
 
-$VERSION = '2.021';
+$VERSION = '2.022';
 
 sub new
 {
index 20aecc7..1a22263 100644 (file)
@@ -13,7 +13,7 @@ use IO::Uncompress::RawInflate  2.021 ;
 require Exporter ;
 our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $InflateError);
 
-$VERSION = '2.021';
+$VERSION = '2.022';
 $InflateError = '';
 
 @ISA    = qw( Exporter IO::Uncompress::RawInflate );
index 5727192..3a45fcd 100644 (file)
@@ -14,7 +14,7 @@ use IO::Uncompress::Adapter::Inflate  2.021 ;
 require Exporter ;
 our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, %DEFLATE_CONSTANTS, $RawInflateError);
 
-$VERSION = '2.021';
+$VERSION = '2.022';
 $RawInflateError = '';
 
 @ISA    = qw( Exporter IO::Uncompress::Base );
index 7d08c84..c9f638a 100644 (file)
@@ -30,7 +30,7 @@ require Exporter ;
 
 our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $UnzipError, %headerLookup);
 
-$VERSION = '2.021';
+$VERSION = '2.022';
 $UnzipError = '';
 
 @ISA    = qw(Exporter IO::Uncompress::RawInflate);
index a7a31fb..85cfd37 100644 (file)
@@ -86,11 +86,14 @@ sub My::testParseParameters()
     like $@, mkErr("Parameter 'Fred' not a scalar"), 
             "wanted scalar";
 
-    #eval { ParseParameters(1, {'Fred' => [1, 1, Parse_any|Parse_multiple, 0]}, Fred => 1, Fred => 2) ; };
-    #like $@, mkErr("Muliple instances of 'Fred' found"),
-        #"wanted scalar";
+#    eval { ParseParameters(1, {'Fred' => [1, 1, Parse_any, 0]}, Fred => 1, Fred => 2) ; };
+#    like $@, mkErr("Muliple instances of 'Fred' found"),
+#        "wanted scalar";
 
-    ok 1;
+    my $g = ParseParameters(1, {'Fred' => [1, 1, Parse_unsigned|Parse_multiple, 7]}, Fred => 1, Fred => 2) ;
+    is_deeply $g->value('Fred'), [ 1, 2 ] ;
+
+    #ok 1;
 
     my $got = ParseParameters(1, {'Fred' => [1, 1, 0x1000000, 0]}, Fred => 'abc') ;
     is $got->value('Fred'), "abc", "other" ;
index cb63d62..c5452b6 100644 (file)
@@ -16,7 +16,7 @@ use Carp ;
 sub title
 {
     #diag "" ; 
-    ok 1, $_[0] ;
+    ok(1, $_[0]) ;
     #diag "" ;
 }
 
@@ -476,6 +476,7 @@ sub anyUncompress
                     Append => 1, 
                     Transparent => 0, 
                     RawInflate => 1,
+                    #UnLzma     => 1,
                     @opts
         or croak "Cannot open buffer/file: $AnyUncompressError" ;
 
@@ -537,6 +538,7 @@ sub getHeaders
                 Append => 1, 
                 Transparent => 0, 
                 RawInflate => 1,
+                #UnLzma     => 1,
                 @opts
         or croak "Cannot open buffer/file: $AnyUncompressError" ;
 
@@ -647,7 +649,7 @@ sub getMultiValues
 {
     my $class = shift ;
 
-    return (0,0) if $class =~ /lzf/i;
+    return (0,0) if $class =~ /lzf|lzma/i;
     return (1,0);
 }
 
index d95766b..23a2329 100644 (file)
@@ -57,6 +57,7 @@ sub run
             {
                 my $unc = new $AnyConstruct $input, Transparent => $trans,
                                            RawInflate => 1,
+                                           #UnLzma => 1,
                                            Append => 1  ;
 
                 ok $unc, "  Created $AnyClass object" 
@@ -76,6 +77,7 @@ sub run
             {
                 my $unc = new $AnyConstruct $input, Transparent => $trans,
                                            RawInflate => 1,
+                                           #UnLzma => 1,
                                            Append => 1  ;
 
                 ok $unc, "  Created $AnyClass object" 
index 9c76cef..78d1727 100644 (file)
@@ -276,7 +276,7 @@ sub run
         my $FuncInverse = getTopFuncRef($TopTypeInverse);
 
         my @opts = ();
-        @opts = (RawInflate => 1)
+        @opts = (RawInflate => 1, UnLzma => 1)
             if $CompressClass eq 'IO::Compress::RawInflate';
 
         for my $append ( 1, 0 )
@@ -615,7 +615,7 @@ sub run
             {
                 title "Truncated file";
                 skip '', 7
-                    if $CompressClass =~ /lzop|lzf/i ;
+                    if $CompressClass =~ /lzop|lzf|lzma/i ;
 
                 my @in ;
                 push @in, "abcde" x 10;
@@ -1020,7 +1020,7 @@ sub run
         my $incumbent = "incumbent data" ;
 
         my @opts = (Strict => 1);
-        push @opts,  (RawInflate => 1)
+        push @opts,  (RawInflate => 1, UnLzma => 1)
             if $bit eq 'IO::Uncompress::AnyUncompress';
 
         for my $append (0, 1)
@@ -1321,7 +1321,7 @@ sub run
         my $keep_comp = $comp;
 
         my @opts = ();
-        @opts = (RawInflate => 1)
+        @opts = (RawInflate => 1, UnLzma => 1)
             if $bit eq 'IO::Uncompress::AnyUncompress';
 
         my $incumbent = "incumbent data" ;
@@ -1407,7 +1407,7 @@ sub run
         mkdir $tmpDir2, 0777;
 
         my @opts = ();
-        @opts = (RawInflate => 1)
+        @opts = (RawInflate => 1, UnLzma => 1)
             if $bit eq 'IO::Uncompress::AnyUncompress';
 
         ok   -d $tmpDir1, "  Temp Directory $tmpDir1 exists";
index b362fd3..063355b 100644 (file)
@@ -64,7 +64,7 @@ sub run
                 ok $gz;
                 ok ! $gz->error() ;
                 my $buff ;
-                is $gz->read($buff), length($part) ;
+                is $gz->read($buff, 5000), length($part) ;
                 ok $buff eq $part ;
                 ok $gz->eof() ;
                 $gz->close();