diff options
author | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2010-06-30 10:03:06 +0100 |
---|---|---|
committer | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2010-06-30 11:23:40 +0100 |
commit | 9e09409a8eb5c132fdad60484f1ae39ebd8b4e32 (patch) | |
tree | 00085f8b3247fca4948758573d6415106ec4b699 /cpan | |
parent | f02c02ec7c7eacaf7e719fe18388c537a795ae7e (diff) | |
download | perl-9e09409a8eb5c132fdad60484f1ae39ebd8b4e32.tar.gz |
Update Compress-Raw-Bzip2 to CPAN version 2.027
[DELTA]
2.027 24 April 2010
* No Changes
2.026 7 April 2010
* No Changes
2.025 27 March 2010
* Documented the unused "verbosity" option in
Compress::Raw::Bunzip2::new
[RT# 54425]
2.023 9 November 2009
* Removed redundant bzip2 source files from the bzip2-src directory.
[RT# 47225]
* Fixed instance where $[ should have been $] in t/01bzip2.t
Thanks to Robin Barker and zefram [RT #50764] for independantly
spotting the issue.
Diffstat (limited to 'cpan')
-rw-r--r-- | cpan/Compress-Raw-Bzip2/Changes | 15 | ||||
-rw-r--r-- | cpan/Compress-Raw-Bzip2/README | 6 | ||||
-rw-r--r-- | cpan/Compress-Raw-Bzip2/lib/Compress/Raw/Bzip2.pm | 10 | ||||
-rw-r--r-- | cpan/Compress-Raw-Bzip2/pod/FAQ.pod | 15 | ||||
-rw-r--r-- | cpan/Compress-Raw-Bzip2/t/000prereq.t | 2 |
5 files changed, 27 insertions, 21 deletions
diff --git a/cpan/Compress-Raw-Bzip2/Changes b/cpan/Compress-Raw-Bzip2/Changes index 843352b80e..e4d1f184f9 100644 --- a/cpan/Compress-Raw-Bzip2/Changes +++ b/cpan/Compress-Raw-Bzip2/Changes @@ -1,5 +1,20 @@ CHANGES ------- + + 2.027 24 April 2010 + + * No Changes + + 2.026 7 April 2010 + + * No Changes + + 2.025 27 March 2010 + + * Documented the unused "verbosity" option in + Compress::Raw::Bunzip2::new + [RT# 54425] + 2.023 9 November 2009 * Removed redundant bzip2 source files from the bzip2-src directory. diff --git a/cpan/Compress-Raw-Bzip2/README b/cpan/Compress-Raw-Bzip2/README index 94d35cffb5..3f2d8aba20 100644 --- a/cpan/Compress-Raw-Bzip2/README +++ b/cpan/Compress-Raw-Bzip2/README @@ -1,9 +1,9 @@ Compress-Raw-Bzip2 - Version 2.024 + Version 2.027 - 7th January 2010 + 7th April 2010 Copyright (c) 2005-2010 Paul Marquess. All rights reserved. This program is free software; you can redistribute it @@ -164,7 +164,7 @@ To help me help you, I need all of the following information: If you haven't installed Compress-Raw-Bzip2 then search Compress::Raw::Bzip2.pm for a line like this: - $VERSION = "2.024" ; + $VERSION = "2.027" ; c. The version of bzip2 you have used. If you have successfully installed Compress-Raw-Bzip2, this one-liner diff --git a/cpan/Compress-Raw-Bzip2/lib/Compress/Raw/Bzip2.pm b/cpan/Compress-Raw-Bzip2/lib/Compress/Raw/Bzip2.pm index 48f8207335..29f2a0b6e3 100644 --- a/cpan/Compress-Raw-Bzip2/lib/Compress/Raw/Bzip2.pm +++ b/cpan/Compress-Raw-Bzip2/lib/Compress/Raw/Bzip2.pm @@ -12,7 +12,7 @@ use Carp ; use bytes ; our ($VERSION, $XS_VERSION, @ISA, @EXPORT, $AUTOLOAD); -$VERSION = '2.024'; +$VERSION = '2.027'; $XS_VERSION = $VERSION; $VERSION = eval $VERSION; @@ -220,7 +220,7 @@ Returns C<BZ_STREAM_END> on success and a C<bzip2> error code on failure. =head1 Uncompression -=head2 ($z, $status) = new Compress::Raw::Bunzip2 $appendOutput, $consumeInput, $small, $limitOutput; +=head2 ($z, $status) = new Compress::Raw::Bunzip2 $appendOutput, $consumeInput, $small, $verbosity, $limitOutput; If successful, it will return the initialised uncompression object, C<$z> and a C<$status> of C<BZ_OK> in a list context. In scalar context it @@ -273,6 +273,12 @@ enabled. This option defaults to false. +=item B<$verbosity> + +This parameter is ignored. + +Defaults to 0. + =back =head2 $status = $z->bzinflate($input, $output); diff --git a/cpan/Compress-Raw-Bzip2/pod/FAQ.pod b/cpan/Compress-Raw-Bzip2/pod/FAQ.pod index 0051908f28..6bfd5f8903 100644 --- a/cpan/Compress-Raw-Bzip2/pod/FAQ.pod +++ b/cpan/Compress-Raw-Bzip2/pod/FAQ.pod @@ -77,21 +77,6 @@ write a C<.tar.Z> file $tar->write($fh); $fh->close ; -=head2 Accessing Zip Files - -This module does not support reading/writing zip files. - -Support for reading/writing zip files is included with the -C<IO::Compress::Zip> and C<IO::Uncompress::Unzip> modules. - -The primary focus of the C<IO::Compress::Zip> and C<IO::Uncompress::Unzip> -modules is to provide an C<IO::File> compatible streaming read/write -interface to zip files/buffers. They are not fully flegged archivers. If -you are looking for an archiver check out the C<Archive::Zip> module. You -can find it on CPAN at - - http://www.cpan.org/modules/by-module/Archive/Archive-Zip-*.tar.gz - =head1 SEE ALSO L<Compress::Zlib>, L<IO::Compress::Gzip>, L<IO::Uncompress::Gunzip>, L<IO::Compress::Deflate>, L<IO::Uncompress::Inflate>, L<IO::Compress::RawDeflate>, L<IO::Uncompress::RawInflate>, L<IO::Compress::Bzip2>, L<IO::Uncompress::Bunzip2>, L<IO::Compress::Lzma>, L<IO::Uncompress::UnLzma>, L<IO::Compress::Xz>, L<IO::Uncompress::UnXz>, L<IO::Compress::Lzop>, L<IO::Uncompress::UnLzop>, L<IO::Compress::Lzf>, L<IO::Uncompress::UnLzf>, L<IO::Uncompress::AnyInflate>, L<IO::Uncompress::AnyUncompress> diff --git a/cpan/Compress-Raw-Bzip2/t/000prereq.t b/cpan/Compress-Raw-Bzip2/t/000prereq.t index becd09af69..6c659b3cb1 100644 --- a/cpan/Compress-Raw-Bzip2/t/000prereq.t +++ b/cpan/Compress-Raw-Bzip2/t/000prereq.t @@ -19,7 +19,7 @@ BEGIN if eval { require Test::NoWarnings ; import Test::NoWarnings; 1 }; - my $VERSION = '2.024'; + my $VERSION = '2.027'; my @NAMES = qw( ); |