From: Steffen Mueller Date: Sun, 30 Aug 2009 13:43:09 +0000 (+0200) Subject: Move Term::UI from lib to ext X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=bd895a33768654cec5f2d431d51069d403392c40;p=p5sagit%2Fp5-mst-13.2.git Move Term::UI from lib to ext --- diff --git a/MANIFEST b/MANIFEST index ddefe3d..51e3ff8 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1299,6 +1299,11 @@ ext/Term-ANSIColor/README Term::ANSIColor ext/Term-ANSIColor/t/basic.t Tests for Term::ANSIColor ext/Term-Cap/Cap.pm Perl module supporting termcap usage ext/Term-Cap/test.pl See if Term::Cap works +ext/Term-UI/lib/Term/UI/History.pm Term::UI +ext/Term-UI/lib/Term/UI.pm Term::UI +ext/Term-UI/t/00_load.t Term::UI tests +ext/Term-UI/t/01_history.t Term::UI tests +ext/Term-UI/t/02_ui.t Term::UI tests 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 @@ -3148,11 +3153,6 @@ lib/Term/Complete.pm A command completion subroutine lib/Term/Complete.t See if Term::Complete works lib/Term/ReadLine.pm Stub readline library lib/Term/ReadLine.t See if Term::ReadLine works -lib/Term/UI/History.pm Term::UI -lib/Term/UI.pm Term::UI -lib/Term/UI/t/00_load.t Term::UI tests -lib/Term/UI/t/01_history.t Term::UI tests -lib/Term/UI/t/02_ui.t Term::UI tests lib/Test/Builder/Module.pm Base class for test modules lib/Test/Builder.pm For writing new test libraries lib/Test/Builder/Tester/Color.pm Turn on color in Test::Builder::Tester diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 30cab27..7acec36 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -1653,7 +1653,7 @@ package Maintainers; { 'MAINTAINER' => 'kane', 'DISTRIBUTION' => 'KANE/Term-UI-0.20.tar.gz', - 'FILES' => q{lib/Term/UI.pm lib/Term/UI}, + 'FILES' => q{ext/Term-UI}, 'CPAN' => 1, 'UPSTREAM' => 'cpan', }, diff --git a/lib/Term/UI.pm b/ext/Term-UI/lib/Term/UI.pm similarity index 100% rename from lib/Term/UI.pm rename to ext/Term-UI/lib/Term/UI.pm diff --git a/lib/Term/UI/History.pm b/ext/Term-UI/lib/Term/UI/History.pm similarity index 100% rename from lib/Term/UI/History.pm rename to ext/Term-UI/lib/Term/UI/History.pm diff --git a/lib/Term/UI/t/00_load.t b/ext/Term-UI/t/00_load.t similarity index 100% rename from lib/Term/UI/t/00_load.t rename to ext/Term-UI/t/00_load.t diff --git a/lib/Term/UI/t/01_history.t b/ext/Term-UI/t/01_history.t similarity index 100% rename from lib/Term/UI/t/01_history.t rename to ext/Term-UI/t/01_history.t diff --git a/lib/Term/UI/t/02_ui.t b/ext/Term-UI/t/02_ui.t similarity index 100% rename from lib/Term/UI/t/02_ui.t rename to ext/Term-UI/t/02_ui.t