Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 13 Aug 2014 15:48:42 +0000 (UTC)
From:      Ryan Steinmetz <zi@FreeBSD.org>
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
Message-ID:  <201408131548.s7DFmgd6095298@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <zi@FreeBSD.org>
+# $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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201408131548.s7DFmgd6095298>