diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/IO/Uncompress/Bunzip2.pm')
-rw-r--r-- | Master/tlpkg/tlperl/lib/IO/Uncompress/Bunzip2.pm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Master/tlpkg/tlperl/lib/IO/Uncompress/Bunzip2.pm b/Master/tlpkg/tlperl/lib/IO/Uncompress/Bunzip2.pm index 97bc415878a..26556b7625f 100644 --- a/Master/tlpkg/tlperl/lib/IO/Uncompress/Bunzip2.pm +++ b/Master/tlpkg/tlperl/lib/IO/Uncompress/Bunzip2.pm @@ -4,18 +4,18 @@ use strict ; use warnings; use bytes; -use IO::Compress::Base::Common 2.069 qw(:Status ); +use IO::Compress::Base::Common 2.074 qw(:Status ); -use IO::Uncompress::Base 2.069 ; -use IO::Uncompress::Adapter::Bunzip2 2.069 ; +use IO::Uncompress::Base 2.074 ; +use IO::Uncompress::Adapter::Bunzip2 2.074 ; require Exporter ; our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $Bunzip2Error); -$VERSION = '2.069_001'; +$VERSION = '2.074'; $Bunzip2Error = ''; -@ISA = qw( Exporter IO::Uncompress::Base ); +@ISA = qw(IO::Uncompress::Base Exporter); @EXPORT_OK = qw( $Bunzip2Error bunzip2 ) ; #%EXPORT_TAGS = %IO::Uncompress::Base::EXPORT_TAGS ; push @{ $EXPORT_TAGS{all} }, @EXPORT_OK ; @@ -889,13 +889,13 @@ L<File::GlobMapper|File::GlobMapper>, L<Archive::Zip|Archive::Zip>, L<Archive::Tar|Archive::Tar>, L<IO::Zlib|IO::Zlib> -The primary site for the bzip2 program is F<http://www.bzip.org>. +The primary site for the bzip2 program is L<http://www.bzip.org>. See the module L<Compress::Bzip2|Compress::Bzip2> =head1 AUTHOR -This module was written by Paul Marquess, F<pmqs@cpan.org>. +This module was written by Paul Marquess, C<pmqs@cpan.org>. =head1 MODIFICATION HISTORY @@ -903,7 +903,7 @@ See the Changes file. =head1 COPYRIGHT AND LICENSE -Copyright (c) 2005-2015 Paul Marquess. All rights reserved. +Copyright (c) 2005-2017 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. |