r55416 - in /branches/upstream/libpoe-loop-event-perl/current: CHANGES META.yml Makefile.PL lib/POE/Loop/Event.pm

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sat Apr 3 19:38:16 UTC 2010


Author: jawnsy-guest
Date: Sat Apr  3 19:38:00 2010
New Revision: 55416

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=55416
Log:
[svn-upgrade] Integrating new upstream version, libpoe-loop-event-perl (1.303)

Modified:
    branches/upstream/libpoe-loop-event-perl/current/CHANGES
    branches/upstream/libpoe-loop-event-perl/current/META.yml
    branches/upstream/libpoe-loop-event-perl/current/Makefile.PL
    branches/upstream/libpoe-loop-event-perl/current/lib/POE/Loop/Event.pm

Modified: branches/upstream/libpoe-loop-event-perl/current/CHANGES
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpoe-loop-event-perl/current/CHANGES?rev=55416&op=diff
==============================================================================
--- branches/upstream/libpoe-loop-event-perl/current/CHANGES (original)
+++ branches/upstream/libpoe-loop-event-perl/current/CHANGES Sat Apr  3 19:38:00 2010
@@ -1,3 +1,36 @@
+=====================================
+2010-04-03T18:19:29.567440Z ple-1_303
+=====================================
+
+  2010-04-03 18:18:26 (r2858) by rcaputo
+  polo-event/Makefile.PL M; polo-event/lib/POE/Loop/Event.pm M
+
+    Fix PLE dependencies and bump revision for release.
+
+  2010-03-24 06:52:46 (r2852) by apocal
+  poe M; polo-gtk/Makefile.PL M; polo-tk M; polo-event M; poe-test-loops
+  M; polo-gtk M
+
+    Set svn:ignore for: META.yml CHANGES run_network_tests PoLo-Gtk
+    forgot to clean run_network_tests 
+
+  2010-03-22 15:48:33 (r2847) by rcaputo
+  polo-event/lib/POE/Loop/Event.pm M
+
+    Resolve a test hang when trying to run with POE_TRACE_DEFAULT=1 and
+    no events in the queue. 
+
+  2010-03-11 05:06:03 (r2837) by apocal
+  polo-event/Makefile.PL M; polo-tk/Makefile.PL M
+
+    Add "run_network_tests" to "make clean" 
+
+  2010-03-06 23:54:47 (r2826) by apocal
+  polo-event/lib/POE/Loop/Event.pm M
+
+    Add missing import line for Event.pm so the loop will load with
+    POE_EVENT_LOOP env var 
+
 =====================================
 2009-08-27T04:27:04.178834Z ple-1_302
 =====================================

Modified: branches/upstream/libpoe-loop-event-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpoe-loop-event-perl/current/META.yml?rev=55416&op=diff
==============================================================================
--- branches/upstream/libpoe-loop-event-perl/current/META.yml (original)
+++ branches/upstream/libpoe-loop-event-perl/current/META.yml Sat Apr  3 19:38:00 2010
@@ -1,28 +1,15 @@
 --- #YAML:1.0
-name:               POE-Loop-Event
-version:            1.302
-abstract:           Event.pm support for POE.
-author:
+name:                POE-Loop-Event
+version:             1.303
+abstract:            Event.pm support for POE.
+license:             ~
+author:              
     - Rocco Caputo <rcaputo at cpan.org>
-license:            unknown
-distribution_type:  module
-configure_requires:
-    ExtUtils::MakeMaker:  0
-    POE::Test::Loops:     1.021
-build_requires:
-    ExtUtils::MakeMaker:  0
-    POE::Test::Loops:     1.021
-requires:
-    Event:  1.11
-    POE:    1.007
-resources:
-    license:     http://dev.perl.org/licenses/
-    repository:  https://poe.svn.sourceforge.net/svnroot/poe/trunk/polo-event
-no_index:
-    directory:
-        - t
-        - inc
-generated_by:       ExtUtils::MakeMaker version 6.54
+generated_by:        ExtUtils::MakeMaker version 6.42
+distribution_type:   module
+requires:     
+    Event:                         1.13
+    POE:                           1.288
 meta-spec:
-    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
-    version:  1.4
+    url:     http://module-build.sourceforge.net/META-spec-v1.3.html
+    version: 1.3

Modified: branches/upstream/libpoe-loop-event-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpoe-loop-event-perl/current/Makefile.PL?rev=55416&op=diff
==============================================================================
--- branches/upstream/libpoe-loop-event-perl/current/Makefile.PL (original)
+++ branches/upstream/libpoe-loop-event-perl/current/Makefile.PL Sat Apr  3 19:38:00 2010
@@ -85,23 +85,23 @@
       '/usr/bin/tee ./$(DISTNAME)-$(VERSION)/CHANGES > ./CHANGES'
     ),
   },
-  clean           => { FILES => 't/poe_loop_event/*.t t/poe_loop_event' },
+  clean           => { FILES => 't/poe_loop_event/*.t t/poe_loop_event ' . $marker },
   test            => { TESTS => 't/*.t t/poe_loop_event/*.t' },
 
   CONFIGURE_REQUIRES => {
     'ExtUtils::MakeMaker' => 0,
-    'POE::Test::Loops'    => 1.021,
+    'POE::Test::Loops'    => 1.034,
   },
 
   META_MERGE      => {
     build_requires => {
-      'POE::Test::Loops'    => 1.021,
+      'POE::Test::Loops'    => 1.034,
     },
   },
 
   PREREQ_PM       => {
-    'POE'               => 1.007,
-    'Event'             => 1.11,
+    'POE'               => 1.288,
+    'Event'             => 1.13,
   },
 );
 

Modified: branches/upstream/libpoe-loop-event-perl/current/lib/POE/Loop/Event.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libpoe-loop-event-perl/current/lib/POE/Loop/Event.pm?rev=55416&op=diff
==============================================================================
--- branches/upstream/libpoe-loop-event-perl/current/lib/POE/Loop/Event.pm (original)
+++ branches/upstream/libpoe-loop-event-perl/current/lib/POE/Loop/Event.pm Sat Apr  3 19:38:00 2010
@@ -10,7 +10,7 @@
 use POE::Loop::PerlSignals;
 
 use vars qw($VERSION);
-$VERSION = '1.302'; # NOTE - Should be #.### (three decimal places)
+$VERSION = '1.303'; # NOTE - Should be #.### (three decimal places)
 
 =for poe_tests
 
@@ -33,6 +33,7 @@
 package POE::Kernel;
 
 use strict;
+use Event;
 
 my $_watcher_timer;
 my @fileno_watcher;
@@ -203,6 +204,10 @@
 
 sub loop_run {
   my $self = shift;
+
+  # Avoid a hang when trying to run an idle Kernel.
+  $self->_test_if_kernel_is_idle();
+
   while ($self->_data_ses_count()) {
     $self->loop_do_timeslice();
   }




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