svn commit: r325720 - in head/devel: . p5-Syntax-Keyword-Junction
Lars Thegler
lth at FreeBSD.org
Fri Aug 30 20:20:55 UTC 2013
Author: lth
Date: Fri Aug 30 20:20:53 2013
New Revision: 325720
URL: http://svnweb.freebsd.org/changeset/ports/325720
Log:
Perl6 style Junction operators in Perl5. This is a lightweight
module which provides 'Junction' operators, the most commonly used
being any and all.
Added:
head/devel/p5-Syntax-Keyword-Junction/
head/devel/p5-Syntax-Keyword-Junction/Makefile (contents, props changed)
head/devel/p5-Syntax-Keyword-Junction/distinfo (contents, props changed)
head/devel/p5-Syntax-Keyword-Junction/pkg-descr (contents, props changed)
head/devel/p5-Syntax-Keyword-Junction/pkg-plist (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Fri Aug 30 20:14:02 2013 (r325719)
+++ head/devel/Makefile Fri Aug 30 20:20:53 2013 (r325720)
@@ -2691,6 +2691,7 @@
SUBDIR += p5-Sub-Uplevel
SUBDIR += p5-Sub-WrapPackages
SUBDIR += p5-Symbol-Util
+ SUBDIR += p5-Syntax-Keyword-Junction
SUBDIR += p5-Sys-Cpu
SUBDIR += p5-Sys-Info
SUBDIR += p5-Sys-Info-Base
Added: head/devel/p5-Syntax-Keyword-Junction/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-Syntax-Keyword-Junction/Makefile Fri Aug 30 20:20:53 2013 (r325720)
@@ -0,0 +1,27 @@
+# $FreeBSD$
+
+PORTNAME= Syntax-Keyword-Junction
+PORTVERSION= 0.003006
+CATEGORIES= devel perl5
+MASTER_SITES= CPAN
+PKGNAMEPREFIX= p5-
+
+MAINTAINER= lth at FreeBSD.org
+COMMENT= Perl6 style Junction operators in Perl5
+
+USES= perl5
+USE_PERL5= configure
+
+BUILD_DEPENDS= p5-syntax>=0:${PORTSDIR}/devel/p5-syntax \
+ p5-Sub-Exporter-Progressive>=0.001.006:${PORTSDIR}/devel/p5-Sub-Exporter-Progressive
+RUN_DEPENDS:= ${BUILD_DEPENDS}
+
+MAN3= Syntax::Feature::Junction.3 \
+ Syntax::Keyword::Junction.3 \
+ Syntax::Keyword::Junction::All.3 \
+ Syntax::Keyword::Junction::Any.3 \
+ Syntax::Keyword::Junction::Base.3 \
+ Syntax::Keyword::Junction::None.3 \
+ Syntax::Keyword::Junction::One.3
+
+.include <bsd.port.mk>
Added: head/devel/p5-Syntax-Keyword-Junction/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-Syntax-Keyword-Junction/distinfo Fri Aug 30 20:20:53 2013 (r325720)
@@ -0,0 +1,2 @@
+SHA256 (Syntax-Keyword-Junction-0.003006.tar.gz) = 182ab56d86bf3acf292d4ed5893ae0134f43843cdadba3e18f9885e6f86035ec
+SIZE (Syntax-Keyword-Junction-0.003006.tar.gz) = 17377
Added: head/devel/p5-Syntax-Keyword-Junction/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-Syntax-Keyword-Junction/pkg-descr Fri Aug 30 20:20:53 2013 (r325720)
@@ -0,0 +1,4 @@
+This is a lightweight module which provides 'Junction' operators,
+the most commonly used being any and all.
+
+WWW: http://search.cpan.org/dist/Syntax-Keyword-Junction/
Added: head/devel/p5-Syntax-Keyword-Junction/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-Syntax-Keyword-Junction/pkg-plist Fri Aug 30 20:20:53 2013 (r325720)
@@ -0,0 +1,15 @@
+%%SITE_PERL%%/Syntax/Feature/Junction.pm
+%%SITE_PERL%%/Syntax/Keyword/Junction/Any.pm
+%%SITE_PERL%%/Syntax/Keyword/Junction/One.pm
+%%SITE_PERL%%/Syntax/Keyword/Junction/Base.pm
+%%SITE_PERL%%/Syntax/Keyword/Junction/None.pm
+%%SITE_PERL%%/Syntax/Keyword/Junction/All.pm
+%%SITE_PERL%%/Syntax/Keyword/Junction.pm
+%%SITE_PERL%%/%%PERL_ARCH%%/auto/Syntax/Keyword/Junction/.packlist
+ at dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Syntax/Keyword/Junction
+ at dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Syntax/Keyword
+ at dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Syntax
+ at dirrmtry %%SITE_PERL%%/Syntax/Keyword/Junction
+ at dirrmtry %%SITE_PERL%%/Syntax/Keyword
+ at dirrmtry %%SITE_PERL%%/Syntax/Feature
+ at dirrmtry %%SITE_PERL%%/Syntax
More information about the svn-ports-all
mailing list