svn commit: r354830 - in head/devel: . p5-Return-MultiLevel

Wen Heping wen at FreeBSD.org
Thu May 22 12:38:27 UTC 2014


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 <wen at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	Return-MultiLevel
+PORTVERSION=	0.03
+CATEGORIES=	devel perl5
+MASTER_SITES=	CPAN
+MASTER_SITE_SUBDIR=	CPAN:MAUKE
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	wen at FreeBSD.org
+COMMENT=	Return across multiple call levels
+
+LICENSE=	ART10 GPLv1
+LICENSE_COMB=	dual
+
+USES=		perl5
+USE_PERL5=	configure
+
+.include <bsd.port.mk>

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
+ at dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Return/MultiLevel
+ at dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Return
+ at dirrmtry %%SITE_PERL%%/Return


More information about the svn-ports-all mailing list