r24084 - in /branches/upstream/libnet-amazon-perl/current: Changes META.yml README lib/Net/Amazon.pm lib/Net/Amazon/Response/Wishlist.pm

gwolf at users.alioth.debian.org gwolf at users.alioth.debian.org
Sun Aug 10 21:57:08 UTC 2008


Author: gwolf
Date: Sun Aug 10 21:57:06 2008
New Revision: 24084

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=24084
Log:
[svn-upgrade] Integrating new upstream version, libnet-amazon-perl (0.50)

Modified:
    branches/upstream/libnet-amazon-perl/current/Changes
    branches/upstream/libnet-amazon-perl/current/META.yml
    branches/upstream/libnet-amazon-perl/current/README
    branches/upstream/libnet-amazon-perl/current/lib/Net/Amazon.pm
    branches/upstream/libnet-amazon-perl/current/lib/Net/Amazon/Response/Wishlist.pm

Modified: branches/upstream/libnet-amazon-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-amazon-perl/current/Changes?rev=24084&op=diff
==============================================================================
--- branches/upstream/libnet-amazon-perl/current/Changes (original)
+++ branches/upstream/libnet-amazon-perl/current/Changes Sun Aug 10 21:57:06 2008
@@ -1,4 +1,8 @@
 Revision history for Perl extension Net::Amazon:
+0.50 (07/29/2008)
+   (cb) Michael Hendricks submitted a patch to guarantee that error 
+        messages are stored as an arrayref.
+
 0.49 (04/24/2008)
    (cb) Make an effort to return the price of an item.  Check for the
         price of an item in the following order: Amazon's price, third
@@ -106,7 +110,7 @@
    (cb) Restrucure the fetch code to reduce the need to directly poke
         the XML where applicable.  There is still cleanup that needs to
         be done.
-   (cb) Remove to need explicitly specify mode parameters.
+   (cb) Remove the need to explicitly specify mode parameters.
    (cb) Autogenerate libraries based on data from Amazon's ECS specs to
         determine a default mode for the user.
    (cb) Autogenerate libraries based on data form Amazon's ECS specs to

Modified: branches/upstream/libnet-amazon-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-amazon-perl/current/META.yml?rev=24084&op=diff
==============================================================================
--- branches/upstream/libnet-amazon-perl/current/META.yml (original)
+++ branches/upstream/libnet-amazon-perl/current/META.yml Sun Aug 10 21:57:06 2008
@@ -1,7 +1,7 @@
 # http://module-build.sourceforge.net/META-spec.html
 #XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
 name:         Net-Amazon
-version:      0.49
+version:      0.50
 version_from: lib/Net/Amazon.pm
 installdirs:  site
 requires:

Modified: branches/upstream/libnet-amazon-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-amazon-perl/current/README?rev=24084&op=diff
==============================================================================
--- branches/upstream/libnet-amazon-perl/current/README (original)
+++ branches/upstream/libnet-amazon-perl/current/README Sun Aug 10 21:57:06 2008
@@ -1,5 +1,5 @@
 ######################################################################
-    Net::Amazon 0.49
+    Net::Amazon 0.50
 ######################################################################
 NAME
     Net::Amazon - Framework for accessing amazon.com via REST

Modified: branches/upstream/libnet-amazon-perl/current/lib/Net/Amazon.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-amazon-perl/current/lib/Net/Amazon.pm?rev=24084&op=diff
==============================================================================
--- branches/upstream/libnet-amazon-perl/current/lib/Net/Amazon.pm (original)
+++ branches/upstream/libnet-amazon-perl/current/lib/Net/Amazon.pm Sun Aug 10 21:57:06 2008
@@ -8,7 +8,7 @@
 use strict;
 use warnings;
 
-our $VERSION          = '0.49';
+our $VERSION          = '0.50';
 our $WSDL_DATE        = '2007-10-29';
 our $Locale           = 'us';
 our @CANNED_RESPONSES = ();
@@ -464,7 +464,7 @@
                 push @errors, $e->{Message};
             }
             # multiple errors, set arrary ref
-            $self->messages( @errors );
+            $self->messages( \@errors );
         } else {
             # single error, create array
             $self->messages( [ $errref->{Error}->{Message} ] );

Modified: branches/upstream/libnet-amazon-perl/current/lib/Net/Amazon/Response/Wishlist.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-amazon-perl/current/lib/Net/Amazon/Response/Wishlist.pm?rev=24084&op=diff
==============================================================================
--- branches/upstream/libnet-amazon-perl/current/lib/Net/Amazon/Response/Wishlist.pm (original)
+++ branches/upstream/libnet-amazon-perl/current/lib/Net/Amazon/Response/Wishlist.pm Sun Aug 10 21:57:06 2008
@@ -80,7 +80,7 @@
                 push @errors, $e->{Message};
             }
             # multiple errors, set arrary ref
-            $res->messages( @errors );
+            $res->messages( \@errors );
         } else {
             # single error, create array
             return -1 if $errref->{Error}->{Message} =~ /Valid values must be/;




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