Date: Mon, 4 Mar 2019 17:47:07 +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: r494610 - in head/devel: . p5-Keyword-Pluggable Message-ID: <201903041747.x24Hl7f3057376@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Mon Mar 4 17:47:07 2019 New Revision: 494610 URL: https://svnweb.freebsd.org/changeset/ports/494610 Log: Add p5-Keyword-Pluggable 1.04 Keyword::Pluggable lets you implement new keywords in pure Perl. To do this, you need to write a module and call Keyword::Pluggable::define in your import method. Any keywords defined this way will be available in the scope that's currently being compiled. The scope can be lexical, packaged, and global. WWW: https://metacpan.org/release/Keyword-Pluggable Added: head/devel/p5-Keyword-Pluggable/ head/devel/p5-Keyword-Pluggable/Makefile (contents, props changed) head/devel/p5-Keyword-Pluggable/distinfo (contents, props changed) head/devel/p5-Keyword-Pluggable/pkg-descr (contents, props changed) head/devel/p5-Keyword-Pluggable/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Mar 4 16:44:10 2019 (r494609) +++ head/devel/Makefile Mon Mar 4 17:47:07 2019 (r494610) @@ -2824,6 +2824,7 @@ SUBDIR += p5-JSON-Schema SUBDIR += p5-Java SUBDIR += p5-Jonk + SUBDIR += p5-Keyword-Pluggable SUBDIR += p5-LV SUBDIR += p5-Lexical-Alias SUBDIR += p5-Lexical-Import Added: head/devel/p5-Keyword-Pluggable/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Keyword-Pluggable/Makefile Mon Mar 4 17:47:07 2019 (r494610) @@ -0,0 +1,23 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= Keyword-Pluggable +PORTVERSION= 1.04 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:KARASIK +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Define new keywords in pure Perl + +LICENSE= ART10 GPLv1+ +LICENSE_COMB= dual + +USES= perl5 +USE_PERL5= configure + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Keyword/Pluggable/Pluggable.so + +.include <bsd.port.mk> Added: head/devel/p5-Keyword-Pluggable/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Keyword-Pluggable/distinfo Mon Mar 4 17:47:07 2019 (r494610) @@ -0,0 +1,3 @@ +TIMESTAMP = 1551642563 +SHA256 (Keyword-Pluggable-1.04.tar.gz) = c2cdc0f08e5533cd530195aef418901d41b9a1258747a1785dc5ccb3b85cc90c +SIZE (Keyword-Pluggable-1.04.tar.gz) = 7781 Added: head/devel/p5-Keyword-Pluggable/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Keyword-Pluggable/pkg-descr Mon Mar 4 17:47:07 2019 (r494610) @@ -0,0 +1,6 @@ +Keyword::Pluggable lets you implement new keywords in pure Perl. To do this, you +need to write a module and call Keyword::Pluggable::define in your import +method. Any keywords defined this way will be available in the scope that's +currently being compiled. The scope can be lexical, packaged, and global. + +WWW: https://metacpan.org/release/Keyword-Pluggable Added: head/devel/p5-Keyword-Pluggable/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Keyword-Pluggable/pkg-plist Mon Mar 4 17:47:07 2019 (r494610) @@ -0,0 +1,3 @@ +%%SITE_ARCH%%/Keyword/Pluggable.pm +%%SITE_ARCH%%/auto/Keyword/Pluggable/Pluggable.so +%%PERL5_MAN3%%/Keyword::Pluggable.3.gz
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903041747.x24Hl7f3057376>