r45710 - in /branches/upstream/libio-async-loop-epoll-perl/current: ./ lib/IO/Async/Loop/ t/

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Tue Oct 13 16:00:16 UTC 2009


Author: jawnsy-guest
Date: Tue Oct 13 16:00:00 2009
New Revision: 45710

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=45710
Log:
[svn-upgrade] Integrating new upstream version, libio-async-loop-epoll-perl (0.07)

Added:
    branches/upstream/libio-async-loop-epoll-perl/current/t/01loop-io.t
    branches/upstream/libio-async-loop-epoll-perl/current/t/02loop-timer.t
    branches/upstream/libio-async-loop-epoll-perl/current/t/03loop-signal.t
    branches/upstream/libio-async-loop-epoll-perl/current/t/04loop-idle.t
    branches/upstream/libio-async-loop-epoll-perl/current/t/05loop-child.t
    branches/upstream/libio-async-loop-epoll-perl/current/t/06loop-control.t
Removed:
    branches/upstream/libio-async-loop-epoll-perl/current/t/01epoll-io.t
    branches/upstream/libio-async-loop-epoll-perl/current/t/02epoll-sig.t
    branches/upstream/libio-async-loop-epoll-perl/current/t/03epoll-timing.t
Modified:
    branches/upstream/libio-async-loop-epoll-perl/current/Build.PL
    branches/upstream/libio-async-loop-epoll-perl/current/Changes
    branches/upstream/libio-async-loop-epoll-perl/current/MANIFEST
    branches/upstream/libio-async-loop-epoll-perl/current/META.yml
    branches/upstream/libio-async-loop-epoll-perl/current/Makefile.PL
    branches/upstream/libio-async-loop-epoll-perl/current/README
    branches/upstream/libio-async-loop-epoll-perl/current/lib/IO/Async/Loop/Epoll.pm

