summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MANIFEST70
-rwxr-xr-xPorting/Maintainers.pl2
-rw-r--r--dist/IO/.gitignore (renamed from ext/IO/.gitignore)0
-rw-r--r--dist/IO/ChangeLog (renamed from ext/IO/ChangeLog)0
-rw-r--r--dist/IO/IO.pm (renamed from ext/IO/IO.pm)0
-rw-r--r--dist/IO/IO.xs (renamed from ext/IO/IO.xs)0
-rw-r--r--dist/IO/Makefile.PL (renamed from ext/IO/Makefile.PL)0
-rw-r--r--dist/IO/README (renamed from ext/IO/README)0
-rw-r--r--dist/IO/hints/sco.pl (renamed from ext/IO/hints/sco.pl)0
-rw-r--r--dist/IO/lib/IO/Dir.pm (renamed from ext/IO/lib/IO/Dir.pm)0
-rw-r--r--dist/IO/lib/IO/File.pm (renamed from ext/IO/lib/IO/File.pm)0
-rw-r--r--dist/IO/lib/IO/Handle.pm (renamed from ext/IO/lib/IO/Handle.pm)0
-rw-r--r--dist/IO/lib/IO/Pipe.pm (renamed from ext/IO/lib/IO/Pipe.pm)0
-rw-r--r--dist/IO/lib/IO/Poll.pm (renamed from ext/IO/lib/IO/Poll.pm)0
-rw-r--r--dist/IO/lib/IO/Seekable.pm (renamed from ext/IO/lib/IO/Seekable.pm)0
-rw-r--r--dist/IO/lib/IO/Select.pm (renamed from ext/IO/lib/IO/Select.pm)0
-rw-r--r--dist/IO/lib/IO/Socket.pm (renamed from ext/IO/lib/IO/Socket.pm)0
-rw-r--r--dist/IO/lib/IO/Socket/INET.pm (renamed from ext/IO/lib/IO/Socket/INET.pm)0
-rw-r--r--dist/IO/lib/IO/Socket/UNIX.pm (renamed from ext/IO/lib/IO/Socket/UNIX.pm)0
-rw-r--r--dist/IO/poll.c (renamed from ext/IO/poll.c)0
-rw-r--r--dist/IO/poll.h (renamed from ext/IO/poll.h)0
-rw-r--r--dist/IO/t/IO.t (renamed from ext/IO/t/IO.t)0
-rw-r--r--dist/IO/t/io_const.t (renamed from ext/IO/t/io_const.t)0
-rw-r--r--dist/IO/t/io_dir.t (renamed from ext/IO/t/io_dir.t)0
-rw-r--r--dist/IO/t/io_dup.t (renamed from ext/IO/t/io_dup.t)0
-rw-r--r--dist/IO/t/io_file.t (renamed from ext/IO/t/io_file.t)0
-rw-r--r--dist/IO/t/io_linenum.t (renamed from ext/IO/t/io_linenum.t)0
-rw-r--r--dist/IO/t/io_multihomed.t (renamed from ext/IO/t/io_multihomed.t)0
-rw-r--r--dist/IO/t/io_pipe.t (renamed from ext/IO/t/io_pipe.t)0
-rw-r--r--dist/IO/t/io_poll.t (renamed from ext/IO/t/io_poll.t)0
-rw-r--r--dist/IO/t/io_sel.t (renamed from ext/IO/t/io_sel.t)0
-rw-r--r--dist/IO/t/io_sock.t (renamed from ext/IO/t/io_sock.t)0
-rw-r--r--dist/IO/t/io_taint.t (renamed from ext/IO/t/io_taint.t)0
-rw-r--r--dist/IO/t/io_tell.t (renamed from ext/IO/t/io_tell.t)0
-rw-r--r--dist/IO/t/io_udp.t (renamed from ext/IO/t/io_udp.t)0
-rw-r--r--dist/IO/t/io_unix.t (renamed from ext/IO/t/io_unix.t)0
-rw-r--r--dist/IO/t/io_utf8.t (renamed from ext/IO/t/io_utf8.t)0
-rw-r--r--dist/IO/t/io_xs.t (renamed from ext/IO/t/io_xs.t)0
38 files changed, 36 insertions, 36 deletions
diff --git a/MANIFEST b/MANIFEST
index c2f3a30b88..34394dea61 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -1080,6 +1080,41 @@ dist/I18N-LangTags/t/20_locales.t See whether I18N::LangTags works
dist/I18N-LangTags/t/50_super.t See whether I18N::LangTags works
dist/I18N-LangTags/t/55_supers_strict.t See whether I18N::LangTags works
dist/I18N-LangTags/t/80_all_env.t See whether I18N::LangTags works
+dist/IO/ChangeLog IO perl module change log
+dist/IO/hints/sco.pl Hint for IO for named architecture
+dist/IO/IO.pm Top-level interface to IO::* classes
+dist/IO/IO.xs IO extension external subroutines
+dist/IO/lib/IO/Dir.pm IO directory reading package
+dist/IO/lib/IO/File.pm IO file handle package
+dist/IO/lib/IO/Handle.pm IO base handle package
+dist/IO/lib/IO/Pipe.pm IO pipe package
+dist/IO/lib/IO/Poll.pm IO system poll() interface
+dist/IO/lib/IO/Seekable.pm IO methods for seekable handles
+dist/IO/lib/IO/Select.pm IO system select() interface
+dist/IO/lib/IO/Socket/INET.pm IO INET specific socket methods
+dist/IO/lib/IO/Socket.pm IO socket handle package
+dist/IO/lib/IO/Socket/UNIX.pm IO UNIX specific socket methods
+dist/IO/Makefile.PL IO extension makefile writer
+dist/IO/poll.c IO poll() emulation using select()
+dist/IO/poll.h IO poll() emulation using select()
+dist/IO/README IO extension maintenance notice
+dist/IO/t/io_const.t See if constants from IO work
+dist/IO/t/io_dir.t See if directory-related methods from IO work
+dist/IO/t/io_dup.t See if dup()-related methods from IO work
+dist/IO/t/io_file.t See if binmode()-related methods on IO::File work
+dist/IO/t/io_linenum.t See if I/O line numbers are tracked correctly
+dist/IO/t/io_multihomed.t See if INET sockets work with multi-homed hosts
+dist/IO/t/io_pipe.t See if pipe()-related methods from IO work
+dist/IO/t/io_poll.t See if poll()-related methods from IO work
+dist/IO/t/io_sel.t See if select()-related methods from IO work
+dist/IO/t/io_sock.t See if INET socket-related methods from IO work
+dist/IO/t/IO.t See if IO works
+dist/IO/t/io_taint.t See if the untaint method from IO works
+dist/IO/t/io_tell.t See if seek()/tell()-related methods from IO work
+dist/IO/t/io_udp.t See if UDP socket-related methods from IO work
+dist/IO/t/io_unix.t See if UNIX socket-related methods from IO work
+dist/IO/t/io_utf8.t See if perlio opens work
+dist/IO/t/io_xs.t See if XSUB methods from IO work
djgpp/config.over DOS/DJGPP port
djgpp/configure.bat DOS/DJGPP port
djgpp/djgpp.c DOS/DJGPP port
@@ -1613,7 +1648,6 @@ ext/I18N-Langinfo/Makefile.PL I18N::Langinfo
ext/I18N-Langinfo/t/Langinfo.t See whether I18N::Langinfo works
ext/if/if.pm For "use if"
ext/if/t/if.t Tests for "use if"
-ext/IO/ChangeLog IO perl module change log
ext/IO-Compress/Changes IO::Compress
ext/IO-Compress/examples/compress-zlib/filtdef IO::Compress
ext/IO-Compress/examples/compress-zlib/filtinf IO::Compress
@@ -1757,40 +1791,6 @@ ext/IO-Compress/t/cz-06gzsetp.t IO::Compress
ext/IO-Compress/t/cz-08encoding.t IO::Compress
ext/IO-Compress/t/cz-14gzopen.t IO::Compress
ext/IO-Compress/t/globmapper.t IO::Compress
-ext/IO/hints/sco.pl Hint for IO for named architecture
-ext/IO/IO.pm Top-level interface to IO::* classes
-ext/IO/IO.xs IO extension external subroutines
-ext/IO/lib/IO/Dir.pm IO directory reading package
-ext/IO/lib/IO/File.pm IO file handle package
-ext/IO/lib/IO/Handle.pm IO base handle package
-ext/IO/lib/IO/Pipe.pm IO pipe package
-ext/IO/lib/IO/Poll.pm IO system poll() interface
-ext/IO/lib/IO/Seekable.pm IO methods for seekable handles
-ext/IO/lib/IO/Select.pm IO system select() interface
-ext/IO/lib/IO/Socket/INET.pm IO INET specific socket methods
-ext/IO/lib/IO/Socket.pm IO socket handle package
-ext/IO/lib/IO/Socket/UNIX.pm IO UNIX specific socket methods
-ext/IO/Makefile.PL IO extension makefile writer
-ext/IO/poll.c IO poll() emulation using select()
-ext/IO/poll.h IO poll() emulation using select()
-ext/IO/README IO extension maintenance notice
-ext/IO/t/io_const.t See if constants from IO work
-ext/IO/t/io_dir.t See if directory-related methods from IO work
-ext/IO/t/io_dup.t See if dup()-related methods from IO work
-ext/IO/t/io_file.t See if binmode()-related methods on IO::File work
-ext/IO/t/io_linenum.t See if I/O line numbers are tracked correctly
-ext/IO/t/io_multihomed.t See if INET sockets work with multi-homed hosts
-ext/IO/t/io_pipe.t See if pipe()-related methods from IO work
-ext/IO/t/io_poll.t See if poll()-related methods from IO work
-ext/IO/t/io_sel.t See if select()-related methods from IO work
-ext/IO/t/io_sock.t See if INET socket-related methods from IO work
-ext/IO/t/IO.t See if IO works
-ext/IO/t/io_taint.t See if the untaint method from IO works
-ext/IO/t/io_tell.t See if seek()/tell()-related methods from IO work
-ext/IO/t/io_udp.t See if UDP socket-related methods from IO work
-ext/IO/t/io_unix.t See if UNIX socket-related methods from IO work
-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/IO-Zlib/t/basic.t Tests for IO::Zlib
ext/IO-Zlib/t/external.t Tests for IO::Zlib
ext/IO-Zlib/t/getc.t Tests for IO::Zlib
diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl
index 8ce849f0c3..442be86dc5 100755
--- a/Porting/Maintainers.pl
+++ b/Porting/Maintainers.pl
@@ -771,7 +771,7 @@ use File::Glob qw(:case);
{
'MAINTAINER' => 'p5p',
'DISTRIBUTION' => 'GBARR/IO-1.25.tar.gz',
- 'FILES' => q[ext/IO/],
+ 'FILES' => q[dist/IO/],
'EXCLUDED' => [ qw{t/test.pl}, ],
'CPAN' => 1,
'UPSTREAM' => 'blead',
diff --git a/ext/IO/.gitignore b/dist/IO/.gitignore
index 577c726243..577c726243 100644
--- a/ext/IO/.gitignore
+++ b/dist/IO/.gitignore
diff --git a/ext/IO/ChangeLog b/dist/IO/ChangeLog
index 6913c646e1..6913c646e1 100644
--- a/ext/IO/ChangeLog
+++ b/dist/IO/ChangeLog
diff --git a/ext/IO/IO.pm b/dist/IO/IO.pm
index a72e2243d7..a72e2243d7 100644
--- a/ext/IO/IO.pm
+++ b/dist/IO/IO.pm
diff --git a/ext/IO/IO.xs b/dist/IO/IO.xs
index d3dff557a2..d3dff557a2 100644
--- a/ext/IO/IO.xs
+++ b/dist/IO/IO.xs
diff --git a/ext/IO/Makefile.PL b/dist/IO/Makefile.PL
index 2159f43e49..2159f43e49 100644
--- a/ext/IO/Makefile.PL
+++ b/dist/IO/Makefile.PL
diff --git a/ext/IO/README b/dist/IO/README
index e4d9dfad55..e4d9dfad55 100644
--- a/ext/IO/README
+++ b/dist/IO/README
diff --git a/ext/IO/hints/sco.pl b/dist/IO/hints/sco.pl
index ddcf1551d1..ddcf1551d1 100644
--- a/ext/IO/hints/sco.pl
+++ b/dist/IO/hints/sco.pl
diff --git a/ext/IO/lib/IO/Dir.pm b/dist/IO/lib/IO/Dir.pm
index cce392c2ce..cce392c2ce 100644
--- a/ext/IO/lib/IO/Dir.pm
+++ b/dist/IO/lib/IO/Dir.pm
diff --git a/ext/IO/lib/IO/File.pm b/dist/IO/lib/IO/File.pm
index d33d090d0b..d33d090d0b 100644
--- a/ext/IO/lib/IO/File.pm
+++ b/dist/IO/lib/IO/File.pm
diff --git a/ext/IO/lib/IO/Handle.pm b/dist/IO/lib/IO/Handle.pm
index 2f1f1b423b..2f1f1b423b 100644
--- a/ext/IO/lib/IO/Handle.pm
+++ b/dist/IO/lib/IO/Handle.pm
diff --git a/ext/IO/lib/IO/Pipe.pm b/dist/IO/lib/IO/Pipe.pm
index 827cc48bfc..827cc48bfc 100644
--- a/ext/IO/lib/IO/Pipe.pm
+++ b/dist/IO/lib/IO/Pipe.pm
diff --git a/ext/IO/lib/IO/Poll.pm b/dist/IO/lib/IO/Poll.pm
index e7fb013506..e7fb013506 100644
--- a/ext/IO/lib/IO/Poll.pm
+++ b/dist/IO/lib/IO/Poll.pm
diff --git a/ext/IO/lib/IO/Seekable.pm b/dist/IO/lib/IO/Seekable.pm
index db1effda28..db1effda28 100644
--- a/ext/IO/lib/IO/Seekable.pm
+++ b/dist/IO/lib/IO/Seekable.pm
diff --git a/ext/IO/lib/IO/Select.pm b/dist/IO/lib/IO/Select.pm
index fc05fe70e9..fc05fe70e9 100644
--- a/ext/IO/lib/IO/Select.pm
+++ b/dist/IO/lib/IO/Select.pm
diff --git a/ext/IO/lib/IO/Socket.pm b/dist/IO/lib/IO/Socket.pm
index 9938c7807a..9938c7807a 100644
--- a/ext/IO/lib/IO/Socket.pm
+++ b/dist/IO/lib/IO/Socket.pm
diff --git a/ext/IO/lib/IO/Socket/INET.pm b/dist/IO/lib/IO/Socket/INET.pm
index 2f0e5d1d7a..2f0e5d1d7a 100644
--- a/ext/IO/lib/IO/Socket/INET.pm
+++ b/dist/IO/lib/IO/Socket/INET.pm
diff --git a/ext/IO/lib/IO/Socket/UNIX.pm b/dist/IO/lib/IO/Socket/UNIX.pm
index baa092ba1f..baa092ba1f 100644
--- a/ext/IO/lib/IO/Socket/UNIX.pm
+++ b/dist/IO/lib/IO/Socket/UNIX.pm
diff --git a/ext/IO/poll.c b/dist/IO/poll.c
index 9d39d57f2f..9d39d57f2f 100644
--- a/ext/IO/poll.c
+++ b/dist/IO/poll.c
diff --git a/ext/IO/poll.h b/dist/IO/poll.h
index 634bcddd15..634bcddd15 100644
--- a/ext/IO/poll.h
+++ b/dist/IO/poll.h
diff --git a/ext/IO/t/IO.t b/dist/IO/t/IO.t
index effd414a4c..effd414a4c 100644
--- a/ext/IO/t/IO.t
+++ b/dist/IO/t/IO.t
diff --git a/ext/IO/t/io_const.t b/dist/IO/t/io_const.t
index f6f83c1956..f6f83c1956 100644
--- a/ext/IO/t/io_const.t
+++ b/dist/IO/t/io_const.t
diff --git a/ext/IO/t/io_dir.t b/dist/IO/t/io_dir.t
index 5472daa9b9..5472daa9b9 100644
--- a/ext/IO/t/io_dir.t
+++ b/dist/IO/t/io_dir.t
diff --git a/ext/IO/t/io_dup.t b/dist/IO/t/io_dup.t
index 6afc96a272..6afc96a272 100644
--- a/ext/IO/t/io_dup.t
+++ b/dist/IO/t/io_dup.t
diff --git a/ext/IO/t/io_file.t b/dist/IO/t/io_file.t
index 1cf60f5441..1cf60f5441 100644
--- a/ext/IO/t/io_file.t
+++ b/dist/IO/t/io_file.t
diff --git a/ext/IO/t/io_linenum.t b/dist/IO/t/io_linenum.t
index 259f73631a..259f73631a 100644
--- a/ext/IO/t/io_linenum.t
+++ b/dist/IO/t/io_linenum.t
diff --git a/ext/IO/t/io_multihomed.t b/dist/IO/t/io_multihomed.t
index f1bd5b9df9..f1bd5b9df9 100644
--- a/ext/IO/t/io_multihomed.t
+++ b/dist/IO/t/io_multihomed.t
diff --git a/ext/IO/t/io_pipe.t b/dist/IO/t/io_pipe.t
index b7897bb2df..b7897bb2df 100644
--- a/ext/IO/t/io_pipe.t
+++ b/dist/IO/t/io_pipe.t
diff --git a/ext/IO/t/io_poll.t b/dist/IO/t/io_poll.t
index 364d346ace..364d346ace 100644
--- a/ext/IO/t/io_poll.t
+++ b/dist/IO/t/io_poll.t
diff --git a/ext/IO/t/io_sel.t b/dist/IO/t/io_sel.t
index 260ca439e7..260ca439e7 100644
--- a/ext/IO/t/io_sel.t
+++ b/dist/IO/t/io_sel.t
diff --git a/ext/IO/t/io_sock.t b/dist/IO/t/io_sock.t
index 38aefeeb53..38aefeeb53 100644
--- a/ext/IO/t/io_sock.t
+++ b/dist/IO/t/io_sock.t
diff --git a/ext/IO/t/io_taint.t b/dist/IO/t/io_taint.t
index 3cbe30345f..3cbe30345f 100644
--- a/ext/IO/t/io_taint.t
+++ b/dist/IO/t/io_taint.t
diff --git a/ext/IO/t/io_tell.t b/dist/IO/t/io_tell.t
index 3f8ad30b9f..3f8ad30b9f 100644
--- a/ext/IO/t/io_tell.t
+++ b/dist/IO/t/io_tell.t
diff --git a/ext/IO/t/io_udp.t b/dist/IO/t/io_udp.t
index 6b139dd83f..6b139dd83f 100644
--- a/ext/IO/t/io_udp.t
+++ b/dist/IO/t/io_udp.t
diff --git a/ext/IO/t/io_unix.t b/dist/IO/t/io_unix.t
index 61ba3635f8..61ba3635f8 100644
--- a/ext/IO/t/io_unix.t
+++ b/dist/IO/t/io_unix.t
diff --git a/ext/IO/t/io_utf8.t b/dist/IO/t/io_utf8.t
index 53c209d4b8..53c209d4b8 100644
--- a/ext/IO/t/io_utf8.t
+++ b/dist/IO/t/io_utf8.t
diff --git a/ext/IO/t/io_xs.t b/dist/IO/t/io_xs.t
index 585eed84b2..585eed84b2 100644
--- a/ext/IO/t/io_xs.t
+++ b/dist/IO/t/io_xs.t