r42894 - in /branches/upstream/libflickr-api-perl/current: Changes META.yml Makefile.PL lib/Flickr/API.pm
jawnsy-guest at users.alioth.debian.org
jawnsy-guest at users.alioth.debian.org
Wed Aug 26 13:11:28 UTC 2009
Author: jawnsy-guest
Date: Wed Aug 26 13:11:22 2009
New Revision: 42894
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=42894
Log:
[svn-upgrade] Integrating new upstream version, libflickr-api-perl (1.04)
Modified:
branches/upstream/libflickr-api-perl/current/Changes
branches/upstream/libflickr-api-perl/current/META.yml
branches/upstream/libflickr-api-perl/current/Makefile.PL
branches/upstream/libflickr-api-perl/current/lib/Flickr/API.pm
Modified: branches/upstream/libflickr-api-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libflickr-api-perl/current/Changes?rev=42894&op=diff
==============================================================================
--- branches/upstream/libflickr-api-perl/current/Changes (original)
+++ branches/upstream/libflickr-api-perl/current/Changes Wed Aug 26 13:11:22 2009
@@ -14,3 +14,7 @@
1.03, 2009-08-23
* fix for perl5.6 - when HTTP::Message->decoded_content() comes back empty,
use content() instead.
+
+1.04, 2009-08-25
+ * re-fix for perl5.6 - just require a newer version of HTTP::Message which supports
+ mime-decoding instead.
Modified: branches/upstream/libflickr-api-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libflickr-api-perl/current/META.yml?rev=42894&op=diff
==============================================================================
--- branches/upstream/libflickr-api-perl/current/META.yml (original)
+++ branches/upstream/libflickr-api-perl/current/META.yml Wed Aug 26 13:11:22 2009
@@ -1,6 +1,6 @@
--- #YAML:1.0
name: Flickr-API
-version: 1.03
+version: 1.04
abstract: ~
license: ~
author: ~
@@ -8,6 +8,7 @@
distribution_type: module
requires:
Digest::MD5: 0
+ HTTP::Message: 1.56
HTTP::Request: 0
HTTP::Response: 0
LWP::UserAgent: 0
Modified: branches/upstream/libflickr-api-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libflickr-api-perl/current/Makefile.PL?rev=42894&op=diff
==============================================================================
--- branches/upstream/libflickr-api-perl/current/Makefile.PL (original)
+++ branches/upstream/libflickr-api-perl/current/Makefile.PL Wed Aug 26 13:11:22 2009
@@ -7,6 +7,7 @@
'LWP::UserAgent' => 0,
'HTTP::Request' => 0,
'HTTP::Response' => 0,
+ 'HTTP::Message' => 1.56, # first version of libwww that supports decoded_content()
'URI' => 1.18,
'XML::Parser::Lite::Tree' => 0.06,
'Digest::MD5' => 0,
Modified: branches/upstream/libflickr-api-perl/current/lib/Flickr/API.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libflickr-api-perl/current/lib/Flickr/API.pm?rev=42894&op=diff
==============================================================================
--- branches/upstream/libflickr-api-perl/current/lib/Flickr/API.pm (original)
+++ branches/upstream/libflickr-api-perl/current/lib/Flickr/API.pm Wed Aug 26 13:11:22 2009
@@ -10,7 +10,7 @@
our @ISA = qw(LWP::UserAgent);
-our $VERSION = '1.03';
+our $VERSION = '1.04';
sub new {
my $class = shift;
More information about the Pkg-perl-cvs-commits
mailing list