diff options
author | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2012-06-07 22:23:18 +0100 |
---|---|---|
committer | Chris 'BinGOs' Williams <chris@bingosnet.co.uk> | 2012-06-15 22:15:04 +0100 |
commit | 7c409530de94f37b83d06af836f06c43c7be07e0 (patch) | |
tree | 7d16af4fbe4c6877c1b5218efd9d0a9489a149d1 /cpan/Compress-Raw-Bzip2 | |
parent | 7c8257d9ba76f806472c6ed338fedab3e80c53db (diff) | |
download | perl-7c409530de94f37b83d06af836f06c43c7be07e0.tar.gz |
Updated Compress-Raw-Bzip2 to CPAN version 2.052
[DELTA]
2.052 29 April 2012
* No Changes
2.049 18 February 2012
* No Changes
Diffstat (limited to 'cpan/Compress-Raw-Bzip2')
-rw-r--r-- | cpan/Compress-Raw-Bzip2/Changes | 8 | ||||
-rw-r--r-- | cpan/Compress-Raw-Bzip2/Makefile.PL | 6 | ||||
-rw-r--r-- | cpan/Compress-Raw-Bzip2/README | 10 | ||||
-rw-r--r-- | cpan/Compress-Raw-Bzip2/lib/Compress/Raw/Bzip2.pm | 2 | ||||
-rw-r--r-- | cpan/Compress-Raw-Bzip2/t/000prereq.t | 2 |
5 files changed, 21 insertions, 7 deletions
diff --git a/cpan/Compress-Raw-Bzip2/Changes b/cpan/Compress-Raw-Bzip2/Changes index ea277c60dd..7dd052b51f 100644 --- a/cpan/Compress-Raw-Bzip2/Changes +++ b/cpan/Compress-Raw-Bzip2/Changes @@ -1,6 +1,14 @@ CHANGES ------- + 2.052 29 April 2012 + + * No Changes + + 2.049 18 February 2012 + + * No Changes + 2.048 29 January 2012 * No Changes diff --git a/cpan/Compress-Raw-Bzip2/Makefile.PL b/cpan/Compress-Raw-Bzip2/Makefile.PL index 8bbf3bd11d..6b0b732a79 100644 --- a/cpan/Compress-Raw-Bzip2/Makefile.PL +++ b/cpan/Compress-Raw-Bzip2/Makefile.PL @@ -49,6 +49,12 @@ WriteMakefile( INSTALLDIRS => ($] > 5.010 ? 'perl' : 'site'), + META_MERGE => { + no_index => { + directory => [ 't', 'private' ], + }, + }, + ((ExtUtils::MakeMaker->VERSION() gt '6.30') ? ('LICENSE' => 'perl') : ()), diff --git a/cpan/Compress-Raw-Bzip2/README b/cpan/Compress-Raw-Bzip2/README index f622e644ef..f39f6beca8 100644 --- a/cpan/Compress-Raw-Bzip2/README +++ b/cpan/Compress-Raw-Bzip2/README @@ -1,9 +1,9 @@ - Compress-Raw-Bzip2 + Compress-Raw-Bzip2 - Version 2.048 + Version 2.052 - 29th January 2012 + 29th April 2012 Copyright (c) 2005-2012 Paul Marquess. All rights reserved. This program is free software; you can redistribute it @@ -35,7 +35,7 @@ installed on your system: * A C compiler - * Perl 5.004 or better. + * Perl 5.006 or better. BUILDING THE MODULE ------------------- @@ -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.048" ; + $VERSION = "2.052" ; 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 43a5fbcc5b..f4bbf3ab3b 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.048'; +$VERSION = '2.052'; $XS_VERSION = $VERSION; $VERSION = eval $VERSION; diff --git a/cpan/Compress-Raw-Bzip2/t/000prereq.t b/cpan/Compress-Raw-Bzip2/t/000prereq.t index a378fe305f..13a447a2c3 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.048'; + my $VERSION = '2.052'; my @NAMES = qw( ); |