Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 24 Apr 2020 17:48:00 +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: r532792 - in head/devel: . p5-Data-Object-Role-Arguable
Message-ID:  <202004241748.03OHm0Fa041533@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Fri Apr 24 17:47:59 2020
New Revision: 532792
URL: https://svnweb.freebsd.org/changeset/ports/532792

Log:
  Add p5-Data-Object-Role-Arguable 0.01
  
  Data::Object::Role::Arguable provides a mechanism for unpacking an argument list
  and creating a data structure suitable for passing to the consumer constructor.
  The argslist routine should return a list of attribute names in the order to be
  parsed. An attribute name maybe prefixed with "@" to denote that all remaining
  items should be assigned to an arrayref, e.g. @options, or "%" to denote that
  all remaining items should be assigned to a hashref, e.g. %options.
  
  WWW: https://metacpan.org/release/Data-Object-Role-Arguable

Added:
  head/devel/p5-Data-Object-Role-Arguable/
  head/devel/p5-Data-Object-Role-Arguable/Makefile   (contents, props changed)
  head/devel/p5-Data-Object-Role-Arguable/distinfo   (contents, props changed)
  head/devel/p5-Data-Object-Role-Arguable/pkg-descr   (contents, props changed)
  head/devel/p5-Data-Object-Role-Arguable/pkg-plist   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Fri Apr 24 17:47:53 2020	(r532791)
+++ head/devel/Makefile	Fri Apr 24 17:47:59 2020	(r532792)
@@ -2058,6 +2058,7 @@
     SUBDIR += p5-Data-Object-Opts
     SUBDIR += p5-Data-Object-Plugin
     SUBDIR += p5-Data-Object-Role
+    SUBDIR += p5-Data-Object-Role-Arguable
     SUBDIR += p5-Data-ObjectDriver
     SUBDIR += p5-Data-OptList
     SUBDIR += p5-Data-Page-NoTotalEntries

Added: head/devel/p5-Data-Object-Role-Arguable/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Data-Object-Role-Arguable/Makefile	Fri Apr 24 17:47:59 2020	(r532792)
@@ -0,0 +1,26 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	Data-Object-Role-Arguable
+PORTVERSION=	0.01
+CATEGORIES=	devel perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Arguable Role for Data::Object
+
+LICENSE=	APACHE20
+
+BUILD_DEPENDS=	${RUN_DEPENDS}
+RUN_DEPENDS=	p5-Data-Object-Role-Buildable>=0.03:devel/p5-Data-Object-Role-Buildable \
+		p5-Moo>=2.004000:devel/p5-Moo \
+		p5-routines>=0:devel/p5-routines
+TEST_DEPENDS=	p5-Test-Auto>=0.10:devel/p5-Test-Auto
+
+USES=		perl5
+USE_PERL5=	configure
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/p5-Data-Object-Role-Arguable/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Data-Object-Role-Arguable/distinfo	Fri Apr 24 17:47:59 2020	(r532792)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1587721835
+SHA256 (Data-Object-Role-Arguable-0.01.tar.gz) = 70418f52455ab0b1b9bbb2a778ec5a83a411a5efa69680e80091fd77a5104ad0
+SIZE (Data-Object-Role-Arguable-0.01.tar.gz) = 11482

Added: head/devel/p5-Data-Object-Role-Arguable/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Data-Object-Role-Arguable/pkg-descr	Fri Apr 24 17:47:59 2020	(r532792)
@@ -0,0 +1,8 @@
+Data::Object::Role::Arguable provides a mechanism for unpacking an argument list
+and creating a data structure suitable for passing to the consumer constructor.
+The argslist routine should return a list of attribute names in the order to be
+parsed. An attribute name maybe prefixed with "@" to denote that all remaining
+items should be assigned to an arrayref, e.g. @options, or "%" to denote that
+all remaining items should be assigned to a hashref, e.g. %options.
+
+WWW: https://metacpan.org/release/Data-Object-Role-Arguable

Added: head/devel/p5-Data-Object-Role-Arguable/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Data-Object-Role-Arguable/pkg-plist	Fri Apr 24 17:47:59 2020	(r532792)
@@ -0,0 +1,2 @@
+%%SITE_PERL%%/Data/Object/Role/Arguable.pm
+%%PERL5_MAN3%%/Data::Object::Role::Arguable.3.gz



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