Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 26 Apr 2020 11:53:31 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r533005 - in head/devel: . p5-Syntax-Keyword-Try
Message-ID:  <202004261153.03QBrVgn025961@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sun Apr 26 11:53:30 2020
New Revision: 533005
URL: https://svnweb.freebsd.org/changeset/ports/533005

Log:
  Add p5-Syntax-Keyword-Try 0.11
  
  Syntax::Keyword::Try provides a syntax plugin that implements exception-handling
  semantics in a form familiar to users of other languages, being built on a block
  labeled with the try keyword, followed by at least one of a catch or finally
  block.
  
  As well as providing a handy syntax for this useful behaviour, this module also
  serves to contain a number of code examples for how to implement parser plugins
  and manipulate optrees to provide new syntax and behaviours for perl code.
  
  WWW: https://metacpan.org/release/Syntax-Keyword-Try

Added:
  head/devel/p5-Syntax-Keyword-Try/
  head/devel/p5-Syntax-Keyword-Try/Makefile   (contents, props changed)
  head/devel/p5-Syntax-Keyword-Try/distinfo   (contents, props changed)
  head/devel/p5-Syntax-Keyword-Try/pkg-descr   (contents, props changed)
  head/devel/p5-Syntax-Keyword-Try/pkg-plist   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Apr 26 10:34:46 2020	(r533004)
+++ head/devel/Makefile	Sun Apr 26 11:53:30 2020	(r533005)
@@ -3251,6 +3251,7 @@
     SUBDIR += p5-Symbol-Util
     SUBDIR += p5-Syntax-Keyword-Gather
     SUBDIR += p5-Syntax-Keyword-Junction
+    SUBDIR += p5-Syntax-Keyword-Try
     SUBDIR += p5-Sys-CPU
     SUBDIR += p5-Sys-Info
     SUBDIR += p5-Sys-Info-Base

Added: head/devel/p5-Syntax-Keyword-Try/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Syntax-Keyword-Try/Makefile	Sun Apr 26 11:53:30 2020	(r533005)
@@ -0,0 +1,23 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	Syntax-Keyword-Try
+PORTVERSION=	0.11
+CATEGORIES=	devel perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	try/catch/finally syntax for Perl
+
+LICENSE=	ART10 GPLv1+
+LICENSE_COMB=	dual
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		perl5
+USE_PERL5=	modbuild
+
+post-install:
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Syntax/Keyword/Try/Try.so
+
+.include <bsd.port.mk>

Added: head/devel/p5-Syntax-Keyword-Try/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Syntax-Keyword-Try/distinfo	Sun Apr 26 11:53:30 2020	(r533005)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1587756718
+SHA256 (Syntax-Keyword-Try-0.11.tar.gz) = 262756de7068441260f94e61e378a5a404e7cdcd1cc1fdb0e30d7d1a202577be
+SIZE (Syntax-Keyword-Try-0.11.tar.gz) = 28973

Added: head/devel/p5-Syntax-Keyword-Try/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Syntax-Keyword-Try/pkg-descr	Sun Apr 26 11:53:30 2020	(r533005)
@@ -0,0 +1,10 @@
+Syntax::Keyword::Try provides a syntax plugin that implements exception-handling
+semantics in a form familiar to users of other languages, being built on a block
+labeled with the try keyword, followed by at least one of a catch or finally
+block.
+
+As well as providing a handy syntax for this useful behaviour, this module also
+serves to contain a number of code examples for how to implement parser plugins
+and manipulate optrees to provide new syntax and behaviours for perl code.
+
+WWW: https://metacpan.org/release/Syntax-Keyword-Try

Added: head/devel/p5-Syntax-Keyword-Try/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Syntax-Keyword-Try/pkg-plist	Sun Apr 26 11:53:30 2020	(r533005)
@@ -0,0 +1,3 @@
+%%SITE_ARCH%%/Syntax/Keyword/Try.pm
+%%SITE_ARCH%%/auto/Syntax/Keyword/Try/Try.so
+%%PERL5_MAN3%%/Syntax::Keyword::Try.3.gz



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