Modified: branches/upstream/libio-async-loop-epoll-perl/current/Build.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libio-async-loop-epoll-perl/current/Build.PL?rev=45710&op=diff
==============================================================================
--- branches/upstream/libio-async-loop-epoll-perl/current/Build.PL (original)
+++ branches/upstream/libio-async-loop-epoll-perl/current/Build.PL Tue Oct 13 16:00:00 2009
@@ -7,14 +7,12 @@
   (
    module_name => 'IO::Async::Loop::Epoll',
    requires => {
-                 'IO::Async'    => '0.20',
-                 'IO::Epoll'    => 0.02,
+                 'IO::Async' => '0.24',
+                 'IO::Epoll' => 0.02,
                },
    build_requires => {
                  'Test::More' => 0,
-                 'Test::Exception' => 0,
-                 'Test::Refcount' => 0,
-                 'Time::HiRes' => 0,
+                 'IO::Async::LoopTests' => '0.24',
                },
    license => 'perl',
    create_makefile_pl => 'traditional',

Modified: branches/upstream/libio-async-loop-epoll-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libio-async-loop-epoll-perl/current/Changes?rev=45710&op=diff
==============================================================================
--- branches/upstream/libio-async-loop-epoll-perl/current/Changes (original)
+++ branches/upstream/libio-async-loop-epoll-perl/current/Changes Tue Oct 13 16:00:00 2009
@@ -1,4 +1,8 @@
 Revision history for IO-Async-Loop-Epoll
+
+0.07    CHANGES:
+         * Updated for IO-Async 0.24
+         * Use shared acceptance testing provided by IO::Async::LoopTests
 
 0.06    CHANGES:
          * Various small updates to keep CPANTS happy

Modified: branches/upstream/libio-async-loop-epoll-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libio-async-loop-epoll-perl/current/MANIFEST?rev=45710&op=diff
==============================================================================
--- branches/upstream/libio-async-loop-epoll-perl/current/MANIFEST (original)
+++ branches/upstream/libio-async-loop-epoll-perl/current/MANIFEST Tue Oct 13 16:00:00 2009
@@ -7,7 +7,10 @@
 META.yml
 README
 t/00use.t
-t/01epoll-io.t
-t/02epoll-sig.t
-t/03epoll-timing.t
+t/01loop-io.t
+t/02loop-timer.t
+t/03loop-signal.t
+t/04loop-idle.t
+t/05loop-child.t
+t/06loop-control.t
 t/99pod.t

Modified: branches/upstream/libio-async-loop-epoll-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libio-async-loop-epoll-perl/current/META.yml?rev=45710&op=diff
==============================================================================
--- branches/upstream/libio-async-loop-epoll-perl/current/META.yml (original)
+++ branches/upstream/libio-async-loop-epoll-perl/current/META.yml Tue Oct 13 16:00:00 2009
@@ -1,25 +1,25 @@
 ---
 name: IO-Async-Loop-Epoll
-version: 0.06
+version: 0.07
 author:
   - 'Paul Evans <leonerd at leonerd.org.uk>'
 abstract: use C<IO::Async> with C<epoll> on Linux
 license: perl
 resources:
   license: http://dev.perl.org/licenses/
+build_requires:
+  IO::Async::LoopTests: 0.24
+  Test::More: 0
 requires:
-  IO::Async: 0.20
+  IO::Async: 0.24
   IO::Epoll: 0.02
-build_requires:
-  Test::Exception: 0
-  Test::More: 0
-  Test::Refcount: 0
-  Time::HiRes: 0
+configure_requires:
+  Module::Build: 0.35
 provides:
   IO::Async::Loop::Epoll:
     file: lib/IO/Async/Loop/Epoll.pm
-    version: 0.06
-generated_by: Module::Build version 0.33
+    version: 0.07
+generated_by: Module::Build version 0.35
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
   version: 1.4

Modified: branches/upstream/libio-async-loop-epoll-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libio-async-loop-epoll-perl/current/Makefile.PL?rev=45710&op=diff
==============================================================================
--- branches/upstream/libio-async-loop-epoll-perl/current/Makefile.PL (original)
+++ branches/upstream/libio-async-loop-epoll-perl/current/Makefile.PL Tue Oct 13 16:00:00 2009
@@ -1,16 +1,14 @@
-# Note: this file was auto-generated by Module::Build::Compat version 0.33
+# Note: this file was auto-generated by Module::Build::Compat version 0.35
 use ExtUtils::MakeMaker;
 WriteMakefile
 (
           'NAME' => 'IO::Async::Loop::Epoll',
           'VERSION_FROM' => 'lib/IO/Async/Loop/Epoll.pm',
           'PREREQ_PM' => {
-                           'IO::Async' => '0.20',
+                           'IO::Async' => '0.24',
+                           'IO::Async::LoopTests' => '0.24',
                            'IO::Epoll' => '0.02',
-                           'Test::Exception' => 0,
-                           'Test::More' => 0,
-                           'Test::Refcount' => 0,
-                           'Time::HiRes' => 0
+                           'Test::More' => 0
                          },
           'INSTALLDIRS' => 'site',
           'EXE_FILES' => [],

Modified: branches/upstream/libio-async-loop-epoll-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libio-async-loop-epoll-perl/current/README?rev=45710&op=diff
==============================================================================
--- branches/upstream/libio-async-loop-epoll-perl/current/README (original)
+++ branches/upstream/libio-async-loop-epoll-perl/current/README Tue Oct 13 16:00:00 2009
@@ -9,7 +9,7 @@
      $loop->add( ... );
 
      $loop->add( IO::Async::Signal->new(
-           name =< 'HUP',
+           name => 'HUP',
            on_receipt => sub { ... },
      ) );
 
@@ -54,7 +54,7 @@
 SEE ALSO
     *   IO::Epoll - Scalable IO Multiplexing for Linux 2.5.44 and higher
 
-    *   IO::Async::Loop::IO_Poll - a Loop using an IO::Poll object
+    *   IO::Async::Loop::Poll - use IO::Async with poll(2)
 
 AUTHOR
     Paul Evans <leonerd at leonerd.org.uk>

Modified: branches/upstream/libio-async-loop-epoll-perl/current/lib/IO/Async/Loop/Epoll.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libio-async-loop-epoll-perl/current/lib/IO/Async/Loop/Epoll.pm?rev=45710&op=diff
==============================================================================
--- branches/upstream/libio-async-loop-epoll-perl/current/lib/IO/Async/Loop/Epoll.pm (original)
+++ branches/upstream/libio-async-loop-epoll-perl/current/lib/IO/Async/Loop/Epoll.pm Tue Oct 13 16:00:00 2009
@@ -8,7 +8,8 @@
 use strict;
 use warnings;
 
-our $VERSION = '0.06';
+our $VERSION = '0.07';
+use constant API_VERSION => '0.24';
 
 use base qw( IO::Async::Loop );
 
@@ -35,7 +36,7 @@
  $loop->add( ... );
 
  $loop->add( IO::Async::Signal->new(
-       name =< 'HUP',
+       name => 'HUP',
        on_receipt => sub { ... },
  ) );
 
@@ -151,8 +152,7 @@
       }
    }
 
