diff options
-rwxr-xr-x | Porting/Maintainers.pl | 2 | ||||
-rw-r--r-- | cpan/Compress-Raw-Zlib/Changes | 13 | ||||
-rw-r--r-- | cpan/Compress-Raw-Zlib/README | 8 | ||||
-rwxr-xr-x[-rw-r--r--] | cpan/Compress-Raw-Zlib/config.in | 0 | ||||
-rwxr-xr-x[-rw-r--r--] | cpan/Compress-Raw-Zlib/examples/filtdef | 0 | ||||
-rwxr-xr-x[-rw-r--r--] | cpan/Compress-Raw-Zlib/examples/filtinf | 0 | ||||
-rw-r--r-- | cpan/Compress-Raw-Zlib/lib/Compress/Raw/Zlib.pm | 13 | ||||
-rw-r--r-- | cpan/Compress-Raw-Zlib/pod/FAQ.pod | 4 | ||||
-rw-r--r-- | pod/perldelta.pod | 4 |
9 files changed, 33 insertions, 11 deletions
diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 9d8ec2417d..915f292476 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -336,7 +336,7 @@ use File::Glob qw(:case); 'Compress::Raw::Zlib' => { 'MAINTAINER' => 'pmqs', - 'DISTRIBUTION' => 'PMQS/Compress-Raw-Zlib-2.030.tar.gz', + 'DISTRIBUTION' => 'PMQS/Compress-Raw-Zlib-2.033.tar.gz', 'FILES' => q[cpan/Compress-Raw-Zlib], 'EXCLUDED' => [ qr{^t/Test/}, diff --git a/cpan/Compress-Raw-Zlib/Changes b/cpan/Compress-Raw-Zlib/Changes index 74e1da6063..ebc91711d1 100644 --- a/cpan/Compress-Raw-Zlib/Changes +++ b/cpan/Compress-Raw-Zlib/Changes @@ -1,7 +1,16 @@ CHANGES ------- - 2.030 22 July 2010 + 2.033 11 Jan 2011 + * Fixed typos & spelling errors. + [perl# 81782] + + 2.032 4 Jan 2011 + + * Document inflateReset + [RT #61082] + + 2.030 22 July 2010 * Ran the zlib2ansi script against the files in zlib-src. Thanks to Nicholas Clark for the reminder. @@ -35,7 +44,7 @@ CHANGES 2.023 9 November 2009 * fixed instance where $[ should have been $] in t/02zlib.t - Thanks to Robin Barker and zefram [RT #50765] for independantly + Thanks to Robin Barker and zefram [RT #50765] for independently spotting the issue. 2.021 30 August 2009 diff --git a/cpan/Compress-Raw-Zlib/README b/cpan/Compress-Raw-Zlib/README index 5c1f5ae245..122d32d996 100644 --- a/cpan/Compress-Raw-Zlib/README +++ b/cpan/Compress-Raw-Zlib/README @@ -1,11 +1,11 @@ Compress-Raw-Zlib - Version 2.030 + Version 2.033 - 22nd July 2010 + 11th January 2011 - Copyright (c) 2005-2010 Paul Marquess. All rights reserved. + Copyright (c) 2005-2011 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. @@ -355,7 +355,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.030" ; + $VERSION = "2.033" ; c. The version of zlib you have used. If you have successfully installed Compress-Raw-Zlib, this one-liner diff --git a/cpan/Compress-Raw-Zlib/config.in b/cpan/Compress-Raw-Zlib/config.in index c56cc03099..c56cc03099 100644..100755 --- a/cpan/Compress-Raw-Zlib/config.in +++ b/cpan/Compress-Raw-Zlib/config.in diff --git a/cpan/Compress-Raw-Zlib/examples/filtdef b/cpan/Compress-Raw-Zlib/examples/filtdef index 3c6565042f..3c6565042f 100644..100755 --- a/cpan/Compress-Raw-Zlib/examples/filtdef +++ b/cpan/Compress-Raw-Zlib/examples/filtdef diff --git a/cpan/Compress-Raw-Zlib/examples/filtinf b/cpan/Compress-Raw-Zlib/examples/filtinf index 1a99e885b0..1a99e885b0 100644..100755 --- a/cpan/Compress-Raw-Zlib/examples/filtinf +++ b/cpan/Compress-Raw-Zlib/examples/filtinf diff --git a/cpan/Compress-Raw-Zlib/lib/Compress/Raw/Zlib.pm b/cpan/Compress-Raw-Zlib/lib/Compress/Raw/Zlib.pm index e6e15c9700..8b17dcc9f3 100644 --- a/cpan/Compress-Raw-Zlib/lib/Compress/Raw/Zlib.pm +++ b/cpan/Compress-Raw-Zlib/lib/Compress/Raw/Zlib.pm @@ -13,7 +13,7 @@ use warnings ; use bytes ; our ($VERSION, $XS_VERSION, @ISA, @EXPORT, $AUTOLOAD); -$VERSION = '2.030'; +$VERSION = '2.033'; $XS_VERSION = $VERSION; $VERSION = eval $VERSION; @@ -564,6 +564,7 @@ Compress::Raw::Zlib - Low-Level Interface to zlib compression library ($i, $status) = new Compress::Raw::Zlib::Inflate( [OPT] ) ; $status = $i->inflate($input, $output [, $eof]) ; $status = $i->inflateSync($input) ; + $i->inflateReset() ; $i->dict_adler() ; $d->crc32() ; $d->adler32() ; @@ -1101,6 +1102,14 @@ Note I<full flush points> are not present by default in compressed data streams. They must have been added explicitly when the data stream was created by calling C<Compress::Deflate::flush> with C<Z_FULL_FLUSH>. +=head2 B<$status = $i-E<gt>inflateReset() > + +This method will reset the inflation object C<$i>. It can be used when you +are uncompressing multiple data streams and want to use the same object to +uncompress each of them. + +Returns C<Z_OK> if successful. + =head2 B<$i-E<gt>dict_adler()> Returns the adler32 value for the dictionary. @@ -1413,7 +1422,7 @@ See the Changes file. =head1 COPYRIGHT AND LICENSE -Copyright (c) 2005-2010 Paul Marquess. All rights reserved. +Copyright (c) 2005-2011 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/Compress-Raw-Zlib/pod/FAQ.pod b/cpan/Compress-Raw-Zlib/pod/FAQ.pod index 716ddb746b..a3e3756a5c 100644 --- a/cpan/Compress-Raw-Zlib/pod/FAQ.pod +++ b/cpan/Compress-Raw-Zlib/pod/FAQ.pod @@ -39,7 +39,7 @@ available See previous FAQ item. -If the C<Archive::Tar> module is instaled and either the C<uncompress> or +If the C<Archive::Tar> module is installed and either the C<uncompress> or C<gunzip> programs are available, you can use one of these workarounds to read C<.tar.Z> files. @@ -120,7 +120,7 @@ See the Changes file. =head1 COPYRIGHT AND LICENSE -Copyright (c) 2005-2010 Paul Marquess. All rights reserved. +Copyright (c) 2005-2011 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/pod/perldelta.pod b/pod/perldelta.pod index 842644d418..001c932cf3 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -147,6 +147,10 @@ C<Compress::Raw::Bzip2> has been upgraded from version 2.031 to 2.033 =item * +C<Compress::Raw::Zlib> has been upgraded from version 2.030 to 2.033 + +=item * + C<CPANPLUS> has been upgraded from version 0.9010 to 0.9011 =item * |