r42968 - in /branches/upstream/libevent-perl/current: META.yml README lib/Event.pm lib/Event.pod t/io.t
nhandler-guest at users.alioth.debian.org
nhandler-guest at users.alioth.debian.org
Thu Aug 27 01:08:30 UTC 2009
Author: nhandler-guest
Date: Thu Aug 27 01:08:24 2009
New Revision: 42968
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=42968
Log:
[svn-upgrade] Integrating new upstream version, libevent-perl (1.12)
Modified:
branches/upstream/libevent-perl/current/META.yml
branches/upstream/libevent-perl/current/README
branches/upstream/libevent-perl/current/lib/Event.pm
branches/upstream/libevent-perl/current/lib/Event.pod
branches/upstream/libevent-perl/current/t/io.t
Modified: branches/upstream/libevent-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libevent-perl/current/META.yml?rev=42968&op=diff
==============================================================================
--- branches/upstream/libevent-perl/current/META.yml (original)
+++ branches/upstream/libevent-perl/current/META.yml Thu Aug 27 01:08:24 2009
@@ -1,11 +1,13 @@
-# http://module-build.sourceforge.net/META-spec.html
-#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
-name: Event
-version: 1.11
-version_from: ./lib/Event.pm
-installdirs: site
-requires:
+--- #YAML:1.0
+name: Event
+version: 1.12
+abstract: ~
+license: ~
+author: ~
+generated_by: ExtUtils::MakeMaker version 6.42
+distribution_type: module
+requires:
Test: 1
-
-distribution_type: module
-generated_by: ExtUtils::MakeMaker version 6.30_01
+meta-spec:
+ url: http://module-build.sourceforge.net/META-spec-v1.3.html
+ version: 1.3
Modified: branches/upstream/libevent-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libevent-perl/current/README?rev=42968&op=diff
==============================================================================
--- branches/upstream/libevent-perl/current/README (original)
+++ branches/upstream/libevent-perl/current/README Thu Aug 27 01:08:24 2009
@@ -4,3 +4,6 @@
a broad class of applications.
Available via http://www.perl.com/CPAN/authors/id/JPRIT/
+
+ALERT: Marc Lehmann may have taken over the future of event loops in
+Perl. Check out his libev library and EV Perl module. 25 Aug 2009
Modified: branches/upstream/libevent-perl/current/lib/Event.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libevent-perl/current/lib/Event.pm?rev=42968&op=diff
==============================================================================
--- branches/upstream/libevent-perl/current/lib/Event.pm (original)
+++ branches/upstream/libevent-perl/current/lib/Event.pm Thu Aug 27 01:08:24 2009
@@ -14,7 +14,7 @@
eval { require Carp::Heavy; }; # work around perl_call_pv bug XXX
use vars qw($VERSION @EXPORT_OK
$API $DebugLevel $Eval $DIED $Now);
-$VERSION = '1.11';
+$VERSION = '1.12';
# If we inherit DynaLoader then we inherit AutoLoader; Bletch!
require DynaLoader;
Modified: branches/upstream/libevent-perl/current/lib/Event.pod
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libevent-perl/current/lib/Event.pod?rev=42968&op=diff
==============================================================================
--- branches/upstream/libevent-perl/current/lib/Event.pod (original)
+++ branches/upstream/libevent-perl/current/lib/Event.pod Thu Aug 27 01:08:24 2009
@@ -15,6 +15,9 @@
unloop('ok');
=head1 DESCRIPTION
+
+ALERT: Marc Lehmann may have taken over the future of event loops in
+Perl. Check out his libev library and EV Perl module. 25 Aug 2009
The Event module provide a central facility to watch for various types
of events and invoke a callback when these events occur. The idea is
Modified: branches/upstream/libevent-perl/current/t/io.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libevent-perl/current/t/io.t?rev=42968&op=diff
==============================================================================
--- branches/upstream/libevent-perl/current/t/io.t (original)
+++ branches/upstream/libevent-perl/current/t/io.t Thu Aug 27 01:08:24 2009
@@ -85,6 +85,9 @@
loop();
-skip $Config{osname} eq 'darwin', $noticed_bogus_fd, 1;
-skip $Config{osname} eq 'darwin', !defined $bogus->fd;
+my $bogus_fd_detection = !($Config{osname} eq 'darwin' or
+ $Config{archname} =~ m/^armv5tejl/);
+
+skip $bogus_fd_detection, $noticed_bogus_fd, 1;
+skip $bogus_fd_detection, !defined $bogus->fd;
ok $bogus_timeout > 0;
More information about the Pkg-perl-cvs-commits
mailing list