From owner-svn-ports-all@FreeBSD.ORG Tue Jul 15 05:45:51 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9F2C73CA; Tue, 15 Jul 2014 05:45:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8A41E2C97; Tue, 15 Jul 2014 05:45:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6F5jpgv046066; Tue, 15 Jul 2014 05:45:51 GMT (envelope-from leeym@svn.freebsd.org) Received: (from leeym@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6F5jppd046055; Tue, 15 Jul 2014 05:45:51 GMT (envelope-from leeym@svn.freebsd.org) Message-Id: <201407150545.s6F5jppd046055@svn.freebsd.org> From: Yen-Ming Lee Date: Tue, 15 Jul 2014 05:45:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r361868 - in head/net/p5-Net-Amazon-S3: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Jul 2014 05:45:51 -0000 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 (-)