r24086 - in /trunk/libnet-amazon-perl: Changes META.yml README debian/changelog debian/control 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 22:04:30 UTC 2008


Author: gwolf
Date: Sun Aug 10 22:04:28 2008
New Revision: 24086

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

Modified:
    trunk/libnet-amazon-perl/Changes
    trunk/libnet-amazon-perl/META.yml
    trunk/libnet-amazon-perl/README
    trunk/libnet-amazon-perl/debian/changelog
    trunk/libnet-amazon-perl/debian/control
    trunk/libnet-amazon-perl/lib/Net/Amazon.pm
    trunk/libnet-amazon-perl/lib/Net/Amazon/Response/Wishlist.pm

Modified: trunk/libnet-amazon-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-amazon-perl/Changes?rev=24086&op=diff
==============================================================================
--- trunk/libnet-amazon-perl/Changes (original)
+++ trunk/libnet-amazon-perl/Changes Sun Aug 10 22:04:28 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: trunk/libnet-amazon-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-amazon-perl/META.yml?rev=24086&op=diff
==============================================================================
--- trunk/libnet-amazon-perl/META.yml (original)
+++ trunk/libnet-amazon-perl/META.yml Sun Aug 10 22:04:28 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: trunk/libnet-amazon-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-amazon-perl/README?rev=24086&op=diff
==============================================================================
--- trunk/libnet-amazon-perl/README (original)
+++ trunk/libnet-amazon-perl/README Sun Aug 10 22:04:28 2008
@@ -1,5 +1,5 @@
 ######################################################################
-    Net::Amazon 0.49
+    Net::Amazon 0.50
 ######################################################################
 NAME
     Net::Amazon - Framework for accessing amazon.com via REST

Modified: trunk/libnet-amazon-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-amazon-perl/debian/changelog?rev=24086&op=diff
==============================================================================
--- trunk/libnet-amazon-perl/debian/changelog (original)
+++ trunk/libnet-amazon-perl/debian/changelog Sun Aug 10 22:04:28 2008
@@ -1,9 +1,15 @@
-libnet-amazon-perl (0.49-2) UNRELEASED; urgency=low
+libnet-amazon-perl (0.50-1) unstable; urgency=low
 
+  [ gregor herrmann ]
   * Add debian/README.source to document quilt usage, as required by
     Debian Policy since 3.8.0.
 
- -- gregor herrmann <gregoa at debian.org>  Wed, 06 Aug 2008 21:33:55 -0300
+  [ Gunnar Wolf ]
+  * New upstream release
+  * Added myself as an uploader
+  * Standards Version -> 3.8.0
+  
+ -- Gunnar Wolf <gwolf at debian.org>  Sun, 10 Aug 2008 16:59:20 -0500
 
 libnet-amazon-perl (0.49-1) unstable; urgency=low
 

Modified: trunk/libnet-amazon-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-amazon-perl/debian/control?rev=24086&op=diff
==============================================================================
--- trunk/libnet-amazon-perl/debian/control (original)
+++ trunk/libnet-amazon-perl/debian/control Sun Aug 10 22:04:28 2008
@@ -6,8 +6,9 @@
  libxml-simple-perl, liblog-log4perl-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Jaldhar H. Vyas <jaldhar at debian.org>,
- gregor herrmann <gregoa at debian.org>
-Standards-Version: 3.7.3
+ gregor herrmann <gregoa at debian.org>,
+ Gunnar Wolf <gwolf at debian.org>
+Standards-Version: 3.8.0
 Homepage: http://search.cpan.org/dist/Net-Amazon/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libnet-amazon-perl/
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-amazon-perl/

Modified: trunk/libnet-amazon-perl/lib/Net/Amazon.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-amazon-perl/lib/Net/Amazon.pm?rev=24086&op=diff
==============================================================================
--- trunk/libnet-amazon-perl/lib/Net/Amazon.pm (original)
+++ trunk/libnet-amazon-perl/lib/Net/Amazon.pm Sun Aug 10 22:04:28 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: trunk/libnet-amazon-perl/lib/Net/Amazon/Response/Wishlist.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-amazon-perl/lib/Net/Amazon/Response/Wishlist.pm?rev=24086&op=diff
==============================================================================
--- trunk/libnet-amazon-perl/lib/Net/Amazon/Response/Wishlist.pm (original)
+++ trunk/libnet-amazon-perl/lib/Net/Amazon/Response/Wishlist.pm Sun Aug 10 22:04:28 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