From owner-svn-ports-head@FreeBSD.ORG Thu May 22 12:38:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 171004CA; Thu, 22 May 2014 12:38:27 +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 03D5A2D90; Thu, 22 May 2014 12:38:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4MCcQ9g031689; Thu, 22 May 2014 12:38:26 GMT (envelope-from wen@svn.freebsd.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4MCcQpK031681; Thu, 22 May 2014 12:38:26 GMT (envelope-from wen@svn.freebsd.org) Message-Id: <201405221238.s4MCcQpK031681@svn.freebsd.org> From: Wen Heping Date: Thu, 22 May 2014 12:38:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r354830 - in head/devel: . p5-Return-MultiLevel 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 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: Thu, 22 May 2014 12:38:27 -0000 Author: wen Date: Thu May 22 12:38:25 2014 New Revision: 354830 URL: http://svnweb.freebsd.org/changeset/ports/354830 QAT: https://qat.redports.org/buildarchive/r354830/ Log: Return::MultiLevel provides a way to return immediately from a deeply nested call stack. This is similar to exceptions, but exceptions don't stop automatically at a target frame (and they can be caught by intermediate stack frames). In other words, this is more like setjmp(3)/longjmp(3) than die. WWW: http://search.cpan.org/dist/Return-MultiLevel/ Added: head/devel/p5-Return-MultiLevel/ head/devel/p5-Return-MultiLevel/Makefile (contents, props changed) head/devel/p5-Return-MultiLevel/distinfo (contents, props changed) head/devel/p5-Return-MultiLevel/pkg-descr (contents, props changed) head/devel/p5-Return-MultiLevel/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu May 22 12:28:18 2014 (r354829) +++ head/devel/Makefile Thu May 22 12:38:25 2014 (r354830) @@ -2637,6 +2637,7 @@ SUBDIR += p5-Religion SUBDIR += p5-ResourcePool SUBDIR += p5-Resources + SUBDIR += p5-Return-MultiLevel SUBDIR += p5-Return-Type SUBDIR += p5-Return-Value SUBDIR += p5-Role-Basic Added: head/devel/p5-Return-MultiLevel/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Return-MultiLevel/Makefile Thu May 22 12:38:25 2014 (r354830) @@ -0,0 +1,20 @@ +# Created by: Wen Heping +# $FreeBSD$ + +PORTNAME= Return-MultiLevel +PORTVERSION= 0.03 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:MAUKE +PKGNAMEPREFIX= p5- + +MAINTAINER= wen@FreeBSD.org +COMMENT= Return across multiple call levels + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +USES= perl5 +USE_PERL5= configure + +.include Added: head/devel/p5-Return-MultiLevel/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Return-MultiLevel/distinfo Thu May 22 12:38:25 2014 (r354830) @@ -0,0 +1,2 @@ +SHA256 (Return-MultiLevel-0.03.tar.gz) = b62a0a04a77578f878d8a57d568b74cdfc4a5ff7439e8620c7f90168566f96d4 +SIZE (Return-MultiLevel-0.03.tar.gz) = 4166 Added: head/devel/p5-Return-MultiLevel/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Return-MultiLevel/pkg-descr Thu May 22 12:38:25 2014 (r354830) @@ -0,0 +1,7 @@ +Return::MultiLevel provides a way to return immediately from a +deeply nested call stack. This is similar to exceptions, but +exceptions don't stop automatically at a target frame (and they +can be caught by intermediate stack frames). In other words, +this is more like setjmp(3)/longjmp(3) than die. + +WWW: http://search.cpan.org/dist/Return-MultiLevel/ Added: head/devel/p5-Return-MultiLevel/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Return-MultiLevel/pkg-plist Thu May 22 12:38:25 2014 (r354830) @@ -0,0 +1,6 @@ +%%SITE_PERL%%/Return/MultiLevel.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Return/MultiLevel/.packlist +%%PERL5_MAN3%%/Return::MultiLevel.3.gz +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Return/MultiLevel +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Return +@dirrmtry %%SITE_PERL%%/Return