In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/2451603626893a501c9436409c4aa7e19932c987?hp=97a70a1d348306d3a2e80c4ed8a9b54784b92227>
- Log ----------------------------------------------------------------- commit 2451603626893a501c9436409c4aa7e19932c987 Author: Chris Williams <[email protected]> Date: Sat Sep 12 17:56:33 2009 +0100 Moved Class-ISA from lib/ to ext/ ----------------------------------------------------------------------- Summary of changes: MANIFEST | 8 ++++---- Porting/Maintainers.pl | 2 +- ext/.gitignore | 1 + {lib/Class/ISA => ext/Class-ISA}/ChangeLog | 0 {lib => ext/Class-ISA/lib}/Class/ISA.pm | 0 .../ISA => ext/Class-ISA}/t/00_about_verbose.t | 2 +- {lib/Class/ISA => ext/Class-ISA}/t/01_old_junk.t | 0 lib/.gitignore | 1 + 8 files changed, 8 insertions(+), 6 deletions(-) rename {lib/Class/ISA => ext/Class-ISA}/ChangeLog (100%) rename {lib => ext/Class-ISA/lib}/Class/ISA.pm (100%) rename {lib/Class/ISA => ext/Class-ISA}/t/00_about_verbose.t (99%) rename {lib/Class/ISA => ext/Class-ISA}/t/01_old_junk.t (100%) diff --git a/MANIFEST b/MANIFEST index 499b4be..2072178 100644 --- a/MANIFEST +++ b/MANIFEST @@ -339,6 +339,10 @@ ext/CGI/t/upload.t See if CGI.pm works ext/CGI/t/user_agent.t See if CGI->user_agent() works ext/CGI/t/util-58.t See if 5.8-dependent features work ext/CGI/t/util.t See if CGI.pm works +ext/Class-ISA/ChangeLog Changes for Class::ISA +ext/Class-ISA/lib/Class/ISA.pm Class::ISA +ext/Class-ISA/t/00_about_verbose.t Tests for Class::ISA +ext/Class-ISA/t/01_old_junk.t Tests for Class::ISA ext/Compress-Raw-Bzip2/bzip2-src/blocksort.c ext/Compress-Raw-Bzip2/bzip2-src/bzip2.c ext/Compress-Raw-Bzip2/bzip2-src/bzip2recover.c @@ -2801,10 +2805,6 @@ lib/Carp.pm Error message base class lib/Carp.t See if Carp works lib/charnames.pm Character names lib/charnames.t See if character names work -lib/Class/ISA/ChangeLog Changes for Class::ISA -lib/Class/ISA.pm Class::ISA -lib/Class/ISA/t/00_about_verbose.t Tests for Class::ISA -lib/Class/ISA/t/01_old_junk.t Tests for Class::ISA lib/Class/Struct.pm Declare struct-like datatypes as Perl classes lib/Class/Struct.t See if Class::Struct works lib/complete.pl A command completion subroutine diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index a965015..6073248 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -317,7 +317,7 @@ use File::Glob qw(:case); { 'MAINTAINER' => 'sburke', 'DISTRIBUTION' => 'SBURKE/Class-ISA-0.33.tar.gz', - 'FILES' => q[lib/Class/ISA.pm lib/Class/ISA], + 'FILES' => q[ext/Class-ISA], 'CPAN' => 1, 'UPSTREAM' => undef, }, diff --git a/ext/.gitignore b/ext/.gitignore index 0a65e61..9a06c98 100644 --- a/ext/.gitignore +++ b/ext/.gitignore @@ -25,6 +25,7 @@ ppport.h /B-Lint/Makefile.PL /CGI/Makefile.PL /constant/Makefile.PL +/Class-ISA/Makefile.PL /CPANPLUS-Dist-Build/Makefile.PL /Data-Dumper/Makefile.PL /Digest/Makefile.PL diff --git a/lib/Class/ISA/ChangeLog b/ext/Class-ISA/ChangeLog similarity index 100% rename from lib/Class/ISA/ChangeLog rename to ext/Class-ISA/ChangeLog diff --git a/lib/Class/ISA.pm b/ext/Class-ISA/lib/Class/ISA.pm similarity index 100% rename from lib/Class/ISA.pm rename to ext/Class-ISA/lib/Class/ISA.pm diff --git a/lib/Class/ISA/t/00_about_verbose.t b/ext/Class-ISA/t/00_about_verbose.t similarity index 99% rename from lib/Class/ISA/t/00_about_verbose.t rename to ext/Class-ISA/t/00_about_verbose.t index edc3023..547e928 100644 --- a/lib/Class/ISA/t/00_about_verbose.t +++ b/ext/Class-ISA/t/00_about_verbose.t @@ -1,6 +1,6 @@ BEGIN { chdir 't' if -d 't'; - @INC = '../lib'; + #...@inc = '../lib'; } require 5; diff --git a/lib/Class/ISA/t/01_old_junk.t b/ext/Class-ISA/t/01_old_junk.t similarity index 100% rename from lib/Class/ISA/t/01_old_junk.t rename to ext/Class-ISA/t/01_old_junk.t diff --git a/lib/.gitignore b/lib/.gitignore index 9b761c7..be06fdd 100644 --- a/lib/.gitignore +++ b/lib/.gitignore @@ -20,6 +20,7 @@ /Config_git.pl /CGI /CGI.pm +/Class/ISA.pm /CPAN.pm /CPAN /CPAN/API -- Perl5 Master Repository
