r25507 - in /branches/upstream/libio-multiplex-perl/current: Changes MANIFEST META.yml lib/IO/Multiplex.pm

ansgar-guest at users.alioth.debian.org ansgar-guest at users.alioth.debian.org
Sun Sep 21 20:57:03 UTC 2008


Author: ansgar-guest
Date: Sun Sep 21 20:57:00 2008
New Revision: 25507

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=25507
Log:
[svn-upgrade] Integrating new upstream version, libio-multiplex-perl (1.10)

Added:
    branches/upstream/libio-multiplex-perl/current/META.yml
Modified:
    branches/upstream/libio-multiplex-perl/current/Changes
    branches/upstream/libio-multiplex-perl/current/MANIFEST
    branches/upstream/libio-multiplex-perl/current/lib/IO/Multiplex.pm

Modified: branches/upstream/libio-multiplex-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libio-multiplex-perl/current/Changes?rev=25507&op=diff
==============================================================================
--- branches/upstream/libio-multiplex-perl/current/Changes (original)
+++ branches/upstream/libio-multiplex-perl/current/Changes Sun Sep 21 20:57:00 2008
@@ -1,4 +1,8 @@
 Revision history for Perl extension IO::Multiplex.
+
+1.10  Mon Sep 15 2008
+	- Update Copyright and License.
+	- Buttwag around minor Windows deficiencies.
 
 1.09  Sat Mar 03 2007
 	- Detect readability for special IO::Socket::SSL

Modified: branches/upstream/libio-multiplex-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libio-multiplex-perl/current/MANIFEST?rev=25507&op=diff
==============================================================================
--- branches/upstream/libio-multiplex-perl/current/MANIFEST (original)
+++ branches/upstream/libio-multiplex-perl/current/MANIFEST Sun Sep 21 20:57:00 2008
@@ -9,3 +9,4 @@
 t/110_test.t
 t/110_ntest.t
 t/200_udp.t
+META.yml                                 Module meta-data (added by MakeMaker)

Added: branches/upstream/libio-multiplex-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libio-multiplex-perl/current/META.yml?rev=25507&op=file
==============================================================================
--- branches/upstream/libio-multiplex-perl/current/META.yml (added)
+++ branches/upstream/libio-multiplex-perl/current/META.yml Sun Sep 21 20:57:00 2008
@@ -1,0 +1,11 @@
+# http://module-build.sourceforge.net/META-spec.html
+#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
+name:         IO-Multiplex
+version:      1.10
+version_from: lib/IO/Multiplex.pm
+installdirs:  site
+requires:
+    IO::Socket:                    0
+
+distribution_type: module
+generated_by: ExtUtils::MakeMaker version 6.30

Modified: branches/upstream/libio-multiplex-perl/current/lib/IO/Multiplex.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libio-multiplex-perl/current/lib/IO/Multiplex.pm?rev=25507&op=diff
==============================================================================
--- branches/upstream/libio-multiplex-perl/current/lib/IO/Multiplex.pm (original)
+++ branches/upstream/libio-multiplex-perl/current/lib/IO/Multiplex.pm Sun Sep 21 20:57:00 2008
@@ -269,8 +269,9 @@
 use IO::Handle;
 use Fcntl;
 use Carp qw(carp);
-
-$VERSION = '1.09';
+use constant IsWin => ($^O =~ /Win32/i);
+
+$VERSION = '1.10';
 
 BEGIN {
     eval {
@@ -928,6 +929,7 @@
 
 sub nonblock
 {
+    return 1 if IsWin;
     my $fh = shift;
     my $flags = fcntl($fh, F_GETFL, 0)
         or die "fcntl F_GETFL: $!\n";
@@ -1081,10 +1083,10 @@
 
 Copyright 1999 Bruce J Keeler <bruce at gridpoint.com>
 
-Copyright 2001-2003 Rob Brown <bbb at cpan.org>
-
-Released under the terms of the Artistic License.
-
-$Id: Multiplex.pm,v 1.33 2007/03/04 05:39:16 rob Exp $
-
-=cut
+Copyright 2001-2008 Rob Brown <bbb at cpan.org>
+
+Released under the same terms as Perl itself.
+
+$Id: Multiplex.pm,v 1.36 2008/09/15 08:17:50 rob Exp $
+
+=cut




More information about the Pkg-perl-cvs-commits mailing list