NOTICE: This package has been removed from pkgsrc

./devel/p5-IO, Perl module for various IO modules

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ]


Branch: CURRENT, Version: 1.2500nb4, Package name: p5-IO-1.2500nb4, Maintainer: pkgsrc-users

IO provides a simple mechanism to load several of the IO modules
in one go. The IO modules belonging to the core are:

IO::Handle
IO::Seekable
IO::File
IO::Pipe
IO::Socket
IO::Dir
IO::Select
IO::Poll

Note that these modules should be loaded via

use IO qw(Handle File); # etc.

and not via the deprecated method

use IO; # DEPRECATED


Required to run:
[lang/perl5]

Master sites: (Expand)

SHA1: 3eb700e772f5485514b0402f7ace49d41e7cc071
RMD160: 29b0d8eaafe87dfeb021862dfe97df58ebb833bb
Filesize: 51.475 KB

Version history: (Expand)


CVS history: (Expand)


   2013-05-31 14:42:58 by Thomas Klausner | Files touched by this commit (2880)
Log message:
Bump all packages for perl-5.18, that
a) refer 'perl' in their Makefile, or
b) have a directory name of p5-*, or
c) have any dependency on any p5-* package

Like last time, where this caused no complaints.
   2012-10-31 12:19:55 by Aleksej Saushev | Files touched by this commit (1460)
Log message:
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.
   2012-10-03 23:59:10 by Thomas Klausner | Files touched by this commit (2798)
Log message:
Bump all packages that use perl, or depend on a p5-* package, or
are called p5-*.

I hope that's all of them.
   2011-08-14 14:26:51 by OBATA Akio | Files touched by this commit (406)
Log message:
Revision bump after updating perl5 to 5.14.1.
   2010-08-21 18:37:14 by Stoned Elipot | Files touched by this commit (1724) | Package updated
Log message:
Bump the PKGREVISION for all packages which depend directly on perl,
to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1.

The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=..."), minus the packages updated after
the perl package update.

sno@ was right after all, obache@ kindly asked and he@ led the
way. Thanks!
   2009-05-18 08:54:45 by Jens Rehsack | Files touched by this commit (2)
Log message:
pkgsrc changes:
  - updating package for various p5 IO modules from 1.2301 to 1.2500

upstream changes (since 1.23):
IO 1.25 -- Wed May 13 18:37:33 CDT 2009
  * Fix test warnings in io_dir
  * skip tests known to cause a segfault 5.10.0

IO 1.24 -- Mon May 11 14:15:51 CDT 2009

  * Make Makefile.PL usable by core and CPAN
  * Reorganize files to be under lib/ directory structure now matches core perl
  * Update with following changes made to core perl distribution
  * Silence Win32 compiler warning in IO.xs
  * Make non-blocking mode work on Windows in IO::Socket::INET
  * fix some missing parts of IO::Handle pod
  * Implement IO::Handle::say the same way as the builtin say().
  * Undo io_linenum.t part of #34148. It was io_multihomed.t that I meant (my \ 
mistake), and that is now covered by #34155.
  * watchdog() some IO tests
  * Some more missing isGV_with_GP()s
  * IO::Dir destructor
  * IO::Socket::INET unnecessarily resolves "udp"
  * IO::Handle->say should ignore $\ (bug #49266)
  * consting IO.xs
  * Net::SMTP can't send large messages with bleadperl
  * Fix for IO::Socket send method
  * Fixes for the test suite on OS/2
  * Silence VC++ compiler warnings
  * IO::Socket's IO.xs fails to compile
  * IO::Socket::connect returns wrong errno on timeout
  * Coverity correctly reports that gv might (just) be NULL. So don't \ 
derefernece it if it is.
  * Simplify tests for fork() capabilities
  * Fix syntax error in io_pipe test
  * Making IO::Socket pass test on Win32
  * ext/IO/t/io_unix.t
   2008-10-19 21:19:25 by Havard Eidnes | Files touched by this commit (1179)
Log message:
Bump the PKGREVISION for all packages which depend directly on perl,
to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0.

The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=...").
   2008-09-12 14:47:32 by Havard Eidnes | Files touched by this commit (3) | Imported package
Log message:
Import p5-IO version 1.2301.

IO provides a simple mechanism to load several of the IO modules
in one go. The IO modules belonging to the core are:

      IO::Handle
      IO::Seekable
      IO::File
      IO::Pipe
      IO::Socket
      IO::Dir
      IO::Select
      IO::Poll

Note that these modules should be loaded via

      use IO qw(Handle File); # etc.

and not via the deprecated method

      use IO;  # DEPRECATED