1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-14 19:10:49 +02:00

gnu: Add Perl Net-Amazon-S3.

* gnu/packages/patches/perl-net-amazon-s3-moose-warning.patch: New patch.
* gnu-system.am (dist_patch_DATA): Add it.
* gnu/packages/web.scm (perl-net-amazon-s3): New variable.
This commit is contained in:
Eric Bavier 2015-04-07 17:03:04 -05:00
parent 3dd6bee1f2
commit 38e62c81ee
3 changed files with 62 additions and 0 deletions

View file

@ -0,0 +1,17 @@
Patch borrowed from nixpkgs. Works around warning message produced by the
current version of Moose:
"Passing a list of values to enum is deprecated. Enum values should be wrapped
in an arrayref."
--- Net-Amazon-S3-0.60/lib/Net/Amazon/S3/Client/Object.pm 2015-04-15 16:18:47.226410022 -0500
+++ Net-Amazon-S3-0.60/lib/Net/Amazon/S3/Client/Object.pm 2015-04-15 16:19:25.410408425 -0500
@@ -19,7 +19,7 @@
[ qw(private public-read public-read-write authenticated-read) ];
enum 'StorageClass' =>
- qw(standard reduced_redundancy);
+ [ qw(standard reduced_redundancy) ];
has 'client' =>
( is => 'ro', isa => 'Net::Amazon::S3::Client', required => 1 );