r75913 - in /trunk/libanyevent-http-perl: Changes HTTP.pm META.json README debian/changelog

mxey-guest at users.alioth.debian.org mxey-guest at users.alioth.debian.org
Fri Jun 17 23:13:19 UTC 2011


Author: mxey-guest
Date: Fri Jun 17 23:13:17 2011
New Revision: 75913

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=75913
Log:
New upstream release

Modified:
    trunk/libanyevent-http-perl/Changes
    trunk/libanyevent-http-perl/HTTP.pm
    trunk/libanyevent-http-perl/META.json
    trunk/libanyevent-http-perl/README
    trunk/libanyevent-http-perl/debian/changelog

Modified: trunk/libanyevent-http-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libanyevent-http-perl/Changes?rev=75913&op=diff
==============================================================================
--- trunk/libanyevent-http-perl/Changes (original)
+++ trunk/libanyevent-http-perl/Changes Fri Jun 17 23:13:17 2011
@@ -2,6 +2,10 @@
 
 TODO: provide lwp_request function that takes an lwp http requets and returns a http response.
 TODO: httpbis: $location = URI->new_abs($location, "$scheme://$host:$port$path_query")->as_string;
+
+2.12 Tue Jun 14 07:22:54 CEST 2011
+	- fix a possible 'Can't call method "destroyed"' error (which would
+          have been reported by Carl Chambers).
 
 2.11 Tue May 10 14:33:28 CEST 2011
 	- the keepalive session cache wouldn't take port and scheme into account

Modified: trunk/libanyevent-http-perl/HTTP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libanyevent-http-perl/HTTP.pm?rev=75913&op=diff
==============================================================================
--- trunk/libanyevent-http-perl/HTTP.pm (original)
+++ trunk/libanyevent-http-perl/HTTP.pm Fri Jun 17 23:13:17 2011
@@ -48,7 +48,7 @@
 
 use base Exporter::;
 
-our $VERSION = '2.11';
+our $VERSION = '2.12';
 
 our @EXPORT = qw(http_get http_post http_head http_request);
 
@@ -1140,13 +1140,11 @@
 
          $state{handle} = ka_fetch $ka_key;
          $state{handle}->destroyed
-            and die "got a destructed habndle. pah\n";#d#
+            and die "AnyEvent::HTTP: unexpectedly got a destructed handle (1), please report.";#d#
          $prepare_handle->();
          $state{handle}->destroyed
-            and die "got a destructed habndle. pa2\n";#d#
+            and die "AnyEvent::HTTP: unexpectedly got a destructed handle (2), please report.";#d#
          $handle_actual_request->();
-         $state{handle}->destroyed
-            and die "got a destructed habndle. pa3\n";#d#
 
       } else {
          my $tcp_connect = $arg{tcp_connect}
@@ -1388,7 +1386,7 @@
       warn -s _;
       if (stat $fh and -s _) {
          $ofs = -s _;
-         warn "-s is ", $ofs;#d#
+         warn "-s is ", $ofs;
          $hdr{"if-unmodified-since"} = AnyEvent::HTTP::format_date +(stat _)[9];
          $hdr{"range"} = "bytes=$ofs-";
       }

Modified: trunk/libanyevent-http-perl/META.json
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libanyevent-http-perl/META.json?rev=75913&op=diff
==============================================================================
--- trunk/libanyevent-http-perl/META.json (original)
+++ trunk/libanyevent-http-perl/META.json Fri Jun 17 23:13:17 2011
@@ -11,7 +11,7 @@
    },
    "generated_by" : "ExtUtils::MakeMaker::JSONMETA version 7.000",
    "distribution_type" : "module",
-   "version" : "2.11",
+   "version" : "2.12",
    "name" : "AnyEvent-HTTP",
    "author" : [],
    "license" : "unknown",

Modified: trunk/libanyevent-http-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libanyevent-http-perl/README?rev=75913&op=diff
==============================================================================
--- trunk/libanyevent-http-perl/README (original)
+++ trunk/libanyevent-http-perl/README Fri Jun 17 23:13:17 2011
@@ -494,7 +494,7 @@
           warn -s _;
           if (stat $fh and -s _) {
              $ofs = -s _;
-             warn "-s is ", $ofs;#d#
+             warn "-s is ", $ofs;
              $hdr{"if-unmodified-since"} = AnyEvent::HTTP::format_date +(stat _)[9];
              $hdr{"range"} = "bytes=$ofs-";
           }

Modified: trunk/libanyevent-http-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libanyevent-http-perl/debian/changelog?rev=75913&op=diff
==============================================================================
--- trunk/libanyevent-http-perl/debian/changelog (original)
+++ trunk/libanyevent-http-perl/debian/changelog Fri Jun 17 23:13:17 2011
@@ -1,3 +1,9 @@
+libanyevent-http-perl (2.12-1) UNRELEASED; urgency=low
+
+  * New upstream release
+
+ -- Maximilian Gass <mxey at cloudconnected.org>  Sat, 18 Jun 2011 01:12:44 +0200
+
 libanyevent-http-perl (2.11-1) unstable; urgency=low
 
   * New upstream release




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