summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Williams <chris@bingosnet.co.uk>2009-09-12 12:29:04 +0100
committerChris Williams <chris@bingosnet.co.uk>2009-09-12 12:29:04 +0100
commitfac4c97df78622e953472ae69e7a2ab4d3edfd6c (patch)
tree32da00ed559717f6176c55319f82affd2f44c43b
parent4677aef710c292706460adb42ae4c5704ccecc56 (diff)
downloadperl-fac4c97df78622e953472ae69e7a2ab4d3edfd6c.tar.gz
Moved parent from lib/ to ext/
-rw-r--r--MANIFEST26
-rwxr-xr-xPorting/Maintainers.pl2
-rw-r--r--ext/.gitignore1
-rw-r--r--ext/parent/lib/parent.pm (renamed from lib/parent.pm)0
-rw-r--r--ext/parent/t/compile-time-file.t (renamed from lib/parent/t/compile-time-file.t)0
-rw-r--r--ext/parent/t/compile-time.t (renamed from lib/parent/t/compile-time.t)0
-rw-r--r--ext/parent/t/lib/Dummy.pm (renamed from lib/parent/t/lib/Dummy.pm)0
-rw-r--r--ext/parent/t/lib/Dummy/Outside.pm (renamed from lib/parent/t/lib/Dummy/Outside.pm)0
-rw-r--r--ext/parent/t/lib/Dummy2.plugin (renamed from lib/parent/t/lib/Dummy2.plugin)0
-rw-r--r--ext/parent/t/lib/FileThatOnlyExistsAsPMC.pmc (renamed from lib/parent/t/lib/FileThatOnlyExistsAsPMC.pmc)0
-rw-r--r--ext/parent/t/lib/ReturnsFalse.pm (renamed from lib/parent/t/lib/ReturnsFalse.pm)0
-rw-r--r--ext/parent/t/parent-classfromclassfile.t (renamed from lib/parent/t/parent-classfromclassfile.t)0
-rw-r--r--ext/parent/t/parent-classfromfile.t (renamed from lib/parent/t/parent-classfromfile.t)0
-rw-r--r--ext/parent/t/parent-pmc.t (renamed from lib/parent/t/parent-pmc.t)0
-rw-r--r--ext/parent/t/parent-returns-false.t (renamed from lib/parent/t/parent-returns-false.t)0
-rw-r--r--ext/parent/t/parent.t (renamed from lib/parent/t/parent.t)0
-rw-r--r--lib/.gitignore1
-rwxr-xr-xt/TEST1
18 files changed, 17 insertions, 14 deletions
diff --git a/MANIFEST b/MANIFEST
index bbad138591..10201951be 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -1968,6 +1968,19 @@ ext/Package-Constants/lib/Package/Constants.pm Package::Constants
ext/Package-Constants/t/01_list.t Package::Constants tests
ext/Params-Check/lib/Params/Check.pm Params::Check
ext/Params-Check/t/01_Params-Check.t Params::Check tests
+ext/parent/lib/parent.pm Establish an ISA relationship with base classes at compile time
+ext/parent/t/compile-time-file.t tests for parent.pm
+ext/parent/t/compile-time.t tests for parent.pm
+ext/parent/t/lib/Dummy2.plugin test files for parent.pm
+ext/parent/t/lib/Dummy/Outside.pm test files for parent.pm
+ext/parent/t/lib/Dummy.pm test files for parent.pm
+ext/parent/t/lib/FileThatOnlyExistsAsPMC.pmc test files for parent.pm
+ext/parent/t/lib/ReturnsFalse.pm test files for parent.pm
+ext/parent/t/parent-classfromclassfile.t tests for parent.pm
+ext/parent/t/parent-classfromfile.t tests for parent.pm
+ext/parent/t/parent-pmc.t tests for parent.pm
+ext/parent/t/parent-returns-false.t tests for parent.pm
+ext/parent/t/parent.t tests for parent.pm
ext/Parse-CPAN-Meta/Changes Parse::CPAN::Meta
ext/Parse-CPAN-Meta/lib/Parse/CPAN/Meta.pm Parse::CPAN::Meta
ext/Parse-CPAN-Meta/t/01_compile.t Parse::CPAN::Meta
@@ -3008,19 +3021,6 @@ lib/overloading.t Tests for overloading.pm
lib/overload/numbers.pm Helper for overloading pragma
lib/overload.pm Module for overloading perl operators
lib/overload.t See if operator overloading works
-lib/parent.pm Establish an ISA relationship with base classes at compile time
-lib/parent/t/compile-time-file.t tests for parent.pm
-lib/parent/t/compile-time.t tests for parent.pm
-lib/parent/t/lib/Dummy2.plugin test files for parent.pm
-lib/parent/t/lib/Dummy/Outside.pm test files for parent.pm
-lib/parent/t/lib/Dummy.pm test files for parent.pm
-lib/parent/t/lib/FileThatOnlyExistsAsPMC.pmc test files for parent.pm
-lib/parent/t/lib/ReturnsFalse.pm test files for parent.pm
-lib/parent/t/parent-classfromclassfile.t tests for parent.pm
-lib/parent/t/parent-classfromfile.t tests for parent.pm
-lib/parent/t/parent-pmc.t tests for parent.pm
-lib/parent/t/parent-returns-false.t tests for parent.pm
-lib/parent/t/parent.t tests for parent.pm
lib/perl5db.pl Perl debugging routines
lib/perl5db.t Tests for the Perl debugger
lib/perl5db/t/eval-line-bug Tests for the Perl debugger
diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl
index dd52b5456c..695491dd6a 100755
--- a/Porting/Maintainers.pl
+++ b/Porting/Maintainers.pl
@@ -1128,7 +1128,7 @@ use File::Glob qw(:case);
{
'MAINTAINER' => 'corion',
'DISTRIBUTION' => 'CORION/parent-0.221.tar.gz',
- 'FILES' => q[lib/parent lib/parent.pm],
+ 'FILES' => q[ext/parent],
'CPAN' => 1,
'UPSTREAM' => undef,
},
diff --git a/ext/.gitignore b/ext/.gitignore
index aec8dd40c2..0a65e61913 100644
--- a/ext/.gitignore
+++ b/ext/.gitignore
@@ -67,6 +67,7 @@ ppport.h
/Opcode/Makefile.PL
/Package-Constants/Makefile.PL
/Params-Check/Makefile.PL
+/parent/Makefile.PL
/Parse-CPAN-Meta/Makefile.PL
/PerlIO-encoding/Makefile.PL
/PerlIO-scalar/Makefile.PL
diff --git a/lib/parent.pm b/ext/parent/lib/parent.pm
index 435ff2554b..435ff2554b 100644
--- a/lib/parent.pm
+++ b/ext/parent/lib/parent.pm
diff --git a/lib/parent/t/compile-time-file.t b/ext/parent/t/compile-time-file.t
index bff8861552..bff8861552 100644
--- a/lib/parent/t/compile-time-file.t
+++ b/ext/parent/t/compile-time-file.t
diff --git a/lib/parent/t/compile-time.t b/ext/parent/t/compile-time.t
index be6d54cb74..be6d54cb74 100644
--- a/lib/parent/t/compile-time.t
+++ b/ext/parent/t/compile-time.t
diff --git a/lib/parent/t/lib/Dummy.pm b/ext/parent/t/lib/Dummy.pm
index 0136328832..0136328832 100644
--- a/lib/parent/t/lib/Dummy.pm
+++ b/ext/parent/t/lib/Dummy.pm
diff --git a/lib/parent/t/lib/Dummy/Outside.pm b/ext/parent/t/lib/Dummy/Outside.pm
index 020d79c3d3..020d79c3d3 100644
--- a/lib/parent/t/lib/Dummy/Outside.pm
+++ b/ext/parent/t/lib/Dummy/Outside.pm
diff --git a/lib/parent/t/lib/Dummy2.plugin b/ext/parent/t/lib/Dummy2.plugin
index 2a68d3d51f..2a68d3d51f 100644
--- a/lib/parent/t/lib/Dummy2.plugin
+++ b/ext/parent/t/lib/Dummy2.plugin
diff --git a/lib/parent/t/lib/FileThatOnlyExistsAsPMC.pmc b/ext/parent/t/lib/FileThatOnlyExistsAsPMC.pmc
index d9b8b8fd98..d9b8b8fd98 100644
--- a/lib/parent/t/lib/FileThatOnlyExistsAsPMC.pmc
+++ b/ext/parent/t/lib/FileThatOnlyExistsAsPMC.pmc
diff --git a/lib/parent/t/lib/ReturnsFalse.pm b/ext/parent/t/lib/ReturnsFalse.pm
index 41db2138a5..41db2138a5 100644
--- a/lib/parent/t/lib/ReturnsFalse.pm
+++ b/ext/parent/t/lib/ReturnsFalse.pm
diff --git a/lib/parent/t/parent-classfromclassfile.t b/ext/parent/t/parent-classfromclassfile.t
index 6d92e2ddf3..6d92e2ddf3 100644
--- a/lib/parent/t/parent-classfromclassfile.t
+++ b/ext/parent/t/parent-classfromclassfile.t
diff --git a/lib/parent/t/parent-classfromfile.t b/ext/parent/t/parent-classfromfile.t
index 13dbcc15a4..13dbcc15a4 100644
--- a/lib/parent/t/parent-classfromfile.t
+++ b/ext/parent/t/parent-classfromfile.t
diff --git a/lib/parent/t/parent-pmc.t b/ext/parent/t/parent-pmc.t
index 1b544c88dc..1b544c88dc 100644
--- a/lib/parent/t/parent-pmc.t
+++ b/ext/parent/t/parent-pmc.t
diff --git a/lib/parent/t/parent-returns-false.t b/ext/parent/t/parent-returns-false.t
index d388b4c9ed..d388b4c9ed 100644
--- a/lib/parent/t/parent-returns-false.t
+++ b/ext/parent/t/parent-returns-false.t
diff --git a/lib/parent/t/parent.t b/ext/parent/t/parent.t
index 401fe39d5d..401fe39d5d 100644
--- a/lib/parent/t/parent.t
+++ b/ext/parent/t/parent.t
diff --git a/lib/.gitignore b/lib/.gitignore
index f819bf5ebd..d7c518f909 100644
--- a/lib/.gitignore
+++ b/lib/.gitignore
@@ -284,6 +284,7 @@
/Opcode.pm
/Package/Constants.pm
/Params/Check.pm
+/parent.pm
/Parse/CPAN/Meta.pm
/POSIX.pm
/POSIX.pod
diff --git a/t/TEST b/t/TEST
index 8c86d0eff6..b794103c61 100755
--- a/t/TEST
+++ b/t/TEST
@@ -33,6 +33,7 @@ my %temp_no_core =
'../ext/Math-BigInt' => 1,
'../ext/Math-BigRat' => 1,
'../ext/MIME-Base64' => 1,
+ '../ext/parent' => 1,
'../ext/Parse-CPAN-Meta' => 1,
'../ext/Tie-RefHash' => 1,
'../ext/Time-HiRes' => 1,