-   my $timequeue = $self->{timequeue};
-   $count += $timequeue->fire if $timequeue;
+   $count += $self->_manage_queues;
 
    return $count;
 }
@@ -269,7 +269,7 @@
 
 =item *
 
-L<IO::Async::Loop::IO_Poll> - a Loop using an IO::Poll object 
+L<IO::Async::Loop::Poll> - use IO::Async with poll(2)
 
 =back
 

Added: branches/upstream/libio-async-loop-epoll-perl/current/t/01loop-io.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libio-async-loop-epoll-perl/current/t/01loop-io.t?rev=45710&op=file
==============================================================================
--- branches/upstream/libio-async-loop-epoll-perl/current/t/01loop-io.t (added)
+++ branches/upstream/libio-async-loop-epoll-perl/current/t/01loop-io.t Tue Oct 13 16:00:00 2009
@@ -1,0 +1,4 @@
+#!/usr/bin/perl -w
+
+use IO::Async::LoopTests 0.24;
+run_tests( 'IO::Async::Loop::Epoll', 'io' );

Added: branches/upstream/libio-async-loop-epoll-perl/current/t/02loop-timer.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libio-async-loop-epoll-perl/current/t/02loop-timer.t?rev=45710&op=file
==============================================================================
--- branches/upstream/libio-async-loop-epoll-perl/current/t/02loop-timer.t (added)
+++ branches/upstream/libio-async-loop-epoll-perl/current/t/02loop-timer.t Tue Oct 13 16:00:00 2009
@@ -1,0 +1,4 @@
+#!/usr/bin/perl -w
+
+use IO::Async::LoopTests 0.24;
+run_tests( 'IO::Async::Loop::Epoll', 'timer' );

Added: branches/upstream/libio-async-loop-epoll-perl/current/t/03loop-signal.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libio-async-loop-epoll-perl/current/t/03loop-signal.t?rev=45710&op=file
==============================================================================
--- branches/upstream/libio-async-loop-epoll-perl/current/t/03loop-signal.t (added)
+++ branches/upstream/libio-async-loop-epoll-perl/current/t/03loop-signal.t Tue Oct 13 16:00:00 2009
@@ -1,0 +1,4 @@
+#!/usr/bin/perl -w
+
+use IO::Async::LoopTests 0.24;
+run_tests( 'IO::Async::Loop::Epoll', 'signal' );

Added: branches/upstream/libio-async-loop-epoll-perl/current/t/04loop-idle.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libio-async-loop-epoll-perl/current/t/04loop-idle.t?rev=45710&op=file
==============================================================================
--- branches/upstream/libio-async-loop-epoll-perl/current/t/04loop-idle.t (added)
+++ branches/upstream/libio-async-loop-epoll-perl/current/t/04loop-idle.t Tue Oct 13 16:00:00 2009
@@ -1,0 +1,4 @@
+#!/usr/bin/perl -w
+
+use IO::Async::LoopTests 0.24;
+run_tests( 'IO::Async::Loop::Epoll', 'idle' );

Added: branches/upstream/libio-async-loop-epoll-perl/current/t/05loop-child.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libio-async-loop-epoll-perl/current/t/05loop-child.t?rev=45710&op=file
==============================================================================
--- branches/upstream/libio-async-loop-epoll-perl/current/t/05loop-child.t (added)
+++ branches/upstream/libio-async-loop-epoll-perl/current/t/05loop-child.t Tue Oct 13 16:00:00 2009
@@ -1,0 +1,4 @@
+#!/usr/bin/perl -w
+
+use IO::Async::LoopTests 0.24;
+run_tests( 'IO::Async::Loop::Epoll', 'child' );

Added: branches/upstream/libio-async-loop-epoll-perl/current/t/06loop-control.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libio-async-loop-epoll-perl/current/t/06loop-control.t?rev=45710&op=file
==============================================================================
--- branches/upstream/libio-async-loop-epoll-perl/current/t/06loop-control.t (added)
+++ branches/upstream/libio-async-loop-epoll-perl/current/t/06loop-control.t Tue Oct 13 16:00:00 2009
@@ -1,0 +1,4 @@
+#!/usr/bin/perl -w
+
+use IO::Async::LoopTests 0.24;
+run_tests( 'IO::Async::Loop::Epoll', 'control' );




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