From: Nicholas Clark Date: Thu, 24 Sep 2009 09:30:56 +0000 (+0100) Subject: Move IPC-SysV from ext/ to cpan/ X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5aacae8537a14b9d6238ea441c002451d7abea35;p=p5sagit%2Fp5-mst-13.2.git Move IPC-SysV from ext/ to cpan/ (Also XS, skipped on Win32 and VMS) --- diff --git a/MANIFEST b/MANIFEST index bbc1de1..1192f02 100644 --- a/MANIFEST +++ b/MANIFEST @@ -17,6 +17,26 @@ configure.com Configure-equivalent for VMS configure.gnu Crude emulation of GNU configure cop.h Control operator header Copying The GNU General Public License +cpan/IPC-SysV/Changes IPC::SysV changes +cpan/IPC-SysV/hints/cygwin.pl Hint for IPC::SysV for named architecture +cpan/IPC-SysV/hints/next_3.pl Hint for IPC::SysV for named architecture +cpan/IPC-SysV/lib/IPC/Msg.pm IPC::SysV extension Perl module +cpan/IPC-SysV/lib/IPC/Semaphore.pm IPC::SysV extension Perl module +cpan/IPC-SysV/lib/IPC/SharedMem.pm IPC::SysV extension Perl module +cpan/IPC-SysV/lib/IPC/SysV.pm IPC::SysV extension Perl module +cpan/IPC-SysV/Makefile.PL IPC::SysV makefile writer +cpan/IPC-SysV/MANIFEST.SKIP IPC::SysV manifest skip specs +cpan/IPC-SysV/README IPC::SysV README +cpan/IPC-SysV/regen.pl IPC::SysV file regeneration script +cpan/IPC-SysV/SysV.xs IPC::SysV extension Perl module +cpan/IPC-SysV/t/ipcsysv.t IPC::SysV test file +cpan/IPC-SysV/t/msg.t IPC::SysV test file +cpan/IPC-SysV/TODO IPC::SysV todo file +cpan/IPC-SysV/t/podcov.t IPC::SysV test file +cpan/IPC-SysV/t/pod.t IPC::SysV test file +cpan/IPC-SysV/t/sem.t IPC::SysV test file +cpan/IPC-SysV/t/shm.t IPC::SysV test file +cpan/IPC-SysV/typemap IPC::SysV typemap cpan/Sys-Syslog/Changes Changlog for Sys::Syslog cpan/Sys-Syslog/fallback/const-c.inc Sys::Syslog constants fallback file cpan/Sys-Syslog/fallback/const-xs.inc Sys::Syslog constants fallback file @@ -1566,26 +1586,6 @@ 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 -ext/IPC-SysV/lib/IPC/Msg.pm IPC::SysV extension Perl module -ext/IPC-SysV/lib/IPC/Semaphore.pm IPC::SysV extension Perl module -ext/IPC-SysV/lib/IPC/SharedMem.pm IPC::SysV extension Perl module -ext/IPC-SysV/lib/IPC/SysV.pm IPC::SysV extension Perl module -ext/IPC-SysV/Makefile.PL IPC::SysV makefile writer -ext/IPC-SysV/MANIFEST.SKIP IPC::SysV manifest skip specs -ext/IPC-SysV/README IPC::SysV README -ext/IPC-SysV/regen.pl IPC::SysV file regeneration script -ext/IPC-SysV/SysV.xs IPC::SysV extension Perl module -ext/IPC-SysV/t/ipcsysv.t IPC::SysV test file -ext/IPC-SysV/t/msg.t IPC::SysV test file -ext/IPC-SysV/TODO IPC::SysV todo file -ext/IPC-SysV/t/podcov.t IPC::SysV test file -ext/IPC-SysV/t/pod.t IPC::SysV test file -ext/IPC-SysV/t/sem.t IPC::SysV test file -ext/IPC-SysV/t/shm.t IPC::SysV test file -ext/IPC-SysV/typemap IPC::SysV typemap ext/lib/lib_pm.PL For "use lib", produces lib/lib.pm ext/lib/Makefile.PL ext/libnet/Changes libnet diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 1019ad2..a74b91f 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -811,7 +811,7 @@ use File::Glob qw(:case); { 'MAINTAINER' => 'mhx', 'DISTRIBUTION' => 'MHX/IPC-SysV-2.01.tar.gz', - 'FILES' => q[ext/IPC-SysV], + 'FILES' => q[cpan/IPC-SysV], 'EXCLUDED' => [ qw{const-c.inc const-xs.inc} ], 'CPAN' => 1, 'UPSTREAM' => 'cpan', diff --git a/ext/IPC-SysV/.gitignore b/cpan/IPC-SysV/.gitignore similarity index 100% rename from ext/IPC-SysV/.gitignore rename to cpan/IPC-SysV/.gitignore diff --git a/ext/IPC-SysV/Changes b/cpan/IPC-SysV/Changes similarity index 100% rename from ext/IPC-SysV/Changes rename to cpan/IPC-SysV/Changes diff --git a/ext/IPC-SysV/MANIFEST.SKIP b/cpan/IPC-SysV/MANIFEST.SKIP similarity index 100% rename from ext/IPC-SysV/MANIFEST.SKIP rename to cpan/IPC-SysV/MANIFEST.SKIP diff --git a/ext/IPC-SysV/Makefile.PL b/cpan/IPC-SysV/Makefile.PL similarity index 100% rename from ext/IPC-SysV/Makefile.PL rename to cpan/IPC-SysV/Makefile.PL diff --git a/ext/IPC-SysV/README b/cpan/IPC-SysV/README similarity index 100% rename from ext/IPC-SysV/README rename to cpan/IPC-SysV/README diff --git a/ext/IPC-SysV/SysV.xs b/cpan/IPC-SysV/SysV.xs similarity index 100% rename from ext/IPC-SysV/SysV.xs rename to cpan/IPC-SysV/SysV.xs diff --git a/ext/IPC-SysV/TODO b/cpan/IPC-SysV/TODO similarity index 100% rename from ext/IPC-SysV/TODO rename to cpan/IPC-SysV/TODO diff --git a/ext/IPC-SysV/hints/cygwin.pl b/cpan/IPC-SysV/hints/cygwin.pl similarity index 100% rename from ext/IPC-SysV/hints/cygwin.pl rename to cpan/IPC-SysV/hints/cygwin.pl diff --git a/ext/IPC-SysV/hints/next_3.pl b/cpan/IPC-SysV/hints/next_3.pl similarity index 100% rename from ext/IPC-SysV/hints/next_3.pl rename to cpan/IPC-SysV/hints/next_3.pl diff --git a/ext/IPC-SysV/lib/IPC/Msg.pm b/cpan/IPC-SysV/lib/IPC/Msg.pm similarity index 100% rename from ext/IPC-SysV/lib/IPC/Msg.pm rename to cpan/IPC-SysV/lib/IPC/Msg.pm diff --git a/ext/IPC-SysV/lib/IPC/Semaphore.pm b/cpan/IPC-SysV/lib/IPC/Semaphore.pm similarity index 100% rename from ext/IPC-SysV/lib/IPC/Semaphore.pm rename to cpan/IPC-SysV/lib/IPC/Semaphore.pm diff --git a/ext/IPC-SysV/lib/IPC/SharedMem.pm b/cpan/IPC-SysV/lib/IPC/SharedMem.pm similarity index 100% rename from ext/IPC-SysV/lib/IPC/SharedMem.pm rename to cpan/IPC-SysV/lib/IPC/SharedMem.pm diff --git a/ext/IPC-SysV/lib/IPC/SysV.pm b/cpan/IPC-SysV/lib/IPC/SysV.pm similarity index 100% rename from ext/IPC-SysV/lib/IPC/SysV.pm rename to cpan/IPC-SysV/lib/IPC/SysV.pm diff --git a/ext/IPC-SysV/regen.pl b/cpan/IPC-SysV/regen.pl similarity index 100% rename from ext/IPC-SysV/regen.pl rename to cpan/IPC-SysV/regen.pl diff --git a/ext/IPC-SysV/t/ipcsysv.t b/cpan/IPC-SysV/t/ipcsysv.t similarity index 100% rename from ext/IPC-SysV/t/ipcsysv.t rename to cpan/IPC-SysV/t/ipcsysv.t diff --git a/ext/IPC-SysV/t/msg.t b/cpan/IPC-SysV/t/msg.t similarity index 100% rename from ext/IPC-SysV/t/msg.t rename to cpan/IPC-SysV/t/msg.t diff --git a/ext/IPC-SysV/t/pod.t b/cpan/IPC-SysV/t/pod.t similarity index 100% rename from ext/IPC-SysV/t/pod.t rename to cpan/IPC-SysV/t/pod.t diff --git a/ext/IPC-SysV/t/podcov.t b/cpan/IPC-SysV/t/podcov.t similarity index 100% rename from ext/IPC-SysV/t/podcov.t rename to cpan/IPC-SysV/t/podcov.t diff --git a/ext/IPC-SysV/t/sem.t b/cpan/IPC-SysV/t/sem.t similarity index 100% rename from ext/IPC-SysV/t/sem.t rename to cpan/IPC-SysV/t/sem.t diff --git a/ext/IPC-SysV/t/shm.t b/cpan/IPC-SysV/t/shm.t similarity index 100% rename from ext/IPC-SysV/t/shm.t rename to cpan/IPC-SysV/t/shm.t diff --git a/ext/IPC-SysV/typemap b/cpan/IPC-SysV/typemap similarity index 100% rename from ext/IPC-SysV/typemap rename to cpan/IPC-SysV/typemap