r57090 - in /branches/upstream/libanyevent-perl/current: Changes MANIFEST META.json META.yml README constants.pl.PL lib/AnyEvent.pm
ansgar-guest at users.alioth.debian.org
ansgar-guest at users.alioth.debian.org
Thu Apr 29 09:08:58 UTC 2010
Author: ansgar-guest
Date: Thu Apr 29 09:08:28 2010
New Revision: 57090
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=57090
Log:
[svn-upgrade] Integrating new upstream version, libanyevent-perl (5.261)
Removed:
branches/upstream/libanyevent-perl/current/META.json
Modified:
branches/upstream/libanyevent-perl/current/Changes
branches/upstream/libanyevent-perl/current/MANIFEST
branches/upstream/libanyevent-perl/current/META.yml
branches/upstream/libanyevent-perl/current/README
branches/upstream/libanyevent-perl/current/constants.pl.PL
branches/upstream/libanyevent-perl/current/lib/AnyEvent.pm
Modified: branches/upstream/libanyevent-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libanyevent-perl/current/Changes?rev=57090&op=diff
==============================================================================
--- branches/upstream/libanyevent-perl/current/Changes (original)
+++ branches/upstream/libanyevent-perl/current/Changes Thu Apr 29 09:08:28 2010
@@ -1,4 +1,10 @@
Revision history for Perl extension AnyEvent.
+
+TODO: docs signal for condvar
+
+5.261 Wed Apr 28 16:13:36 CEST 2010
+ - AF_INET6 was not properly used from Socket6 during configuration
+ time (found by Andy Grundman).
5.26 Mon Apr 12 04:49:35 CEST 2010
- don't generate spurious readyness notifications when select
Modified: branches/upstream/libanyevent-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libanyevent-perl/current/MANIFEST?rev=57090&op=diff
==============================================================================
--- branches/upstream/libanyevent-perl/current/MANIFEST (original)
+++ branches/upstream/libanyevent-perl/current/MANIFEST Thu Apr 29 09:08:28 2010
@@ -54,4 +54,3 @@
util/gen_uts46data
META.yml Module meta-data (added by MakeMaker)
-META.json Module meta-data (added by MakeMaker)
Modified: branches/upstream/libanyevent-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libanyevent-perl/current/META.yml?rev=57090&op=diff
==============================================================================
--- branches/upstream/libanyevent-perl/current/META.yml (original)
+++ branches/upstream/libanyevent-perl/current/META.yml Thu Apr 29 09:08:28 2010
@@ -1,34 +1,27 @@
-{
- "no_index" : {
- "directory" : [
- "t",
- "inc"
- ]
- },
- "meta-spec" : {
- "version" : 1.4,
- "url" : "http://module-build.sourceforge.net/META-spec-v1.4.html"
- },
- "generated_by" : "ExtUtils::MakeMaker version 6.54",
- "distribution_type" : "module",
- "version" : "5.26",
- "name" : "AnyEvent",
- "author" : [],
- "license" : "unknown",
- "build_requires" : {
- "ExtUtils::MakeMaker" : 0
- },
- "requires" : {},
- "recommends" : {
- "Net::SSLeay" : 1.33,
- "Guard" : 1.02,
- "EV" : 3.05,
- "Async::Interrupt" : 1,
- "JSON::XS" : 2.2,
- "JSON" : 2.09
- },
- "abstract" : null,
- "configure_requires" : {
- "ExtUtils::MakeMaker" : 0
- }
-}
+--- #YAML:1.0
+name: AnyEvent
+version: 5.261
+abstract: ~
+author: []
+license: unknown
+distribution_type: module
+configure_requires:
+ ExtUtils::MakeMaker: 0
+build_requires:
+ ExtUtils::MakeMaker: 0
+requires: {}
+no_index:
+ directory:
+ - t
+ - inc
+generated_by: ExtUtils::MakeMaker version 6.56
+meta-spec:
+ url: http://module-build.sourceforge.net/META-spec-v1.4.html
+ version: 1.4
+recommends:
+ Async::Interrupt: 1
+ EV: 3.05
+ Guard: 1.02
+ JSON: 2.09
+ JSON::XS: 2.2
+ Net::SSLeay: 1.33
Modified: branches/upstream/libanyevent-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libanyevent-perl/current/README?rev=57090&op=diff
==============================================================================
--- branches/upstream/libanyevent-perl/current/README (original)
+++ branches/upstream/libanyevent-perl/current/README Thu Apr 29 09:08:28 2010
@@ -473,10 +473,10 @@
Example: fork a process and wait for it
my $done = AnyEvent->condvar;
-
- my $pid = fork or exit 5;
-
- my $w = AnyEvent->child (
+
+ my $pid = fork or exit 5;
+
+ my $w = AnyEvent->child (
pid => $pid,
cb => sub {
my ($pid, $status) = @_;
@@ -484,8 +484,8 @@
$done->send;
},
);
-
- # do something else, then wait for process exit
+
+ # do something else, then wait for process exit
$done->recv;
IDLE WATCHERS
@@ -1845,8 +1845,8 @@
before the first watcher gets created, e.g. with a "BEGIN" block:
BEGIN { delete $ENV{PERL_ANYEVENT_MODEL} }
-
- use AnyEvent;
+
+ use AnyEvent;
Similar considerations apply to $ENV{PERL_ANYEVENT_VERBOSE}, as that can
be used to probe what backend is used and gain other information (which
Modified: branches/upstream/libanyevent-perl/current/constants.pl.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libanyevent-perl/current/constants.pl.PL?rev=57090&op=diff
==============================================================================
--- branches/upstream/libanyevent-perl/current/constants.pl.PL (original)
+++ branches/upstream/libanyevent-perl/current/constants.pl.PL Thu Apr 29 09:08:28 2010
@@ -42,7 +42,7 @@
my $af_inet6;
$af_inet6 ||= eval { require Socket ; Socket::AF_INET6 () };
-$af_ine6t ||= eval { require Socket6; Socket6::AF_INET6() };
+$af_inet6 ||= eval { require Socket6; Socket6::AF_INET6() };
# uhoh
$af_inet6 ||= 10 if $^O =~ /linux/;
Modified: branches/upstream/libanyevent-perl/current/lib/AnyEvent.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libanyevent-perl/current/lib/AnyEvent.pm?rev=57090&op=diff
==============================================================================
--- branches/upstream/libanyevent-perl/current/lib/AnyEvent.pm (original)
+++ branches/upstream/libanyevent-perl/current/lib/AnyEvent.pm Thu Apr 29 09:08:28 2010
@@ -1161,7 +1161,7 @@
use Carp ();
-our $VERSION = '5.26';
+our $VERSION = '5.261';
our $MODEL;
our $AUTOLOAD;
More information about the Pkg-perl-cvs-commits
mailing list