From owner-svn-ports-all@freebsd.org Fri Jul 3 17:16:47 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8A038994C8C; Fri, 3 Jul 2015 17:16:47 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org (repo.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 6C715233B; Fri, 3 Jul 2015 17:16:47 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t63HGlkW030263; Fri, 3 Jul 2015 17:16:47 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t63HGkgq030258; Fri, 3 Jul 2015 17:16:46 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201507031716.t63HGkgq030258@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Fri, 3 Jul 2015 17:16:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r391259 - in head/lang: . p5-Try-Catch 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: Fri, 03 Jul 2015 17:16:47 -0000 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 +# $FreeBSD$ + +PORTNAME= Try-Catch +PORTVERSION= 0.0.5 +CATEGORIES= lang perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:MAMOD +PKGNAMEPREFIX= p5- + +MAINTAINER= adamw@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 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