svn commit: r391259 - in head/lang: . p5-Try-Catch
Adam Weinberger
adamw at FreeBSD.org
Fri Jul 3 17:16:47 UTC 2015
Author: adamw
Date: Fri Jul 3 17:16:45 2015
New Revision: 391259
URL: https://svnweb.freebsd.org/changeset/ports/391259
Log:
Add lang/p5-Try-Catch, a stripped-down, faster implementation of
p5-Try-Tiny.
Added:
head/lang/p5-Try-Catch/
head/lang/p5-Try-Catch/Makefile (contents, props changed)
head/lang/p5-Try-Catch/distinfo (contents, props changed)
head/lang/p5-Try-Catch/pkg-descr (contents, props changed)
head/lang/p5-Try-Catch/pkg-plist (contents, props changed)
Modified:
head/lang/Makefile
Modified: head/lang/Makefile
==============================================================================
--- head/lang/Makefile Fri Jul 3 17:03:45 2015 (r391258)
+++ head/lang/Makefile Fri Jul 3 17:16:45 2015 (r391259)
@@ -212,6 +212,7 @@
SUBDIR += p5-Switch
SUBDIR += p5-Tcl
SUBDIR += p5-Test-XPath
+ SUBDIR += p5-Try-Catch
SUBDIR += p5-Try-Tiny
SUBDIR += p5-Try-Tiny-Retry
SUBDIR += p5-TryCatch
Added: head/lang/p5-Try-Catch/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/lang/p5-Try-Catch/Makefile Fri Jul 3 17:16:45 2015 (r391259)
@@ -0,0 +1,20 @@
+# Created by: Adam Weinberger <adamw at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= Try-Catch
+PORTVERSION= 0.0.5
+CATEGORIES= lang perl5
+MASTER_SITES= CPAN
+MASTER_SITE_SUBDIR= CPAN:MAMOD
+PKGNAMEPREFIX= p5-
+
+MAINTAINER= adamw at FreeBSD.org
+COMMENT= Try/Catch exception handler based on Try::Tiny, but faster
+
+LICENSE= ART10 GPLv1
+LICENSE_COMB= dual
+
+USES= perl5
+USE_PERL5= configure
+
+.include <bsd.port.mk>
Added: head/lang/p5-Try-Catch/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/lang/p5-Try-Catch/distinfo Fri Jul 3 17:16:45 2015 (r391259)
@@ -0,0 +1,2 @@
+SHA256 (Try-Catch-0.0.5.tar.gz) = fc03f25af887190c1195d061cfcf93955de60fa9a642fc1a9afcdebe83f576c5
+SIZE (Try-Catch-0.0.5.tar.gz) = 7610
Added: head/lang/p5-Try-Catch/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/lang/p5-Try-Catch/pkg-descr Fri Jul 3 17:16:45 2015 (r391259)
@@ -0,0 +1,7 @@
+A small, fast, try catch blocks for perl, it's inspired and mostly copied from
+Try::Tiny but with some modifications to boost execution speed.
+
+Consider Try::Catch a stripped Try::Tiny version with no blessing and no usage
+of Sub::Name.
+
+WWW: https://metacpan.org/pod/Try::Catch
Added: head/lang/p5-Try-Catch/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/lang/p5-Try-Catch/pkg-plist Fri Jul 3 17:16:45 2015 (r391259)
@@ -0,0 +1,2 @@
+%%SITE_PERL%%/Try/Catch.pm
+%%PERL5_MAN3%%/Try::Catch.3.gz
More information about the svn-ports-all
mailing list