svn commit: r361868 - in head/net/p5-Net-Amazon-S3: . files

Yen-Ming Lee leeym at FreeBSD.org
Tue Jul 15 05:45:51 UTC 2014


Author: leeym
Date: Tue Jul 15 05:45:50 2014
New Revision: 361868
URL: http://svnweb.freebsd.org/changeset/ports/361868
QAT: https://qat.redports.org/buildarchive/r361868/

Log:
  - update to 0.60

Modified:
  head/net/p5-Net-Amazon-S3/Makefile
  head/net/p5-Net-Amazon-S3/distinfo
  head/net/p5-Net-Amazon-S3/files/patch-moosefix

Modified: head/net/p5-Net-Amazon-S3/Makefile
==============================================================================
--- head/net/p5-Net-Amazon-S3/Makefile	Tue Jul 15 05:37:07 2014	(r361867)
+++ head/net/p5-Net-Amazon-S3/Makefile	Tue Jul 15 05:45:50 2014	(r361868)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	Net-Amazon-S3
-PORTVERSION=	0.59
-PORTREVISION=	2
+PORTVERSION=	0.60
 CATEGORIES=	net perl5
 MASTER_SITES=	CPAN
 PKGNAMEPREFIX=	p5-

Modified: head/net/p5-Net-Amazon-S3/distinfo
==============================================================================
--- head/net/p5-Net-Amazon-S3/distinfo	Tue Jul 15 05:37:07 2014	(r361867)
+++ head/net/p5-Net-Amazon-S3/distinfo	Tue Jul 15 05:45:50 2014	(r361868)
@@ -1,2 +1,2 @@
-SHA256 (Net-Amazon-S3-0.59.tar.gz) = 94f2bd6b317a9142e400d7d17bd573dc9d22284c3ceaa4864474ba674e0e2e9f
-SIZE (Net-Amazon-S3-0.59.tar.gz) = 52272
+SHA256 (Net-Amazon-S3-0.60.tar.gz) = 628937132268e501fb82410f96636e01b183423ea133b6c362894da109d6ac81
+SIZE (Net-Amazon-S3-0.60.tar.gz) = 53232

Modified: head/net/p5-Net-Amazon-S3/files/patch-moosefix
==============================================================================
--- head/net/p5-Net-Amazon-S3/files/patch-moosefix	Tue Jul 15 05:37:07 2014	(r361867)
+++ head/net/p5-Net-Amazon-S3/files/patch-moosefix	Tue Jul 15 05:45:50 2014	(r361868)
@@ -1,41 +1,11 @@
-diff --git a/lib/Net/Amazon/S3/Client/Object.pm b/lib/Net/Amazon/S3/Client/Object.pm
-index d10cba7..3d70d33 100755
---- lib/Net/Amazon/S3/Client/Object.pm
-+++ lib/Net/Amazon/S3/Client/Object.pm
-@@ -13,7 +13,7 @@ use IO::File 1.14;
- # ABSTRACT: An easy-to-use Amazon S3 client object
- 
- enum 'AclShort' =>
--    qw(private public-read public-read-write authenticated-read);
-+    [ qw(private public-read public-read-write authenticated-read) ];
+--- lib/Net/Amazon/S3/Client/Object.pm.orig	2014-07-13 05:44:37.000000000 -0700
++++ lib/Net/Amazon/S3/Client/Object.pm	2014-07-13 05:44:46.000000000 -0700
+@@ -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 );
-diff --git a/lib/Net/Amazon/S3/HTTPRequest.pm b/lib/Net/Amazon/S3/HTTPRequest.pm
-index 69c6327..eeb9584 100755
---- lib/Net/Amazon/S3/HTTPRequest.pm
-+++ lib/Net/Amazon/S3/HTTPRequest.pm
-@@ -13,7 +13,7 @@ use URI;
- my $METADATA_PREFIX      = 'x-amz-meta-';
- my $AMAZON_HEADER_PREFIX = 'x-amz-';
- 
--enum 'HTTPMethod' => qw(DELETE GET HEAD PUT POST);
-+enum 'HTTPMethod' => [ qw(DELETE GET HEAD PUT POST) ];
- 
- has 's3'     => ( is => 'ro', isa => 'Net::Amazon::S3', required => 1 );
- has 'method' => ( is => 'ro', isa => 'HTTPMethod',      required => 1 );
-diff --git a/lib/Net/Amazon/S3/Request.pm b/lib/Net/Amazon/S3/Request.pm
-index 9dded27..0415880 100644
---- lib/Net/Amazon/S3/Request.pm
-+++ lib/Net/Amazon/S3/Request.pm
-@@ -7,8 +7,8 @@ use Regexp::Common qw /net/;
- # ABSTRACT: Base class for request objects
- 
- enum 'AclShort' =>
--    qw(private public-read public-read-write authenticated-read);
--enum 'LocationConstraint' => ( 'US', 'EU' );
-+    [ qw(private public-read public-read-write authenticated-read) ];
-+enum 'LocationConstraint' => [ 'US', 'EU' ];
- 
- # To comply with Amazon S3 requirements, bucket names must:
- # Contain lowercase letters, numbers, periods (.), underscores (_), and dashes (-)


More information about the svn-ports-all mailing list