summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2009-09-26 06:13:26 +0100
committerNicholas Clark <nick@ccl4.org>2009-09-26 06:13:26 +0100
commitafbf6680b6636f5aeeceb87d873ea5935f57334b (patch)
tree45098b00f3b3fad8e4e73e2bb3056a9106d19ed7
parente853d2264b77e2bdc0758f8ab38e819629763e81 (diff)
downloadperl-afbf6680b6636f5aeeceb87d873ea5935f57334b.tar.gz
Move AutoLoader from ext/ to cpan/
-rw-r--r--MANIFEST8
-rwxr-xr-xPorting/Maintainers.pl4
-rw-r--r--cpan/AutoLoader/lib/AutoLoader.pm (renamed from ext/AutoLoader/lib/AutoLoader.pm)0
-rw-r--r--cpan/AutoLoader/lib/AutoSplit.pm (renamed from ext/AutoLoader/lib/AutoSplit.pm)0
-rw-r--r--cpan/AutoLoader/t/01AutoLoader.t (renamed from ext/AutoLoader/t/01AutoLoader.t)0
-rw-r--r--cpan/AutoLoader/t/02AutoSplit.t (renamed from ext/AutoLoader/t/02AutoSplit.t)0
-rw-r--r--make_ext.pl2
7 files changed, 7 insertions, 7 deletions
diff --git a/MANIFEST b/MANIFEST
index 9a75099c1d..ea5d55ef7e 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -127,6 +127,10 @@ cpan/autodie/t/user-context.t autodie - Context changes for usersubs
cpan/autodie/t/usersub.t autodie - user subroutine tests
cpan/autodie/t/version.t autodie - versioning tests
cpan/autodie/t/version_tag.t
+cpan/AutoLoader/lib/AutoLoader.pm Autoloader base class
+cpan/AutoLoader/lib/AutoSplit.pm Split up autoload functions
+cpan/AutoLoader/t/01AutoLoader.t See if AutoLoader works
+cpan/AutoLoader/t/02AutoSplit.t See if AutoSplit works
cpan/DB_File/Changes Berkeley DB extension change log
cpan/DB_File/config.in Part of Berkeley DB configuration
cpan/DB_File/DB_File_BS Berkeley DB extension mkbootstrap fodder
@@ -445,10 +449,6 @@ ext/Attribute-Handlers/t/linerep.t See if Attribute::Handlers works
ext/Attribute-Handlers/t/multi.t See if Attribute::Handlers works
ext/attributes/attributes.pm For "sub foo : attrlist"
ext/attributes/attributes.xs For "sub foo : attrlist"
-ext/AutoLoader/lib/AutoLoader.pm Autoloader base class
-ext/AutoLoader/lib/AutoSplit.pm Split up autoload functions
-ext/AutoLoader/t/01AutoLoader.t See if AutoLoader works
-ext/AutoLoader/t/02AutoSplit.t See if AutoSplit works
ext/autouse/lib/autouse.pm Load and call a function only when it's used
ext/autouse/t/autouse.t See if autouse works
ext/autouse/t/lib/MyTestModule.pm Test module for autouse
diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl
index 5092c2d8f1..69258079ab 100755
--- a/Porting/Maintainers.pl
+++ b/Porting/Maintainers.pl
@@ -236,10 +236,10 @@ use File::Glob qw(:case);
{
'MAINTAINER' => 'smueller',
'DISTRIBUTION' => 'SMUELLER/AutoLoader-5.70.tar.gz',
- 'FILES' => q[ext/AutoLoader],
+ 'FILES' => q[cpan/AutoLoader],
'EXCLUDED' => [ qw( t/00pod.t ) ],
'CPAN' => 1,
- 'UPSTREAM' => "cpan",
+ 'UPSTREAM' => 'cpan',
},
'B::Concise' =>
diff --git a/ext/AutoLoader/lib/AutoLoader.pm b/cpan/AutoLoader/lib/AutoLoader.pm
index 06f986b50d..06f986b50d 100644
--- a/ext/AutoLoader/lib/AutoLoader.pm
+++ b/cpan/AutoLoader/lib/AutoLoader.pm
diff --git a/ext/AutoLoader/lib/AutoSplit.pm b/cpan/AutoLoader/lib/AutoSplit.pm
index c093f2dd24..c093f2dd24 100644
--- a/ext/AutoLoader/lib/AutoSplit.pm
+++ b/cpan/AutoLoader/lib/AutoSplit.pm
diff --git a/ext/AutoLoader/t/01AutoLoader.t b/cpan/AutoLoader/t/01AutoLoader.t
index dcee5c518a..dcee5c518a 100644
--- a/ext/AutoLoader/t/01AutoLoader.t
+++ b/cpan/AutoLoader/t/01AutoLoader.t
diff --git a/ext/AutoLoader/t/02AutoSplit.t b/cpan/AutoLoader/t/02AutoSplit.t
index c652562b30..c652562b30 100644
--- a/ext/AutoLoader/t/02AutoSplit.t
+++ b/cpan/AutoLoader/t/02AutoSplit.t
diff --git a/make_ext.pl b/make_ext.pl
index 2ff74d8b9e..8c4ff25473 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 ext/AutoLoader/lib);
+ ext/File-Path/lib cpan/AutoLoader/lib);
my @ext_dirs = qw(cpan ext);
my $ext_dirs_re = '(?:' . join('|', @ext_dirs) . ')';