From: Steffen Mueller Date: Fri, 4 Sep 2009 10:23:42 +0000 (+0200) Subject: Move IPC::Open3 from lib to ext X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3ac93b7074fcc522558ef159c4ce9eec7a379d87;p=p5sagit%2Fp5-mst-13.2.git Move IPC::Open3 from lib to ext --- diff --git a/MANIFEST b/MANIFEST index 07bacac..c17f861 100644 --- a/MANIFEST +++ b/MANIFEST @@ -983,6 +983,8 @@ ext/IO/t/io_utf8.t See if perlio opens work ext/IO/t/io_xs.t See if XSUB methods from IO work ext/IPC-Open2/lib/IPC/Open2.pm Open a two-ended pipe ext/IPC-Open2/t/IPC-Open2.t See if IPC::Open2 works +ext/IPC-Open3/lib/IPC/Open3.pm Open a three-ended pipe +ext/IPC-Open3/t/IPC-Open3.t See if IPC::Open3 works ext/IPC-SysV/Changes IPC::SysV changes ext/IPC-SysV/hints/cygwin.pl Hint for IPC::SysV for named architecture ext/IPC-SysV/hints/next_3.pl Hint for IPC::SysV for named architecture @@ -2597,8 +2599,6 @@ lib/IPC/Cmd/t/02_Interactive.t IPC::Cmd tests lib/IPC/Cmd/t/src/child.pl IPC::Cmd tests lib/IPC/Cmd/t/src/output.pl IPC::Cmd tests lib/IPC/Cmd/t/src/x.tgz.packed IPC::Cmd tests -lib/IPC/Open3.pm Open a three-ended pipe! -lib/IPC/Open3.t See if IPC::Open3 works lib/less.pm For "use less" lib/less.t See if less support works lib/lib_pm.PL For "use lib", produces lib/lib.pm diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 804cff1..d58872d 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -2070,6 +2070,7 @@ package Maintainers; ext/Hash-Util/ ext/I18N-Langinfo/ ext/IPC-Open2/ + ext/IPC-Open3/ ext/NDBM_File/ ext/ODBM_File/ ext/Opcode/ @@ -2119,7 +2120,6 @@ package Maintainers; lib/FindBin.{pm,t} lib/Getopt/Std.{pm,t} lib/I18N/Collate.{pm,t} - lib/IPC/Open3.{pm,t} lib/Internals.t lib/Net/hostent.{pm,t} lib/Net/netent.{pm,t} diff --git a/ext/.gitignore b/ext/.gitignore index 130ded1..b1c033a 100644 --- a/ext/.gitignore +++ b/ext/.gitignore @@ -27,6 +27,7 @@ ppport.h /Hash-Util-FieldHash/Makefile.PL /I18N-LangTags/Makefile.PL /IPC-Open2/Makefile.PL +/IPC-Open3/Makefile.PL /Math-BigInt-FastCalc/Makefile.PL /mro/Makefile.PL /Net-Ping/Makefile.PL diff --git a/lib/IPC/Open3.pm b/ext/IPC-Open3/lib/IPC/Open3.pm similarity index 100% rename from lib/IPC/Open3.pm rename to ext/IPC-Open3/lib/IPC/Open3.pm diff --git a/lib/IPC/Open3.t b/ext/IPC-Open3/t/IPC-Open3.t similarity index 100% rename from lib/IPC/Open3.t rename to ext/IPC-Open3/t/IPC-Open3.t diff --git a/lib/.gitignore b/lib/.gitignore index 97ce0cc..63b6eac 100644 --- a/lib/.gitignore +++ b/lib/.gitignore @@ -46,6 +46,7 @@ /IO/Uncompress /IPC/Msg.pm /IPC/Open2.pm +/IPC/Open3.pm /IPC/Semaphore.pm /IPC/SharedMem.pm /IPC/SysV.pm