From: Steffen Mueller Date: Sun, 30 Aug 2009 10:53:53 +0000 (+0200) Subject: Move Term::ANSIColor from lib to ext X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b66dd24d3152825e0359d5841ad95847a9a390a9;p=p5sagit%2Fp5-mst-13.2.git Move Term::ANSIColor from lib to ext --- diff --git a/MANIFEST b/MANIFEST index 32fb41f..789e822 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1283,6 +1283,10 @@ ext/Sys-Syslog/win32/PerlLog_dll.uu Sys::Syslog extension Win32 related file ext/Sys-Syslog/win32/PerlLog.mc Sys::Syslog extension Win32 related file ext/Sys-Syslog/win32/PerlLog_RES.uu Sys::Syslog extension Win32 related file ext/Sys-Syslog/win32/Win32.pm Sys::Syslog extension Win32 related file +ext/Term-ANSIColor/ANSIColor.pm Perl module supporting termcap usage +ext/Term-ANSIColor/ChangeLog Term::ANSIColor +ext/Term-ANSIColor/README Term::ANSIColor +ext/Term-ANSIColor/t/basic.t Tests for Term::ANSIColor ext/Test-Harness/bin/prove The prove harness utility ext/Test-Harness/Changes Test::Harness change log ext/Test-Harness/lib/App/Prove.pm Gubbins for the prove utility @@ -3127,10 +3131,6 @@ lib/Symbol.pm Symbol table manipulation routines lib/Symbol.t See if Symbol works lib/syslog.pl Perl library supporting syslogging lib/tainted.pl Old code for tainting -lib/Term/ANSIColor/ChangeLog Term::ANSIColor -lib/Term/ANSIColor.pm Perl module supporting termcap usage -lib/Term/ANSIColor/README Term::ANSIColor -lib/Term/ANSIColor/t/basic.t Tests for Term::ANSIColor lib/termcap.pl Perl library supporting termcap usage lib/Term/Cap.pm Perl module supporting termcap usage lib/Term/Cap.t See if Term::Cap works diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index a761f54..6c84da8 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -1645,14 +1645,8 @@ package Maintainers; { 'MAINTAINER' => 'rra', 'DISTRIBUTION' => 'RRA/ANSIColor-2.01.tar.gz', - 'FILES' => q{lib/Term/ANSIColor.pm lib/Term/ANSIColor}, - 'EXCLUDED' => [ qr{^tests/}, - qw(t/pod-spelling.t t/pod.t) - ], - 'MAP' => { - '' => 'lib/Term/ANSIColor/', - 'ANSIColor.pm'=> 'lib/Term/ANSIColor.pm', - }, + 'FILES' => q{ext/Term-ANSIColor}, + 'EXCLUDED' => [ qr{^tests/}, qw(t/pod-spelling.t t/pod.t) ], 'CPAN' => 1, 'UPSTREAM' => 'cpan', }, diff --git a/lib/Term/ANSIColor.pm b/ext/Term-ANSIColor/ANSIColor.pm similarity index 100% rename from lib/Term/ANSIColor.pm rename to ext/Term-ANSIColor/ANSIColor.pm diff --git a/lib/Term/ANSIColor/ChangeLog b/ext/Term-ANSIColor/ChangeLog similarity index 100% rename from lib/Term/ANSIColor/ChangeLog rename to ext/Term-ANSIColor/ChangeLog diff --git a/lib/Term/ANSIColor/README b/ext/Term-ANSIColor/README similarity index 100% rename from lib/Term/ANSIColor/README rename to ext/Term-ANSIColor/README diff --git a/lib/Term/ANSIColor/t/basic.t b/ext/Term-ANSIColor/t/basic.t similarity index 100% rename from lib/Term/ANSIColor/t/basic.t rename to ext/Term-ANSIColor/t/basic.t