summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2009-09-26 11:13:58 +0100
committerNicholas Clark <nick@ccl4.org>2009-09-26 11:13:58 +0100
commit140ca009910469db9424630e5e6f7de982d11d88 (patch)
tree54d8e163ee27dd2ea449be5997c23d2a5801cbe6
parentd8ae23303085b390277723f0ee744282b728bda7 (diff)
downloadperl-140ca009910469db9424630e5e6f7de982d11d88.tar.gz
Move File::Path from ext/ to cpan/
-rw-r--r--MANIFEST4
-rwxr-xr-xPorting/Maintainers.pl2
-rw-r--r--cpan/File-Path/lib/File/Path.pm (renamed from ext/File-Path/lib/File/Path.pm)0
-rw-r--r--cpan/File-Path/t/Path.t (renamed from ext/File-Path/t/Path.t)0
-rw-r--r--make_ext.pl2
5 files changed, 4 insertions, 4 deletions
diff --git a/MANIFEST b/MANIFEST
index 916c6e9f4f..2b2eac4cd2 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -515,6 +515,8 @@ cpan/ExtUtils-ParseXS/t/XSUsage.pm ExtUtils::ParseXS tests
cpan/ExtUtils-ParseXS/t/XSUsage.xs ExtUtils::ParseXS tests
cpan/File-Fetch/lib/File/Fetch.pm File::Fetch
cpan/File-Fetch/t/01_File-Fetch.t File::Fetch tests
+cpan/File-Path/lib/File/Path.pm Do things like 'mkdir -p' and 'rm -r'
+cpan/File-Path/t/Path.t See if File::Path works
cpan/IPC-SysV/Changes IPC::SysV changes
cpan/IPC-SysV/hints/cygwin.pl Hint for IPC::SysV for named architecture
cpan/IPC-SysV/hints/next_3.pl Hint for IPC::SysV for named architecture
@@ -1310,8 +1312,6 @@ ext/File-Glob/t/case.t See if File::Glob works
ext/File-Glob/t/global.t See if File::Glob works
ext/File-Glob/TODO File::Glob extension todo list
ext/File-Glob/t/taint.t See if File::Glob works
-ext/File-Path/lib/File/Path.pm Do things like `mkdir -p' and `rm -r'
-ext/File-Path/t/Path.t See if File::Path works
ext/File-Temp/t/cmp.t See if File::Temp works
ext/File-Temp/Temp.pm create safe temporary files and file handles
ext/File-Temp/t/fork.t See if File::Temp works
diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl
index 5701f34ff8..50f12bb815 100755
--- a/Porting/Maintainers.pl
+++ b/Porting/Maintainers.pl
@@ -656,7 +656,7 @@ use File::Glob qw(:case);
{
'MAINTAINER' => 'dland',
'DISTRIBUTION' => 'DLAND/File-Path-2.07_03.tar.gz',
- 'FILES' => q[ext/File-Path],
+ 'FILES' => q[cpan/File-Path],
'EXCLUDED' => [ qw{eg/setup-extra-tests
t/pod.t
t/taint.t
diff --git a/ext/File-Path/lib/File/Path.pm b/cpan/File-Path/lib/File/Path.pm
index e31191f5ba..e31191f5ba 100644
--- a/ext/File-Path/lib/File/Path.pm
+++ b/cpan/File-Path/lib/File/Path.pm
diff --git a/ext/File-Path/t/Path.t b/cpan/File-Path/t/Path.t
index 319c3d0bfc..319c3d0bfc 100644
--- a/ext/File-Path/t/Path.t
+++ b/cpan/File-Path/t/Path.t
diff --git a/make_ext.pl b/make_ext.pl
index 8c4ff25473..5aa861dba3 100644
--- a/make_ext.pl
+++ b/make_ext.pl
@@ -17,7 +17,7 @@ use Cwd;
my @toolchain = qw(ext/constant/lib ext/Cwd ext/Cwd/lib ext/ExtUtils-Command/lib
ext/ExtUtils-Install/lib ext/ExtUtils-MakeMaker/lib
ext/ExtUtils-Manifest/lib ext/Text-ParseWords/lib
- ext/File-Path/lib cpan/AutoLoader/lib);
+ cpan/File-Path/lib cpan/AutoLoader/lib);
my @ext_dirs = qw(cpan ext);
my $ext_dirs_re = '(?:' . join('|', @ext_dirs) . ')';