svn commit: r532812 - in head/devel: . p5-Keyword-Simple
Sunpoet Po-Chuan Hsieh
sunpoet at FreeBSD.org
Fri Apr 24 18:01:10 UTC 2020
Author: sunpoet
Date: Fri Apr 24 18:01:05 2020
New Revision: 532812
URL: https://svnweb.freebsd.org/changeset/ports/532812
Log:
Add p5-Keyword-Simple 0.04
Keyword::Simple lets you implement new keywords in pure Perl. To do this, you
need to write a module and call Keyword::Simple::define in your import method.
Any keywords defined this way will be available in the lexical scope that's
currently being compiled.
WWW: https://metacpan.org/release/Keyword-Simple
Added:
head/devel/p5-Keyword-Simple/
head/devel/p5-Keyword-Simple/Makefile (contents, props changed)
head/devel/p5-Keyword-Simple/distinfo (contents, props changed)
head/devel/p5-Keyword-Simple/pkg-descr (contents, props changed)
head/devel/p5-Keyword-Simple/pkg-plist (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Fri Apr 24 18:00:58 2020 (r532811)
+++ head/devel/Makefile Fri Apr 24 18:01:05 2020 (r532812)
@@ -2610,6 +2610,7 @@
SUBDIR += p5-Jonk
SUBDIR += p5-Keyword-Declare
SUBDIR += p5-Keyword-Pluggable
+ SUBDIR += p5-Keyword-Simple
SUBDIR += p5-LV
SUBDIR += p5-Lexical-Alias
SUBDIR += p5-Lexical-Import
Added: head/devel/p5-Keyword-Simple/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-Keyword-Simple/Makefile Fri Apr 24 18:01:05 2020 (r532812)
@@ -0,0 +1,23 @@
+# Created by: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= Keyword-Simple
+PORTVERSION= 0.04
+CATEGORIES= devel perl5
+MASTER_SITES= CPAN
+MASTER_SITE_SUBDIR= CPAN:MAUKE
+PKGNAMEPREFIX= p5-
+
+MAINTAINER= sunpoet at 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/Simple/Simple.so
+
+.include <bsd.port.mk>
Added: head/devel/p5-Keyword-Simple/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-Keyword-Simple/distinfo Fri Apr 24 18:01:05 2020 (r532812)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1587721873
+SHA256 (Keyword-Simple-0.04.tar.gz) = 9455cb86b92c30027d6eeb5712a04a84d8a3863d399be6ebdd723e5e84d51305
+SIZE (Keyword-Simple-0.04.tar.gz) = 8688
Added: head/devel/p5-Keyword-Simple/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-Keyword-Simple/pkg-descr Fri Apr 24 18:01:05 2020 (r532812)
@@ -0,0 +1,6 @@
+Keyword::Simple lets you implement new keywords in pure Perl. To do this, you
+need to write a module and call Keyword::Simple::define in your import method.
+Any keywords defined this way will be available in the lexical scope that's
+currently being compiled.
+
+WWW: https://metacpan.org/release/Keyword-Simple
Added: head/devel/p5-Keyword-Simple/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-Keyword-Simple/pkg-plist Fri Apr 24 18:01:05 2020 (r532812)
@@ -0,0 +1,3 @@
+%%SITE_ARCH%%/Keyword/Simple.pm
+%%SITE_ARCH%%/auto/Keyword/Simple/Simple.so
+%%PERL5_MAN3%%/Keyword::Simple.3.gz
More information about the svn-ports-head
mailing list