svn commit: r459603 - in head/devel: . p5-MooX-Thunking

Wen Heping wen at FreeBSD.org
Sun Jan 21 12:49:54 UTC 2018


Author: wen
Date: Sun Jan 21 12:49:52 2018
New Revision: 459603
URL: https://svnweb.freebsd.org/changeset/ports/459603

Log:
  This is a Moo extension. It allows another value for the is parameter to "has"
  in Moo: "thunked". If used, this will allow you to transparently provide either
  a real value for the attribute, or a "CodeLike" in Types::TypeTiny that when
  called will return such a real value.
  
  WWW: http://search.cpan.org/dist/MooX-Thunking/

Added:
  head/devel/p5-MooX-Thunking/
  head/devel/p5-MooX-Thunking/Makefile   (contents, props changed)
  head/devel/p5-MooX-Thunking/distinfo   (contents, props changed)
  head/devel/p5-MooX-Thunking/pkg-descr   (contents, props changed)
  head/devel/p5-MooX-Thunking/pkg-plist   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Jan 21 12:40:37 2018	(r459602)
+++ head/devel/Makefile	Sun Jan 21 12:49:52 2018	(r459603)
@@ -2926,6 +2926,7 @@
     SUBDIR += p5-MooX-HandlesVia
     SUBDIR += p5-MooX-Options
     SUBDIR += p5-MooX-StrictConstructor
+    SUBDIR += p5-MooX-Thunking
     SUBDIR += p5-MooX-TypeTiny
     SUBDIR += p5-MooX-Types-MooseLike
     SUBDIR += p5-MooX-Types-MooseLike-Numeric

Added: head/devel/p5-MooX-Thunking/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-MooX-Thunking/Makefile	Sun Jan 21 12:49:52 2018	(r459603)
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+PORTNAME=	MooX-Thunking
+PORTVERSION=	0.07
+CATEGORIES=	devel perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	wen at FreeBSD.org
+COMMENT=	Allow Moo attributes to be thunked
+
+LICENSE=	ART10 GPLv1+
+LICENSE_COMB=	dual
+
+BUILD_DEPENDS=	p5-Moo>=0:devel/p5-Moo \
+		p5-Type-Tiny>=0:devel/p5-Type-Tiny
+RUN_DEPENDS:=	${BUILD_DEPENDS}
+
+USES=		perl5
+USE_PERL5=	configure
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/p5-MooX-Thunking/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-MooX-Thunking/distinfo	Sun Jan 21 12:49:52 2018	(r459603)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1515339350
+SHA256 (MooX-Thunking-0.07.tar.gz) = a2b83320bd639b27848b184cff6af3c113c016ecc3a3b1fd7f2b27452f6da83a
+SIZE (MooX-Thunking-0.07.tar.gz) = 4000

Added: head/devel/p5-MooX-Thunking/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-MooX-Thunking/pkg-descr	Sun Jan 21 12:49:52 2018	(r459603)
@@ -0,0 +1,6 @@
+This is a Moo extension. It allows another value for the is parameter to "has"
+in Moo: "thunked". If used, this will allow you to transparently provide either
+a real value for the attribute, or a "CodeLike" in Types::TypeTiny that when
+called will return such a real value.
+
+WWW: http://search.cpan.org/dist/MooX-Thunking/

Added: head/devel/p5-MooX-Thunking/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-MooX-Thunking/pkg-plist	Sun Jan 21 12:49:52 2018	(r459603)
@@ -0,0 +1,2 @@
+%%SITE_PERL%%/MooX/Thunking.pm
+%%PERL5_MAN3%%/MooX::Thunking.3.gz


More information about the svn-ports-all mailing list