r73979 - in /branches/upstream/libevent-perl/current: META.yml lib/Event.pm t/io.t

ghedo-guest at users.alioth.debian.org ghedo-guest at users.alioth.debian.org
Wed May 4 18:26:26 UTC 2011


Author: ghedo-guest
Date: Wed May  4 18:25:49 2011
New Revision: 73979

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=73979
Log:
[svn-upgrade] new version libevent-perl (1.15)

Modified:
    branches/upstream/libevent-perl/current/META.yml
    branches/upstream/libevent-perl/current/lib/Event.pm
    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=73979&op=diff
==============================================================================
--- branches/upstream/libevent-perl/current/META.yml (original)
+++ branches/upstream/libevent-perl/current/META.yml Wed May  4 18:25:49 2011
@@ -1,13 +1,21 @@
 --- #YAML:1.0
-name:                Event
-version:             1.13
-abstract:            ~
-license:             ~
-author:              ~
-generated_by:        ExtUtils::MakeMaker version 6.42
-distribution_type:   module
-requires:     
-    Test:                          1
+name:               Event
+version:            1.15
+abstract:           ~
+author:  []
+license:            unknown
+distribution_type:  module
+configure_requires:
+    ExtUtils::MakeMaker:  0
+build_requires:
+    ExtUtils::MakeMaker:  0
+requires:
+    Test:  1
+no_index:
+    directory:
+        - t
+        - inc
+generated_by:       ExtUtils::MakeMaker version 6.55_02
 meta-spec:
-    url:     http://module-build.sourceforge.net/META-spec-v1.3.html
-    version: 1.3
+    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
+    version:  1.4

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=73979&op=diff
==============================================================================
--- branches/upstream/libevent-perl/current/lib/Event.pm (original)
+++ branches/upstream/libevent-perl/current/lib/Event.pm Wed May  4 18:25:49 2011
@@ -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.13';
+$VERSION = '1.15';
 
 # If we inherit DynaLoader then we inherit AutoLoader; Bletch!
 require DynaLoader;

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=73979&op=diff
==============================================================================
--- branches/upstream/libevent-perl/current/t/io.t (original)
+++ branches/upstream/libevent-perl/current/t/io.t Wed May  4 18:25:49 2011
@@ -85,8 +85,10 @@
 
 loop();
 
-my $bogus_fd_detection = !($Config{osname} eq 'darwin' or
-			   $Config{archname} =~ m/^armv5tejl/);
+my $bogus_fd_detection;
+if ($Config{osname} eq 'darwin' or $Config{archname} =~ m/^armv5tejl/) {
+    $bogus_fd_detection = 'Cannot detect bogus file descriptors';
+}
 
 skip $bogus_fd_detection, $noticed_bogus_fd, 1;
 skip $bogus_fd_detection, !defined $bogus->fd;




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