Add ignoreprops everywhere. Update changes and bump version for release. Update MANIF...
t0m [Tue, 16 Jun 2009 23:11:53 +0000 (23:11 +0000)]
git-svn-id: http://dev.catalyst.perl.org/repos/bast/local-lib/1.000/trunk@6696 bd8105ee-0ff8-0310-8827-fb3f25b6796d

Changes
MANIFEST.SKIP
lib/local/lib.pm
t/install.t

diff --git a/Changes b/Changes
index c2096c9..2a15a96 100644 (file)
--- 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,
index bdad680..8de40ec 100644 (file)
@@ -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
index 9440ad3..cd058f1 100644 (file)
@@ -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) = @_;
index 8c6727c..67cfa17 100644 (file)
@@ -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);