From owner-svn-ports-all@FreeBSD.ORG Tue Apr 14 18:42:54 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 86C91EC6; Tue, 14 Apr 2015 18:42:54 +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 71269D46; Tue, 14 Apr 2015 18:42:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3EIgsis033625; Tue, 14 Apr 2015 18:42:54 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3EIgqLQ033616; Tue, 14 Apr 2015 18:42:52 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201504141842.t3EIgqLQ033616@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 14 Apr 2015 18:42:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r384016 - in head/net: . p5-VM-EC2-Security-CredentialCache 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.20 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, 14 Apr 2015 18:42:54 -0000 Author: sunpoet Date: Tue Apr 14 18:42:51 2015 New Revision: 384016 URL: https://svnweb.freebsd.org/changeset/ports/384016 Log: - Add p5-VM-EC2-Security-CredentialCache 0.21 This module provides a cache for an EC2's IAM credentials represented by VM::EC2::Security::Credentials. Rather than retriving the credentials for every possible call that uses them, cache them until they expire and retreive them again if they have expired. WWW: http://search.cpan.org/dist/VM-EC2-Security-CredentialCache/ Added: head/net/p5-VM-EC2-Security-CredentialCache/ head/net/p5-VM-EC2-Security-CredentialCache/Makefile (contents, props changed) head/net/p5-VM-EC2-Security-CredentialCache/distinfo (contents, props changed) head/net/p5-VM-EC2-Security-CredentialCache/pkg-descr (contents, props changed) head/net/p5-VM-EC2-Security-CredentialCache/pkg-plist (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Tue Apr 14 18:38:13 2015 (r384015) +++ head/net/Makefile Tue Apr 14 18:42:51 2015 (r384016) @@ -761,6 +761,7 @@ SUBDIR += p5-URI-Template-Restrict SUBDIR += p5-URI-ws SUBDIR += p5-VM-EC2 + SUBDIR += p5-VM-EC2-Security-CredentialCache SUBDIR += p5-Validate-Net SUBDIR += p5-WebService-Dropbox SUBDIR += p5-WebService-Prowl Added: head/net/p5-VM-EC2-Security-CredentialCache/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/p5-VM-EC2-Security-CredentialCache/Makefile Tue Apr 14 18:42:51 2015 (r384016) @@ -0,0 +1,23 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= VM-EC2-Security-CredentialCache +PORTVERSION= 0.21 +CATEGORIES= net perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Cache credentials respecting expriation time for IAM roles + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-DateTime-Format-ISO8601>=0:${PORTSDIR}/devel/p5-DateTime-Format-ISO8601 \ + p5-VM-EC2>=0:${PORTSDIR}/net/p5-VM-EC2 +RUN_DEPENDS:= ${BUILD_DEPENDS} + +USE_PERL5= configure +USES= perl5 + +.include Added: head/net/p5-VM-EC2-Security-CredentialCache/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/p5-VM-EC2-Security-CredentialCache/distinfo Tue Apr 14 18:42:51 2015 (r384016) @@ -0,0 +1,2 @@ +SHA256 (VM-EC2-Security-CredentialCache-0.21.tar.gz) = 4ad05e5524984314b9c708b0e7bd8a63dfdd6ecfc423c6fb301e2e30d130931b +SIZE (VM-EC2-Security-CredentialCache-0.21.tar.gz) = 9617 Added: head/net/p5-VM-EC2-Security-CredentialCache/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/p5-VM-EC2-Security-CredentialCache/pkg-descr Tue Apr 14 18:42:51 2015 (r384016) @@ -0,0 +1,6 @@ +This module provides a cache for an EC2's IAM credentials represented by +VM::EC2::Security::Credentials. Rather than retriving the credentials for every +possible call that uses them, cache them until they expire and retreive them +again if they have expired. + +WWW: http://search.cpan.org/dist/VM-EC2-Security-CredentialCache/ Added: head/net/p5-VM-EC2-Security-CredentialCache/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/p5-VM-EC2-Security-CredentialCache/pkg-plist Tue Apr 14 18:42:51 2015 (r384016) @@ -0,0 +1,2 @@ +%%SITE_PERL%%/VM/EC2/Security/CredentialCache.pm +%%PERL5_MAN3%%/VM::EC2::Security::CredentialCache.3.gz