diff options
author | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2014-02-02 12:18:38 +0000 |
---|---|---|
committer | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2014-02-02 12:18:38 +0000 |
commit | 149b366429edcb44f6e320398df710a398fe18c0 (patch) | |
tree | 805ab8b084442b762ae5fc539d068fd067be6d78 /cpan/IO-Compress | |
parent | f3d3633e66a03f1771e39dca6621d3575662c7b0 (diff) | |
download | perl-149b366429edcb44f6e320398df710a398fe18c0.tar.gz |
Update IO-Compress to CPAN version 2.064
[DELTA]
2.064 1 February 2014
* RT #90216: IO-Compress/t/050interop-gzip.t: Use android-compatible
flags when calling gzip
Diffstat (limited to 'cpan/IO-Compress')
31 files changed, 150 insertions, 146 deletions
diff --git a/cpan/IO-Compress/lib/Compress/Zlib.pm b/cpan/IO-Compress/lib/Compress/Zlib.pm index e500a7fd4d..57e74a8c07 100644 --- a/cpan/IO-Compress/lib/Compress/Zlib.pm +++ b/cpan/IO-Compress/lib/Compress/Zlib.pm @@ -7,17 +7,17 @@ use Carp ; use IO::Handle ; use Scalar::Util qw(dualvar); -use IO::Compress::Base::Common 2.063 ; -use Compress::Raw::Zlib 2.063 ; -use IO::Compress::Gzip 2.063 ; -use IO::Uncompress::Gunzip 2.063 ; +use IO::Compress::Base::Common 2.064 ; +use Compress::Raw::Zlib 2.064 ; +use IO::Compress::Gzip 2.064 ; +use IO::Uncompress::Gunzip 2.064 ; use strict ; use warnings ; use bytes ; our ($VERSION, $XS_VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS); -$VERSION = '2.063'; +$VERSION = '2.064'; $XS_VERSION = $VERSION; $VERSION = eval $VERSION; @@ -461,7 +461,7 @@ sub inflate package Compress::Zlib ; -use IO::Compress::Gzip::Constants 2.063 ; +use IO::Compress::Gzip::Constants 2.064 ; sub memGzip($) { @@ -671,8 +671,8 @@ Compress::Zlib - Interface to zlib compression library $crc = adler32($buffer [,$crc]) ; $crc = crc32($buffer [,$crc]) ; - $crc = adler32_combine($crc1, $crc2, $len2)l - $crc = crc32_combine($adler1, $adler2, $len2) + $crc = crc32_combine($crc1, $crc2, $len2); + $adler = adler32_combine($adler1, $adler2, $len2); my $version = Compress::Raw::Zlib::zlib_version(); @@ -1450,10 +1450,11 @@ If the $crc parameters is C<undef>, the crc value will be reset. If you have built this module with zlib 1.2.3 or better, two more CRC-related functions are available. - $crc = adler32_combine($crc1, $crc2, $len2)l - $crc = crc32_combine($adler1, $adler2, $len2) + $crc = crc32_combine($crc1, $crc2, $len2); + $adler = adler32_combine($adler1, $adler2, $len2); These functions allow checksums to be merged. +Refer to the I<zlib> documentation for more details. =head1 Misc @@ -1499,7 +1500,7 @@ See the Changes file. =head1 COPYRIGHT AND LICENSE -Copyright (c) 1995-2013 Paul Marquess. All rights reserved. +Copyright (c) 1995-2014 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. diff --git a/cpan/IO-Compress/lib/IO/Compress/Adapter/Bzip2.pm b/cpan/IO-Compress/lib/IO/Compress/Adapter/Bzip2.pm index 74c35d8a4a..c77e06b29b 100644 --- a/cpan/IO-Compress/lib/IO/Compress/Adapter/Bzip2.pm +++ b/cpan/IO-Compress/lib/IO/Compress/Adapter/Bzip2.pm @@ -4,12 +4,12 @@ use strict; use warnings; use bytes; -use IO::Compress::Base::Common 2.063 qw(:Status); +use IO::Compress::Base::Common 2.064 qw(:Status); -use Compress::Raw::Bzip2 2.063 ; +use Compress::Raw::Bzip2 2.064 ; our ($VERSION); -$VERSION = '2.063'; +$VERSION = '2.064'; sub mkCompObject { diff --git a/cpan/IO-Compress/lib/IO/Compress/Adapter/Deflate.pm b/cpan/IO-Compress/lib/IO/Compress/Adapter/Deflate.pm index 7741d549db..c8fdf2a2c7 100644 --- a/cpan/IO-Compress/lib/IO/Compress/Adapter/Deflate.pm +++ b/cpan/IO-Compress/lib/IO/Compress/Adapter/Deflate.pm @@ -4,13 +4,13 @@ use strict; use warnings; use bytes; -use IO::Compress::Base::Common 2.063 qw(:Status); -use Compress::Raw::Zlib 2.063 qw( !crc32 !adler32 ) ; +use IO::Compress::Base::Common 2.064 qw(:Status); +use Compress::Raw::Zlib 2.064 qw( !crc32 !adler32 ) ; require Exporter; our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, @EXPORT, %DEFLATE_CONSTANTS); -$VERSION = '2.063'; +$VERSION = '2.064'; @ISA = qw(Exporter); @EXPORT_OK = @Compress::Raw::Zlib::DEFLATE_CONSTANTS; %EXPORT_TAGS = %Compress::Raw::Zlib::DEFLATE_CONSTANTS; diff --git a/cpan/IO-Compress/lib/IO/Compress/Adapter/Identity.pm b/cpan/IO-Compress/lib/IO/Compress/Adapter/Identity.pm index 347f5fca32..b612de0a22 100644 --- a/cpan/IO-Compress/lib/IO/Compress/Adapter/Identity.pm +++ b/cpan/IO-Compress/lib/IO/Compress/Adapter/Identity.pm @@ -4,10 +4,10 @@ use strict; use warnings; use bytes; -use IO::Compress::Base::Common 2.063 qw(:Status); +use IO::Compress::Base::Common 2.064 qw(:Status); our ($VERSION); -$VERSION = '2.063'; +$VERSION = '2.064'; sub mkCompObject { diff --git a/cpan/IO-Compress/lib/IO/Compress/Base.pm b/cpan/IO-Compress/lib/IO/Compress/Base.pm index 5413dbf4c6..6dc791776a 100644 --- a/cpan/IO-Compress/lib/IO/Compress/Base.pm +++ b/cpan/IO-Compress/lib/IO/Compress/Base.pm @@ -6,7 +6,7 @@ require 5.006 ; use strict ; use warnings; -use IO::Compress::Base::Common 2.063 ; +use IO::Compress::Base::Common 2.064 ; use IO::File (); ; use Scalar::Util (); @@ -20,7 +20,7 @@ use Symbol(); our (@ISA, $VERSION); @ISA = qw(Exporter IO::File); -$VERSION = '2.063'; +$VERSION = '2.064'; #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. @@ -1041,7 +1041,7 @@ See the Changes file. =head1 COPYRIGHT AND LICENSE -Copyright (c) 2005-2013 Paul Marquess. All rights reserved. +Copyright (c) 2005-2014 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. diff --git a/cpan/IO-Compress/lib/IO/Compress/Base/Common.pm b/cpan/IO-Compress/lib/IO/Compress/Base/Common.pm index 3ed69dac06..aa61c792c8 100644 --- a/cpan/IO-Compress/lib/IO/Compress/Base/Common.pm +++ b/cpan/IO-Compress/lib/IO/Compress/Base/Common.pm @@ -11,7 +11,7 @@ use File::GlobMapper; require Exporter; our ($VERSION, @ISA, @EXPORT, %EXPORT_TAGS, $HAS_ENCODE); @ISA = qw(Exporter); -$VERSION = '2.063'; +$VERSION = '2.064'; @EXPORT = qw( isaFilehandle isaFilename isaScalar whatIsInput whatIsOutput diff --git a/cpan/IO-Compress/lib/IO/Compress/Bzip2.pm b/cpan/IO-Compress/lib/IO/Compress/Bzip2.pm index 3ebbf31ce4..fc62b4f4f9 100644 --- a/cpan/IO-Compress/lib/IO/Compress/Bzip2.pm +++ b/cpan/IO-Compress/lib/IO/Compress/Bzip2.pm @@ -5,16 +5,16 @@ use warnings; use bytes; require Exporter ; -use IO::Compress::Base 2.063 ; +use IO::Compress::Base 2.064 ; -use IO::Compress::Base::Common 2.063 qw(); -use IO::Compress::Adapter::Bzip2 2.063 ; +use IO::Compress::Base::Common 2.064 qw(); +use IO::Compress::Adapter::Bzip2 2.064 ; our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $Bzip2Error); -$VERSION = '2.063'; +$VERSION = '2.064'; $Bzip2Error = ''; @ISA = qw(Exporter IO::Compress::Base); @@ -51,7 +51,7 @@ sub getExtraParams { my $self = shift ; - use IO::Compress::Base::Common 2.063 qw(:Parse); + use IO::Compress::Base::Common 2.064 qw(:Parse); return ( 'blocksize100k' => [IO::Compress::Base::Common::Parse_unsigned, 1], @@ -798,7 +798,7 @@ See the Changes file. =head1 COPYRIGHT AND LICENSE -Copyright (c) 2005-2013 Paul Marquess. All rights reserved. +Copyright (c) 2005-2014 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. diff --git a/cpan/IO-Compress/lib/IO/Compress/Deflate.pm b/cpan/IO-Compress/lib/IO/Compress/Deflate.pm index 912a8f75b3..d8848d7f69 100644 --- a/cpan/IO-Compress/lib/IO/Compress/Deflate.pm +++ b/cpan/IO-Compress/lib/IO/Compress/Deflate.pm @@ -8,16 +8,16 @@ use bytes; require Exporter ; -use IO::Compress::RawDeflate 2.063 (); -use IO::Compress::Adapter::Deflate 2.063 ; +use IO::Compress::RawDeflate 2.064 (); +use IO::Compress::Adapter::Deflate 2.064 ; -use IO::Compress::Zlib::Constants 2.063 ; -use IO::Compress::Base::Common 2.063 qw(); +use IO::Compress::Zlib::Constants 2.064 ; +use IO::Compress::Base::Common 2.064 qw(); our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, %DEFLATE_CONSTANTS, $DeflateError); -$VERSION = '2.063'; +$VERSION = '2.064'; $DeflateError = ''; @ISA = qw(Exporter IO::Compress::RawDeflate); @@ -932,7 +932,7 @@ See the Changes file. =head1 COPYRIGHT AND LICENSE -Copyright (c) 2005-2013 Paul Marquess. All rights reserved. +Copyright (c) 2005-2014 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. diff --git a/cpan/IO-Compress/lib/IO/Compress/FAQ.pod b/cpan/IO-Compress/lib/IO/Compress/FAQ.pod index f983a69a84..671824dc15 100644 --- a/cpan/IO-Compress/lib/IO/Compress/FAQ.pod +++ b/cpan/IO-Compress/lib/IO/Compress/FAQ.pod @@ -665,7 +665,7 @@ See the Changes file. =head1 COPYRIGHT AND LICENSE -Copyright (c) 2005-2013 Paul Marquess. All rights reserved. +Copyright (c) 2005-2014 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. diff --git a/cpan/IO-Compress/lib/IO/Compress/Gzip.pm b/cpan/IO-Compress/lib/IO/Compress/Gzip.pm index 5d89993e35..febeea6ca9 100644 --- a/cpan/IO-Compress/lib/IO/Compress/Gzip.pm +++ b/cpan/IO-Compress/lib/IO/Compress/Gzip.pm @@ -8,12 +8,12 @@ use bytes; require Exporter ; -use IO::Compress::RawDeflate 2.063 () ; -use IO::Compress::Adapter::Deflate 2.063 ; +use IO::Compress::RawDeflate 2.064 () ; +use IO::Compress::Adapter::Deflate 2.064 ; -use IO::Compress::Base::Common 2.063 qw(:Status ); -use IO::Compress::Gzip::Constants 2.063 ; -use IO::Compress::Zlib::Extra 2.063 ; +use IO::Compress::Base::Common 2.064 qw(:Status ); +use IO::Compress::Gzip::Constants 2.064 ; +use IO::Compress::Zlib::Extra 2.064 ; BEGIN { @@ -25,7 +25,7 @@ BEGIN our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, %DEFLATE_CONSTANTS, $GzipError); -$VERSION = '2.063'; +$VERSION = '2.064'; $GzipError = '' ; @ISA = qw(Exporter IO::Compress::RawDeflate); @@ -1244,7 +1244,7 @@ See the Changes file. =head1 COPYRIGHT AND LICENSE -Copyright (c) 2005-2013 Paul Marquess. All rights reserved. +Copyright (c) 2005-2014 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. diff --git a/cpan/IO-Compress/lib/IO/Compress/Gzip/Constants.pm b/cpan/IO-Compress/lib/IO/Compress/Gzip/Constants.pm index 38554fcf86..f6c15c72c9 100644 --- a/cpan/IO-Compress/lib/IO/Compress/Gzip/Constants.pm +++ b/cpan/IO-Compress/lib/IO/Compress/Gzip/Constants.pm @@ -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.063'; +$VERSION = '2.064'; @ISA = qw(Exporter); diff --git a/cpan/IO-Compress/lib/IO/Compress/RawDeflate.pm b/cpan/IO-Compress/lib/IO/Compress/RawDeflate.pm index 562112f21d..38f7f7dab0 100644 --- a/cpan/IO-Compress/lib/IO/Compress/RawDeflate.pm +++ b/cpan/IO-Compress/lib/IO/Compress/RawDeflate.pm @@ -6,15 +6,15 @@ use strict ; use warnings; use bytes; -use IO::Compress::Base 2.063 ; -use IO::Compress::Base::Common 2.063 qw(:Status ); -use IO::Compress::Adapter::Deflate 2.063 ; +use IO::Compress::Base 2.064 ; +use IO::Compress::Base::Common 2.064 qw(:Status ); +use IO::Compress::Adapter::Deflate 2.064 ; require Exporter ; our ($VERSION, @ISA, @EXPORT_OK, %DEFLATE_CONSTANTS, %EXPORT_TAGS, $RawDeflateError); -$VERSION = '2.063'; +$VERSION = '2.064'; $RawDeflateError = ''; @ISA = qw(Exporter IO::Compress::Base); @@ -116,8 +116,8 @@ sub getExtraParams return getZlibParams(); } -use IO::Compress::Base::Common 2.063 qw(:Parse); -use Compress::Raw::Zlib 2.063 qw(Z_DEFLATED Z_DEFAULT_COMPRESSION Z_DEFAULT_STRATEGY); +use IO::Compress::Base::Common 2.064 qw(:Parse); +use Compress::Raw::Zlib 2.064 qw(Z_DEFLATED Z_DEFAULT_COMPRESSION Z_DEFAULT_STRATEGY); our %PARAMS = ( #'method' => [IO::Compress::Base::Common::Parse_unsigned, Z_DEFLATED], 'level' => [IO::Compress::Base::Common::Parse_signed, Z_DEFAULT_COMPRESSION], @@ -988,7 +988,7 @@ See the Changes file. =head1 COPYRIGHT AND LICENSE -Copyright (c) 2005-2013 Paul Marquess. All rights reserved. +Copyright (c) 2005-2014 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. diff --git a/cpan/IO-Compress/lib/IO/Compress/Zip.pm b/cpan/IO-Compress/lib/IO/Compress/Zip.pm index 5c8316ff70..a8645b346a 100644 --- a/cpan/IO-Compress/lib/IO/Compress/Zip.pm +++ b/cpan/IO-Compress/lib/IO/Compress/Zip.pm @@ -4,30 +4,30 @@ use strict ; use warnings; use bytes; -use IO::Compress::Base::Common 2.063 qw(:Status ); -use IO::Compress::RawDeflate 2.063 (); -use IO::Compress::Adapter::Deflate 2.063 ; -use IO::Compress::Adapter::Identity 2.063 ; -use IO::Compress::Zlib::Extra 2.063 ; -use IO::Compress::Zip::Constants 2.063 ; +use IO::Compress::Base::Common 2.064 qw(:Status ); +use IO::Compress::RawDeflate 2.064 (); +use IO::Compress::Adapter::Deflate 2.064 ; +use IO::Compress::Adapter::Identity 2.064 ; +use IO::Compress::Zlib::Extra 2.064 ; +use IO::Compress::Zip::Constants 2.064 ; use File::Spec(); use Config; -use Compress::Raw::Zlib 2.063 (); +use Compress::Raw::Zlib 2.064 (); BEGIN { eval { require IO::Compress::Adapter::Bzip2 ; - import IO::Compress::Adapter::Bzip2 2.063 ; + import IO::Compress::Adapter::Bzip2 2.064 ; require IO::Compress::Bzip2 ; - import IO::Compress::Bzip2 2.063 ; + import IO::Compress::Bzip2 2.064 ; } ; eval { require IO::Compress::Adapter::Lzma ; - import IO::Compress::Adapter::Lzma 2.063 ; + import IO::Compress::Adapter::Lzma 2.064 ; require IO::Compress::Lzma ; - import IO::Compress::Lzma 2.063 ; + import IO::Compress::Lzma 2.064 ; } ; } @@ -36,7 +36,7 @@ require Exporter ; our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, %DEFLATE_CONSTANTS, $ZipError); -$VERSION = '2.063'; +$VERSION = '2.064'; $ZipError = ''; @ISA = qw(Exporter IO::Compress::RawDeflate); @@ -1953,7 +1953,7 @@ See the Changes file. =head1 COPYRIGHT AND LICENSE -Copyright (c) 2005-2013 Paul Marquess. All rights reserved. +Copyright (c) 2005-2014 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. diff --git a/cpan/IO-Compress/lib/IO/Compress/Zip/Constants.pm b/cpan/IO-Compress/lib/IO/Compress/Zip/Constants.pm index 08fc5c242f..02609b940a 100644 --- a/cpan/IO-Compress/lib/IO/Compress/Zip/Constants.pm +++ b/cpan/IO-Compress/lib/IO/Compress/Zip/Constants.pm @@ -7,7 +7,7 @@ require Exporter; our ($VERSION, @ISA, @EXPORT, %ZIP_CM_MIN_VERSIONS); -$VERSION = '2.063'; +$VERSION = '2.064'; @ISA = qw(Exporter); diff --git a/cpan/IO-Compress/lib/IO/Compress/Zlib/Constants.pm b/cpan/IO-Compress/lib/IO/Compress/Zlib/Constants.pm index 668e417336..7dd1622dfb 100644 --- a/cpan/IO-Compress/lib/IO/Compress/Zlib/Constants.pm +++ b/cpan/IO-Compress/lib/IO/Compress/Zlib/Constants.pm @@ -9,7 +9,7 @@ require Exporter; our ($VERSION, @ISA, @EXPORT); -$VERSION = '2.063'; +$VERSION = '2.064'; @ISA = qw(Exporter); diff --git a/cpan/IO-Compress/lib/IO/Compress/Zlib/Extra.pm b/cpan/IO-Compress/lib/IO/Compress/Zlib/Extra.pm index 9518cb7c0f..ca92b5f9bd 100644 --- a/cpan/IO-Compress/lib/IO/Compress/Zlib/Extra.pm +++ b/cpan/IO-Compress/lib/IO/Compress/Zlib/Extra.pm @@ -8,9 +8,9 @@ use bytes; our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS); -$VERSION = '2.063'; +$VERSION = '2.064'; -use IO::Compress::Gzip::Constants 2.063 ; +use IO::Compress::Gzip::Constants 2.064 ; sub ExtraFieldError { diff --git a/cpan/IO-Compress/lib/IO/Uncompress/Adapter/Bunzip2.pm b/cpan/IO-Compress/lib/IO/Uncompress/Adapter/Bunzip2.pm index f753c1bb4a..53b8ef1d58 100644 --- a/cpan/IO-Compress/lib/IO/Uncompress/Adapter/Bunzip2.pm +++ b/cpan/IO-Compress/lib/IO/Uncompress/Adapter/Bunzip2.pm @@ -4,12 +4,12 @@ use strict; use warnings; use bytes; -use IO::Compress::Base::Common 2.063 qw(:Status); +use IO::Compress::Base::Common 2.064 qw(:Status); -use Compress::Raw::Bzip2 2.063 ; +use Compress::Raw::Bzip2 2.064 ; our ($VERSION, @ISA); -$VERSION = '2.063'; +$VERSION = '2.064'; sub mkUncompObject { diff --git a/cpan/IO-Compress/lib/IO/Uncompress/Adapter/Identity.pm b/cpan/IO-Compress/lib/IO/Uncompress/Adapter/Identity.pm index b83519bb3a..812f3f87d1 100644 --- a/cpan/IO-Compress/lib/IO/Uncompress/Adapter/Identity.pm +++ b/cpan/IO-Compress/lib/IO/Uncompress/Adapter/Identity.pm @@ -4,14 +4,14 @@ use warnings; use strict; use bytes; -use IO::Compress::Base::Common 2.063 qw(:Status); +use IO::Compress::Base::Common 2.064 qw(:Status); use IO::Compress::Zip::Constants ; our ($VERSION); -$VERSION = '2.063'; +$VERSION = '2.064'; -use Compress::Raw::Zlib 2.063 (); +use Compress::Raw::Zlib 2.064 (); sub mkUncompObject { diff --git a/cpan/IO-Compress/lib/IO/Uncompress/Adapter/Inflate.pm b/cpan/IO-Compress/lib/IO/Uncompress/Adapter/Inflate.pm index e9531fc227..68beea145c 100644 --- a/cpan/IO-Compress/lib/IO/Uncompress/Adapter/Inflate.pm +++ b/cpan/IO-Compress/lib/IO/Uncompress/Adapter/Inflate.pm @@ -4,11 +4,11 @@ use strict; use warnings; #use bytes; -use IO::Compress::Base::Common 2.063 qw(:Status); -use Compress::Raw::Zlib 2.063 qw(Z_OK Z_BUF_ERROR Z_STREAM_END Z_FINISH MAX_WBITS); +use IO::Compress::Base::Common 2.064 qw(:Status); +use Compress::Raw::Zlib 2.064 qw(Z_OK Z_BUF_ERROR Z_STREAM_END Z_FINISH MAX_WBITS); our ($VERSION); -$VERSION = '2.063'; +$VERSION = '2.064'; diff --git a/cpan/IO-Compress/lib/IO/Uncompress/AnyInflate.pm b/cpan/IO-Compress/lib/IO/Uncompress/AnyInflate.pm index 8a2dc5fd0a..cdf229a252 100644 --- a/cpan/IO-Compress/lib/IO/Uncompress/AnyInflate.pm +++ b/cpan/IO-Compress/lib/IO/Uncompress/AnyInflate.pm @@ -6,22 +6,22 @@ use strict; use warnings; use bytes; -use IO::Compress::Base::Common 2.063 (); +use IO::Compress::Base::Common 2.064 (); -use IO::Uncompress::Adapter::Inflate 2.063 (); +use IO::Uncompress::Adapter::Inflate 2.064 (); -use IO::Uncompress::Base 2.063 ; -use IO::Uncompress::Gunzip 2.063 ; -use IO::Uncompress::Inflate 2.063 ; -use IO::Uncompress::RawInflate 2.063 ; -use IO::Uncompress::Unzip 2.063 ; +use IO::Uncompress::Base 2.064 ; +use IO::Uncompress::Gunzip 2.064 ; +use IO::Uncompress::Inflate 2.064 ; +use IO::Uncompress::RawInflate 2.064 ; +use IO::Uncompress::Unzip 2.064 ; require Exporter ; our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $AnyInflateError); -$VERSION = '2.063'; +$VERSION = '2.064'; $AnyInflateError = ''; @ISA = qw( Exporter IO::Uncompress::Base ); @@ -48,7 +48,7 @@ sub anyinflate sub getExtraParams { - use IO::Compress::Base::Common 2.063 qw(:Parse); + use IO::Compress::Base::Common 2.064 qw(:Parse); return ( 'rawinflate' => [Parse_boolean, 0] ) ; } @@ -995,7 +995,7 @@ See the Changes file. =head1 COPYRIGHT AND LICENSE -Copyright (c) 2005-2013 Paul Marquess. All rights reserved. +Copyright (c) 2005-2014 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. diff --git a/cpan/IO-Compress/lib/IO/Uncompress/AnyUncompress.pm b/cpan/IO-Compress/lib/IO/Uncompress/AnyUncompress.pm index 8ce19057ea..e2b104dff4 100644 --- a/cpan/IO-Compress/lib/IO/Uncompress/AnyUncompress.pm +++ b/cpan/IO-Compress/lib/IO/Uncompress/AnyUncompress.pm @@ -4,16 +4,16 @@ use strict; use warnings; use bytes; -use IO::Compress::Base::Common 2.063 (); +use IO::Compress::Base::Common 2.064 (); -use IO::Uncompress::Base 2.063 ; +use IO::Uncompress::Base 2.064 ; require Exporter ; our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $AnyUncompressError); -$VERSION = '2.063'; +$VERSION = '2.064'; $AnyUncompressError = ''; @ISA = qw( Exporter IO::Uncompress::Base ); @@ -27,22 +27,22 @@ Exporter::export_ok_tags('all'); BEGIN { - eval ' use IO::Uncompress::Adapter::Inflate 2.063 ;'; - eval ' use IO::Uncompress::Adapter::Bunzip2 2.063 ;'; - eval ' use IO::Uncompress::Adapter::LZO 2.063 ;'; - eval ' use IO::Uncompress::Adapter::Lzf 2.063 ;'; - eval ' use IO::Uncompress::Adapter::UnLzma 2.063 ;'; - eval ' use IO::Uncompress::Adapter::UnXz 2.063 ;'; - - eval ' use IO::Uncompress::Bunzip2 2.063 ;'; - eval ' use IO::Uncompress::UnLzop 2.063 ;'; - eval ' use IO::Uncompress::Gunzip 2.063 ;'; - eval ' use IO::Uncompress::Inflate 2.063 ;'; - eval ' use IO::Uncompress::RawInflate 2.063 ;'; - eval ' use IO::Uncompress::Unzip 2.063 ;'; - eval ' use IO::Uncompress::UnLzf 2.063 ;'; - eval ' use IO::Uncompress::UnLzma 2.063 ;'; - eval ' use IO::Uncompress::UnXz 2.063 ;'; + eval ' use IO::Uncompress::Adapter::Inflate 2.064 ;'; + eval ' use IO::Uncompress::Adapter::Bunzip2 2.064 ;'; + eval ' use IO::Uncompress::Adapter::LZO 2.064 ;'; + eval ' use IO::Uncompress::Adapter::Lzf 2.064 ;'; + eval ' use IO::Uncompress::Adapter::UnLzma 2.064 ;'; + eval ' use IO::Uncompress::Adapter::UnXz 2.064 ;'; + + eval ' use IO::Uncompress::Bunzip2 2.064 ;'; + eval ' use IO::Uncompress::UnLzop 2.064 ;'; + eval ' use IO::Uncompress::Gunzip 2.064 ;'; + eval ' use IO::Uncompress::Inflate 2.064 ;'; + eval ' use IO::Uncompress::RawInflate 2.064 ;'; + eval ' use IO::Uncompress::Unzip 2.064 ;'; + eval ' use IO::Uncompress::UnLzf 2.064 ;'; + eval ' use IO::Uncompress::UnLzma 2.064 ;'; + eval ' use IO::Uncompress::UnXz 2.064 ;'; } sub new @@ -1025,7 +1025,7 @@ See the Changes file. =head1 COPYRIGHT AND LICENSE -Copyright (c) 2005-2013 Paul Marquess. All rights reserved. +Copyright (c) 2005-2014 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. diff --git a/cpan/IO-Compress/lib/IO/Uncompress/Base.pm b/cpan/IO-Compress/lib/IO/Uncompress/Base.pm index 867f2fa9ce..4d1b780285 100644 --- a/cpan/IO-Compress/lib/IO/Uncompress/Base.pm +++ b/cpan/IO-Compress/lib/IO/Uncompress/Base.pm @@ -9,12 +9,12 @@ our (@ISA, $VERSION, @EXPORT_OK, %EXPORT_TAGS); @ISA = qw(Exporter IO::File); -$VERSION = '2.063'; +$VERSION = '2.064'; use constant G_EOF => 0 ; use constant G_ERR => -1 ; -use IO::Compress::Base::Common 2.063 ; +use IO::Compress::Base::Common 2.064 ; use IO::File ; use Symbol; @@ -1548,7 +1548,7 @@ See the Changes file. =head1 COPYRIGHT AND LICENSE -Copyright (c) 2005-2013 Paul Marquess. All rights reserved. +Copyright (c) 2005-2014 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. diff --git a/cpan/IO-Compress/lib/IO/Uncompress/Bunzip2.pm b/cpan/IO-Compress/lib/IO/Uncompress/Bunzip2.pm index 61d0e6c6b8..aad835f32f 100644 --- a/cpan/IO-Compress/lib/IO/Uncompress/Bunzip2.pm +++ b/cpan/IO-Compress/lib/IO/Uncompress/Bunzip2.pm @@ -4,15 +4,15 @@ use strict ; use warnings; use bytes; -use IO::Compress::Base::Common 2.063 qw(:Status ); +use IO::Compress::Base::Common 2.064 qw(:Status ); -use IO::Uncompress::Base 2.063 ; -use IO::Uncompress::Adapter::Bunzip2 2.063 ; +use IO::Uncompress::Base 2.064 ; +use IO::Uncompress::Adapter::Bunzip2 2.064 ; require Exporter ; our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $Bunzip2Error); -$VERSION = '2.063'; +$VERSION = '2.064'; $Bunzip2Error = ''; @ISA = qw( Exporter IO::Uncompress::Base ); @@ -903,7 +903,7 @@ See the Changes file. =head1 COPYRIGHT AND LICENSE -Copyright (c) 2005-2013 Paul Marquess. All rights reserved. +Copyright (c) 2005-2014 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. diff --git a/cpan/IO-Compress/lib/IO/Uncompress/Gunzip.pm b/cpan/IO-Compress/lib/IO/Uncompress/Gunzip.pm index 7a1bd8b079..b8012d0ee0 100644 --- a/cpan/IO-Compress/lib/IO/Uncompress/Gunzip.pm +++ b/cpan/IO-Compress/lib/IO/Uncompress/Gunzip.pm @@ -9,12 +9,12 @@ use strict ; use warnings; use bytes; -use IO::Uncompress::RawInflate 2.063 ; +use IO::Uncompress::RawInflate 2.064 ; -use Compress::Raw::Zlib 2.063 () ; -use IO::Compress::Base::Common 2.063 qw(:Status ); -use IO::Compress::Gzip::Constants 2.063 ; -use IO::Compress::Zlib::Extra 2.063 ; +use Compress::Raw::Zlib 2.064 () ; +use IO::Compress::Base::Common 2.064 qw(:Status ); +use IO::Compress::Gzip::Constants 2.064 ; +use IO::Compress::Zlib::Extra 2.064 ; require Exporter ; @@ -28,7 +28,7 @@ Exporter::export_ok_tags('all'); $GunzipError = ''; -$VERSION = '2.063'; +$VERSION = '2.064'; sub new { @@ -1118,7 +1118,7 @@ See the Changes file. =head1 COPYRIGHT AND LICENSE -Copyright (c) 2005-2013 Paul Marquess. All rights reserved. +Copyright (c) 2005-2014 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. diff --git a/cpan/IO-Compress/lib/IO/Uncompress/Inflate.pm b/cpan/IO-Compress/lib/IO/Uncompress/Inflate.pm index 63b0ece630..a5df2eacb9 100644 --- a/cpan/IO-Compress/lib/IO/Uncompress/Inflate.pm +++ b/cpan/IO-Compress/lib/IO/Uncompress/Inflate.pm @@ -5,15 +5,15 @@ use strict ; use warnings; use bytes; -use IO::Compress::Base::Common 2.063 qw(:Status ); -use IO::Compress::Zlib::Constants 2.063 ; +use IO::Compress::Base::Common 2.064 qw(:Status ); +use IO::Compress::Zlib::Constants 2.064 ; -use IO::Uncompress::RawInflate 2.063 ; +use IO::Uncompress::RawInflate 2.064 ; require Exporter ; our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $InflateError); -$VERSION = '2.063'; +$VERSION = '2.064'; $InflateError = ''; @ISA = qw( Exporter IO::Uncompress::RawInflate ); @@ -990,7 +990,7 @@ See the Changes file. =head1 COPYRIGHT AND LICENSE -Copyright (c) 2005-2013 Paul Marquess. All rights reserved. +Copyright (c) 2005-2014 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. diff --git a/cpan/IO-Compress/lib/IO/Uncompress/RawInflate.pm b/cpan/IO-Compress/lib/IO/Uncompress/RawInflate.pm index 92edd5f75e..b0259f3043 100644 --- a/cpan/IO-Compress/lib/IO/Uncompress/RawInflate.pm +++ b/cpan/IO-Compress/lib/IO/Uncompress/RawInflate.pm @@ -5,16 +5,16 @@ use strict ; use warnings; #use bytes; -use Compress::Raw::Zlib 2.063 ; -use IO::Compress::Base::Common 2.063 qw(:Status ); +use Compress::Raw::Zlib 2.064 ; +use IO::Compress::Base::Common 2.064 qw(:Status ); -use IO::Uncompress::Base 2.063 ; -use IO::Uncompress::Adapter::Inflate 2.063 ; +use IO::Uncompress::Base 2.064 ; +use IO::Uncompress::Adapter::Inflate 2.064 ; require Exporter ; our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, %DEFLATE_CONSTANTS, $RawInflateError); -$VERSION = '2.063'; +$VERSION = '2.064'; $RawInflateError = ''; @ISA = qw( Exporter IO::Uncompress::Base ); @@ -1118,7 +1118,7 @@ See the Changes file. =head1 COPYRIGHT AND LICENSE -Copyright (c) 2005-2013 Paul Marquess. All rights reserved. +Copyright (c) 2005-2014 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. diff --git a/cpan/IO-Compress/lib/IO/Uncompress/Unzip.pm b/cpan/IO-Compress/lib/IO/Uncompress/Unzip.pm index 88dcd32d9d..3b36f839a0 100644 --- a/cpan/IO-Compress/lib/IO/Uncompress/Unzip.pm +++ b/cpan/IO-Compress/lib/IO/Uncompress/Unzip.pm @@ -9,14 +9,14 @@ use warnings; #use bytes; use IO::File; -use IO::Uncompress::RawInflate 2.063 ; -use IO::Compress::Base::Common 2.063 qw(:Status ); -use IO::Uncompress::Adapter::Inflate 2.063 ; -use IO::Uncompress::Adapter::Identity 2.063 ; -use IO::Compress::Zlib::Extra 2.063 ; -use IO::Compress::Zip::Constants 2.063 ; +use IO::Uncompress::RawInflate 2.064 ; +use IO::Compress::Base::Common 2.064 qw(:Status ); +use IO::Uncompress::Adapter::Inflate 2.064 ; +use IO::Uncompress::Adapter::Identity 2.064 ; +use IO::Compress::Zlib::Extra 2.064 ; +use IO::Compress::Zip::Constants 2.064 ; -use Compress::Raw::Zlib 2.063 () ; +use Compress::Raw::Zlib 2.064 () ; BEGIN { @@ -31,7 +31,7 @@ require Exporter ; our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $UnzipError, %headerLookup); -$VERSION = '2.063'; +$VERSION = '2.064'; $UnzipError = ''; @ISA = qw(Exporter IO::Uncompress::RawInflate); @@ -1861,7 +1861,7 @@ See the Changes file. =head1 COPYRIGHT AND LICENSE -Copyright (c) 2005-2013 Paul Marquess. All rights reserved. +Copyright (c) 2005-2014 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. diff --git a/cpan/IO-Compress/t/000prereq.t b/cpan/IO-Compress/t/000prereq.t index d1588fb129..4aca4a07cf 100644 --- a/cpan/IO-Compress/t/000prereq.t +++ b/cpan/IO-Compress/t/000prereq.t @@ -25,7 +25,7 @@ BEGIN if eval { require Test::NoWarnings ; import Test::NoWarnings; 1 }; - my $VERSION = '2.063'; + my $VERSION = '2.064'; my @NAMES = qw( Compress::Raw::Bzip2 Compress::Raw::Zlib diff --git a/cpan/IO-Compress/t/006zip.t b/cpan/IO-Compress/t/006zip.t index ad05cef376..33afa8e723 100644 --- a/cpan/IO-Compress/t/006zip.t +++ b/cpan/IO-Compress/t/006zip.t @@ -65,6 +65,7 @@ sub getContent } + { title "Create a simple zip - All Deflate"; @@ -332,7 +333,7 @@ for my $method (ZIP_CM_DEFLATE, ZIP_CM_STORE, ZIP_CM_BZIP2) } { - title "Memember & Comment 0"; + title "Member & Comment 0"; my $lex = new LexFile my $file1; @@ -358,3 +359,4 @@ for my $method (ZIP_CM_DEFLATE, ZIP_CM_STORE, ZIP_CM_BZIP2) is $u->getHeaderInfo()->{Name}, "0", "Name is '0'"; } + diff --git a/cpan/IO-Compress/t/050interop-gzip.t b/cpan/IO-Compress/t/050interop-gzip.t index 27c1d7db8c..f3cb1a3911 100644 --- a/cpan/IO-Compress/t/050interop-gzip.t +++ b/cpan/IO-Compress/t/050interop-gzip.t @@ -48,7 +48,7 @@ sub readWithGzip my $lex = new LexFile my $outfile; - my $comp = "$GZIP -dc" ; + my $comp = "$GZIP -d -c" ; if ( system("$comp $file >$outfile") == 0 ) { diff --git a/cpan/IO-Compress/t/compress/oneshot.pl b/cpan/IO-Compress/t/compress/oneshot.pl index 7e247ca981..1e56b56725 100644 --- a/cpan/IO-Compress/t/compress/oneshot.pl +++ b/cpan/IO-Compress/t/compress/oneshot.pl @@ -16,7 +16,7 @@ BEGIN { $extra = 1 if eval { require Test::NoWarnings ; import Test::NoWarnings; 1 }; - plan tests => 989 + $extra ; + plan tests => 995 + $extra ; use_ok('IO::Uncompress::AnyUncompress', qw(anyuncompress $AnyUncompressError)) ; @@ -304,6 +304,7 @@ sub run is $keep, $buffer, " Input buffer not changed" ; my $got = anyUncompress(\$output, $already); $got = undef if ! defined $buffer && $got eq '' ; + ok ! $$Error, " no error [$$Error]" ; is $got, $buffer, " Uncompressed matches original"; } |