From owner-svn-ports-head@FreeBSD.ORG Wed Aug 13 15:48:44 2014 Return-Path: Delivered-To: svn-ports-head@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 E671843E; Wed, 13 Aug 2014 15:48:43 +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 C68352843; Wed, 13 Aug 2014 15:48:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7DFmh1b095303; Wed, 13 Aug 2014 15:48:43 GMT (envelope-from zi@FreeBSD.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7DFmgd6095298; Wed, 13 Aug 2014 15:48:42 GMT (envelope-from zi@FreeBSD.org) Message-Id: <201408131548.s7DFmgd6095298@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: zi set sender to zi@FreeBSD.org using -f From: Ryan Steinmetz Date: Wed, 13 Aug 2014 15:48:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364793 - in head/lang: . p5-Try-Tiny-Retry X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Aug 2014 15:48:44 -0000 Author: zi Date: Wed Aug 13 15:48:42 2014 New Revision: 364793 URL: http://svnweb.freebsd.org/changeset/ports/364793 QAT: https://qat.redports.org/buildarchive/r364793/ Log: New port: lang/p5-Try-Tiny-Retry: This module extends Try::Tiny to add support for retries. Try::Tiny provides bare bones try/catch statements that are designed to minimize common mistakes done with eval blocks (for instance assuming that $@ is set to a true value on error, or clobbering previous values of $@, and NOTHING else. WWW: http://search.cpan.org/dist/Try-Tiny-Retry/ Added: head/lang/p5-Try-Tiny-Retry/ head/lang/p5-Try-Tiny-Retry/Makefile (contents, props changed) head/lang/p5-Try-Tiny-Retry/distinfo (contents, props changed) head/lang/p5-Try-Tiny-Retry/pkg-descr (contents, props changed) head/lang/p5-Try-Tiny-Retry/pkg-plist (contents, props changed) Modified: head/lang/Makefile Modified: head/lang/Makefile ============================================================================== --- head/lang/Makefile Wed Aug 13 15:44:12 2014 (r364792) +++ head/lang/Makefile Wed Aug 13 15:48:42 2014 (r364793) @@ -215,6 +215,7 @@ SUBDIR += p5-Tcl SUBDIR += p5-Test-XPath SUBDIR += p5-Try-Tiny + SUBDIR += p5-Try-Tiny-Retry SUBDIR += p5-TryCatch SUBDIR += p5-ePerl SUBDIR += p5-signatures Added: head/lang/p5-Try-Tiny-Retry/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/p5-Try-Tiny-Retry/Makefile Wed Aug 13 15:48:42 2014 (r364793) @@ -0,0 +1,20 @@ +# Created by: Ryan Steinmetz +# $FreeBSD$ + +PORTNAME= Try-Tiny-Retry +PORTVERSION= 0.004 +CATEGORIES= lang perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:DAGOLDEN +PKGNAMEPREFIX= p5- + +MAINTAINER= perl@FreeBSD.org +COMMENT= Extends Try::Tiny to allow retries + +BUILD_DEPENDS= p5-Try-Tiny>0:${PORTSDIR}/lang/p5-Try-Tiny +RUN_DEPENDS:= ${BUILD_DEPENDS} + +USES= perl5 +USE_PERL5= configure + +.include Added: head/lang/p5-Try-Tiny-Retry/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/p5-Try-Tiny-Retry/distinfo Wed Aug 13 15:48:42 2014 (r364793) @@ -0,0 +1,2 @@ +SHA256 (Try-Tiny-Retry-0.004.tar.gz) = 8af70c1bd46d749388738b7ea03c703cac898be939a5ff37117a01ed7eda8bbe +SIZE (Try-Tiny-Retry-0.004.tar.gz) = 17228 Added: head/lang/p5-Try-Tiny-Retry/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/p5-Try-Tiny-Retry/pkg-descr Wed Aug 13 15:48:42 2014 (r364793) @@ -0,0 +1,8 @@ +This module extends Try::Tiny to add support for retries. + +Try::Tiny provides bare bones try/catch statements that are designed +to minimize common mistakes done with eval blocks (for instance assuming +that $@ is set to a true value on error, or clobbering previous values +of $@, and NOTHING else. + +WWW: http://search.cpan.org/dist/Try-Tiny-Retry/ Added: head/lang/p5-Try-Tiny-Retry/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/p5-Try-Tiny-Retry/pkg-plist Wed Aug 13 15:48:42 2014 (r364793) @@ -0,0 +1,5 @@ +%%PERL5_MAN3%%/Try::Tiny::Retry.3.gz +%%SITE_PERL%%/Try/Tiny/Retry.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Try/Tiny/Retry/.packlist +@dirrmtry %%SITE_PERL%%/Try/Tiny +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Try/Tiny/Retry