From: t0m Date: Tue, 16 Jun 2009 23:11:53 +0000 (+0000) Subject: Add ignoreprops everywhere. Update changes and bump version for release. Update MANIF... X-Git-Tag: 1.006009~68 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2Flocal-lib.git;a=commitdiff_plain;h=011371a72271984f9e521e2d2f507905d7d5bd04 Add ignoreprops everywhere. Update changes and bump version for release. Update MANIFEST.SKIP to avoid test generated files git-svn-id: http://dev.catalyst.perl.org/repos/bast/local-lib/1.000/trunk@6696 bd8105ee-0ff8-0310-8827-fb3f25b6796d --- diff --git a/Changes b/Changes index c2096c9..2a15a96 100644 --- a/Changes +++ b/Changes @@ -1,12 +1,14 @@ Revision history for local::lib +1.004003 2009-16-16 - Stop Makefile.PL exploding if your CPAN is too old to have CPAN::HandleConfig. Needed when installing local::lib via CPAN using an old CPAN version (t0m) - Fix warning from Makefile.PL about ExtUtils::MakeMaker::prompt (t0m) - Set PERL5LIB back to calculated @INC with --self-contained, to stop invoking other perl scripts from losing the local::lib if they - mangle @INC from $ENV{PERL5LIB} (t0m) + mangle @INC from $ENV{PERL5LIB}, and fix install of 'difficult' + modules with such as Test::Deep (t0m) 1.004002 2009-06-15 - Fixed up INC untaint procedure to skip/ignore CODE, ARRAY, diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP index bdad680..8de40ec 100644 --- a/MANIFEST.SKIP +++ b/MANIFEST.SKIP @@ -1,2 +1,2 @@ -^(?!script/|examples/|lib/|inc/|t/|Makefile.PL$|README$|MANIFEST$|Changes$|META.yml$) +^(?!script/|examples/|lib/|inc/|t/.+\.t|t/dist/\w+/(\w+\.PL|lib/\w+\.pm)|Makefile.PL$|README$|MANIFEST$|Changes$|META.yml$) .svn diff --git a/lib/local/lib.pm b/lib/local/lib.pm index 9440ad3..cd058f1 100644 --- a/lib/local/lib.pm +++ b/lib/local/lib.pm @@ -11,7 +11,7 @@ use File::Path (); use Carp (); use Config; -our $VERSION = '1.004002'; # 1.4.2 +our $VERSION = '1.004003'; # 1.4.3 sub import { my ($class, @args) = @_; diff --git a/t/install.t b/t/install.t index 8c6727c..67cfa17 100644 --- a/t/install.t +++ b/t/install.t @@ -11,7 +11,7 @@ use Config; plan tests => 2; -my $dir = tempdir(DIR => Cwd::abs_path('t'), CLEANUP => 1); +my $dir = tempdir('test_local_lib-XXXXX', DIR => Cwd::abs_path('t'), CLEANUP => 1); use local::lib (); local::lib->import($dir);