diff -Nru libanyevent-http-perl-2.12/Changes libanyevent-http-perl-2.13/Changes --- libanyevent-http-perl-2.12/Changes 2011-06-14 05:22:59.000000000 +0000 +++ libanyevent-http-perl-2.13/Changes 2011-07-27 16:11:45.000000000 +0000 @@ -2,6 +2,13 @@ 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; +TODO: set_proxy hook +TODO: use proxy hook + +2.13 Wed Jul 27 17:53:58 CEST 2011 + - garbled chunked responses caused AnyEvent::HTTP to malfunction + (patch by Dmitri Melikyan). + - fix GET => HEAD in one case in the documentation (James Bromberger). 2.12 Tue Jun 14 07:22:54 CEST 2011 - fix a possible 'Can't call method "destroyed"' error (which would diff -Nru libanyevent-http-perl-2.12/debian/changelog libanyevent-http-perl-2.13/debian/changelog --- libanyevent-http-perl-2.12/debian/changelog 2011-06-18 01:21:57.000000000 +0000 +++ libanyevent-http-perl-2.13/debian/changelog 2011-11-05 22:53:12.000000000 +0000 @@ -1,3 +1,21 @@ +libanyevent-http-perl (2.13-1) unstable; urgency=low + + [ David Bremner ] + * Team upload + * New upstream release + + [ Ansgar Burchardt ] + * debian/control: Convert Vcs-* fields to Git. + + [ Salvatore Bonaccorso ] + * debian/copyright: Replace DEP5 Format-Specification URL from + svn.debian.org to anonscm.debian.org URL. + + [ Nicholas Bamber ] + * Added lintian override concerning DEP-5 format + + -- Nicholas Bamber Sat, 05 Nov 2011 22:53:03 +0000 + libanyevent-http-perl (2.12-1) unstable; urgency=low [ Maximilian Gass ] diff -Nru libanyevent-http-perl-2.12/debian/control libanyevent-http-perl-2.13/debian/control --- libanyevent-http-perl-2.12/debian/control 2011-05-16 16:54:09.000000000 +0000 +++ libanyevent-http-perl-2.13/debian/control 2011-11-05 22:36:25.000000000 +0000 @@ -10,8 +10,8 @@ Nicholas Bamber Standards-Version: 3.9.2 Homepage: http://search.cpan.org/dist/AnyEvent-HTTP/ -Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libanyevent-http-perl/ -Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libanyevent-http-perl/ +Vcs-Git: git://git.debian.org/pkg-perl/packages/libanyevent-http-perl.git +Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libanyevent-http-perl.git Package: libanyevent-http-perl Architecture: all diff -Nru libanyevent-http-perl-2.12/debian/copyright libanyevent-http-perl-2.13/debian/copyright --- libanyevent-http-perl-2.12/debian/copyright 2011-03-15 19:48:04.000000000 +0000 +++ libanyevent-http-perl-2.13/debian/copyright 2011-11-05 22:36:25.000000000 +0000 @@ -1,4 +1,4 @@ -Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135 +Format-Specification: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?view=markup&pathrev=135 Maintainer: Marc Lehmann Source: http://search.cpan.org/dist/AnyEvent-HTTP/ Name: AnyEvent-HTTP diff -Nru libanyevent-http-perl-2.12/debian/source/lintian-overrides libanyevent-http-perl-2.13/debian/source/lintian-overrides --- libanyevent-http-perl-2.12/debian/source/lintian-overrides 1970-01-01 00:00:00.000000000 +0000 +++ libanyevent-http-perl-2.13/debian/source/lintian-overrides 2011-11-05 22:44:03.000000000 +0000 @@ -0,0 +1,3 @@ +# Debian Perl Group policy is that the copyright format be kept at +# this version until the standard is finalized. +libanyevent-http-perl source: out-of-date-copyright-format-uri http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?view=markup&pathrev=135 diff -Nru libanyevent-http-perl-2.12/HTTP.pm libanyevent-http-perl-2.13/HTTP.pm --- libanyevent-http-perl-2.12/HTTP.pm 2011-06-14 05:22:51.000000000 +0000 +++ libanyevent-http-perl-2.13/HTTP.pm 2011-07-27 16:11:15.000000000 +0000 @@ -48,7 +48,7 @@ use base Exporter::; -our $VERSION = '2.12'; +our $VERSION = '2.13'; our @EXPORT = qw(http_get http_post http_head http_request); @@ -386,7 +386,7 @@ timeout of 30 seconds. http_request - GET => "https://www.google.com", + HEAD => "https://www.google.com", headers => { "user-agent" => "MySearchClient 1.0" }, timeout => 30, sub { @@ -964,7 +964,7 @@ $state{read_chunk} = sub { $_[1] =~ /^([0-9a-fA-F]+)/ - or $finish->(undef, $ae_error => "Garbled chunked transfer encoding"); + or return $finish->(undef, $ae_error => "Garbled chunked transfer encoding"); my $len = hex $1; diff -Nru libanyevent-http-perl-2.12/MANIFEST libanyevent-http-perl-2.13/MANIFEST --- libanyevent-http-perl-2.12/MANIFEST 2011-06-14 05:23:03.000000000 +0000 +++ libanyevent-http-perl-2.13/MANIFEST 2011-07-27 16:11:47.000000000 +0000 @@ -6,4 +6,5 @@ HTTP.pm t/00_load.t t/01_basic.t -META.json Module meta-data (added by MakeMaker) +META.yml Module YAML meta-data (added by MakeMaker) +META.json Module JSON meta-data (added by MakeMaker) diff -Nru libanyevent-http-perl-2.12/META.json libanyevent-http-perl-2.13/META.json --- libanyevent-http-perl-2.12/META.json 2011-06-14 05:23:03.000000000 +0000 +++ libanyevent-http-perl-2.13/META.json 2011-07-27 16:11:47.000000000 +0000 @@ -1,29 +1,42 @@ { + "abstract" : "unknown", + "author" : [ + "unknown" + ], + "dynamic_config" : 1, + "generated_by" : "ExtUtils::MakeMaker version 6.58, CPAN::Meta::Converter version 2.110930001", + "license" : [ + "unknown" + ], + "meta-spec" : { + "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", + "version" : "2" + }, + "name" : "AnyEvent-HTTP", "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::JSONMETA version 7.000", - "distribution_type" : "module", - "version" : "2.12", - "name" : "AnyEvent-HTTP", - "author" : [], - "license" : "unknown", - "build_requires" : { - "ExtUtils::MakeMaker" : 0 - }, - "requires" : { - "AnyEvent" : 5.33, - "common::sense" : 3.3 + "prereqs" : { + "build" : { + "requires" : { + "ExtUtils::MakeMaker" : 0 + } + }, + "configure" : { + "requires" : { + "ExtUtils::MakeMaker" : 0 + } + }, + "runtime" : { + "requires" : { + "AnyEvent" : "5.33", + "common::sense" : "3.3" + } + } }, - "abstract" : null, - "configure_requires" : { - "ExtUtils::MakeMaker" : 0 - } + "release_status" : "stable", + "version" : "2.13" } diff -Nru libanyevent-http-perl-2.12/META.yml libanyevent-http-perl-2.13/META.yml --- libanyevent-http-perl-2.12/META.yml 1970-01-01 00:00:00.000000000 +0000 +++ libanyevent-http-perl-2.13/META.yml 2011-07-27 16:11:47.000000000 +0000 @@ -0,0 +1,23 @@ +--- +abstract: unknown +author: + - unknown +build_requires: + ExtUtils::MakeMaker: 0 +configure_requires: + ExtUtils::MakeMaker: 0 +dynamic_config: 1 +generated_by: 'ExtUtils::MakeMaker version 6.58, CPAN::Meta::Converter version 2.110930001' +license: unknown +meta-spec: + url: http://module-build.sourceforge.net/META-spec-v1.4.html + version: 1.4 +name: AnyEvent-HTTP +no_index: + directory: + - t + - inc +requires: + AnyEvent: 5.33 + common::sense: 3.3 +version: 2.13 diff -Nru libanyevent-http-perl-2.12/README libanyevent-http-perl-2.13/README --- libanyevent-http-perl-2.12/README 2011-06-14 05:23:03.000000000 +0000 +++ libanyevent-http-perl-2.13/README 2011-07-27 16:11:47.000000000 +0000 @@ -338,7 +338,7 @@ timeout of 30 seconds. http_request - GET => "https://www.google.com", + HEAD => "https://www.google.com", headers => { "user-agent" => "MySearchClient 1.0" }, timeout => 30, sub {