r4727 - in /packages/libdanga-socket-perl/branches/upstream/current: CHANGES META.yml Socket.pm

eloy at users.alioth.debian.org eloy at users.alioth.debian.org
Thu Jan 18 13:13:03 CET 2007


Author: eloy
Date: Thu Jan 18 13:13:02 2007
New Revision: 4727

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=4727
Log:
[svn-upgrade] Integrating new upstream version, libdanga-socket-perl (1.56)

Modified:
    packages/libdanga-socket-perl/branches/upstream/current/CHANGES
    packages/libdanga-socket-perl/branches/upstream/current/META.yml
    packages/libdanga-socket-perl/branches/upstream/current/Socket.pm

Modified: packages/libdanga-socket-perl/branches/upstream/current/CHANGES
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libdanga-socket-perl/branches/upstream/current/CHANGES?rev=4727&op=diff
==============================================================================
--- packages/libdanga-socket-perl/branches/upstream/current/CHANGES (original)
+++ packages/libdanga-socket-perl/branches/upstream/current/CHANGES Thu Jan 18 13:13:02 2007
@@ -1,3 +1,8 @@
+1.56
+   -- Reset method _still_ wasn't resetting enough.  had to reset the
+      EventLoop method as well, so _InitPoller would get called and reset
+      stuff.
+
 1.55
    -- Reset method wasn't resetting enough.
 

Modified: packages/libdanga-socket-perl/branches/upstream/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libdanga-socket-perl/branches/upstream/current/META.yml?rev=4727&op=diff
==============================================================================
--- packages/libdanga-socket-perl/branches/upstream/current/META.yml (original)
+++ packages/libdanga-socket-perl/branches/upstream/current/META.yml Thu Jan 18 13:13:02 2007
@@ -1,7 +1,7 @@
 # http://module-build.sourceforge.net/META-spec.html
 #XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
 name:         Danga-Socket
-version:      1.55
+version:      1.56
 version_from: Socket.pm
 installdirs:  site
 requires:

Modified: packages/libdanga-socket-perl/branches/upstream/current/Socket.pm
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libdanga-socket-perl/branches/upstream/current/Socket.pm?rev=4727&op=diff
==============================================================================
--- packages/libdanga-socket-perl/branches/upstream/current/Socket.pm (original)
+++ packages/libdanga-socket-perl/branches/upstream/current/Socket.pm Thu Jan 18 13:13:02 2007
@@ -100,7 +100,7 @@
 my $opt_bsd_resource = eval "use BSD::Resource; 1;";
 
 use vars qw{$VERSION};
-$VERSION = "1.55";
+$VERSION = "1.56";
 
 use warnings;
 no  warnings qw(deprecated);
@@ -184,6 +184,8 @@
     $PostLoopCallback = undef;
     %PLCMap = ();
     $DoneInit = 0;
+
+    *EventLoop = *FirstTimeEventLoop;
 }
 
 =head2 C<< CLASS->HaveEpoll() >>
@@ -377,7 +379,7 @@
 C<PostLoopCallback> below for how to exit the loop.
 
 =cut
-sub EventLoop {
+sub FirstTimeEventLoop {
     my $class = shift;
 
     _InitPoller();




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