From: Nicholas Clark Date: Sat, 3 Jan 2004 19:22:08 +0000 (+0000) Subject: Fix minor problems with the CPAN release X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=dcf2e277aa4d17b79fa38b2f8bd20f8c90699f6d;p=p5sagit%2Fp5-mst-13.2.git Fix minor problems with the CPAN release 1: Make Storable.xs to work on 5.8.2 and later (already in the core) 2: Ship the linux hints file 3: Ship Test::More for the benefit of Perls pre 5.6.2 4: Correct Makefile.PL to install in core for 5.8.0 and later p4raw-id: //depot/perl@22049 --- diff --git a/ext/Storable/ChangeLog b/ext/Storable/ChangeLog index b91e4f5..f8ab98c 100644 --- a/ext/Storable/ChangeLog +++ b/ext/Storable/ChangeLog @@ -1,3 +1,13 @@ +Sat Jan 3 18:49:18 GMT 2004 Nicholas Clark + + Version 2.09 + + Fix minor problems with the CPAN release + 1: Make Storable.xs to work on 5.8.2 and later (already in the core) + 2: Ship the linux hints file + 3: Ship Test::More for the benefit of Perls pre 5.6.2 + 4: Correct Makefile.PL to install in core for 5.8.0 and later + Sat Sep 6 01:08:20 IST 2003 Abhijit Menon-Sen Version 2.08 diff --git a/ext/Storable/MANIFEST b/ext/Storable/MANIFEST index ab0b705..566cbf0 100644 --- a/ext/Storable/MANIFEST +++ b/ext/Storable/MANIFEST @@ -4,6 +4,7 @@ Makefile.PL Generic Makefile template Storable.pm The perl side of Storable Storable.xs The C side of Storable ChangeLog Changes since baseline +hints/linux.pl Hint file to drop gcc to -O2 t/blessed.t See if Storable works t/canonical.t See if Storable works t/code.t Test (de)serialization of code references @@ -30,3 +31,6 @@ t/tied_hook.t See if Storable works t/tied_items.t See if Storable works t/utf8.t See if Storable works t/utf8hash.t See if Storable works +t/Test/Builder.pm For testing the CPAN release on pre 5.6.2 +t/Test/More.pm For testing the CPAN release on pre 5.6.2 +t/Test/Simple.pm For testing the CPAN release on pre 5.6.2 diff --git a/ext/Storable/Makefile.PL b/ext/Storable/Makefile.PL index 60e1453..985f56d 100644 --- a/ext/Storable/Makefile.PL +++ b/ext/Storable/Makefile.PL @@ -14,7 +14,7 @@ WriteMakefile( MAN3PODS => {}, # We now ship this in t/ # PREREQ_PM => { 'Test::More' => '0.41' }, - INSTALLDIRS => 'perl', + INSTALLDIRS => $] >= 5.007 ? 'perl' : 'site', VERSION_FROM => 'Storable.pm', dist => { SUFFIX => 'gz', COMPRESS => 'gzip -f' }, ); diff --git a/ext/Storable/README b/ext/Storable/README index b8704c3..6fdaee0 100644 --- a/ext/Storable/README +++ b/ext/Storable/README @@ -1,6 +1,6 @@ - Storable 2.07 + Storable 2.09 Copyright (c) 1995-2000, Raphael Manfredi - Copyright (c) 2001,2002, Larry Wall + Copyright (c) 2001-2004, Larry Wall ------------------------------------------------------------------------ This program is free software; you can redistribute it and/or modify diff --git a/ext/Storable/Storable.pm b/ext/Storable/Storable.pm index 81c94c8..e7f9600 100644 --- a/ext/Storable/Storable.pm +++ b/ext/Storable/Storable.pm @@ -21,7 +21,7 @@ package Storable; @ISA = qw(Exporter DynaLoader); use AutoLoader; use vars qw($canonical $forgive_me $VERSION); -$VERSION = '2.08'; +$VERSION = '2.09'; *AUTOLOAD = \&AutoLoader::AUTOLOAD; # Grrr... #