svn commit: r403533 - in head/devel: . p5-Data-Serializable
Martin Wilke
miwi at FreeBSD.org
Fri Dec 11 13:55:34 UTC 2015
Author: miwi
Date: Fri Dec 11 13:55:32 2015
New Revision: 403533
URL: https://svnweb.freebsd.org/changeset/ports/403533
Log:
A Moose-based role that enables the consumer to easily serialize/deserialize
data structures. The default serializer is Storable, but any serializer in the
Data::Serializer hierarchy can be used automatically. You can even install your
own custom serializer if the pre-defined ones are not useful for you.
WWW: http://search.cpan.org/dist/Data-Serializable/
PR: 204058
Submitted by: jeremybbaggs at gmail.com
Approved by: mat (mentor)
Differential Revision: D4498
Added:
head/devel/p5-Data-Serializable/
head/devel/p5-Data-Serializable/Makefile (contents, props changed)
head/devel/p5-Data-Serializable/distinfo (contents, props changed)
head/devel/p5-Data-Serializable/pkg-descr (contents, props changed)
head/devel/p5-Data-Serializable/pkg-plist (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Fri Dec 11 13:52:46 2015 (r403532)
+++ head/devel/Makefile Fri Dec 11 13:55:32 2015 (r403533)
@@ -2001,6 +2001,7 @@
SUBDIR += p5-Data-SExpression
SUBDIR += p5-Data-Section
SUBDIR += p5-Data-Section-Simple
+ SUBDIR += p5-Data-Serializable
SUBDIR += p5-Data-Serializer
SUBDIR += p5-Data-Serializer-Sereal
SUBDIR += p5-Data-ShowTable
Added: head/devel/p5-Data-Serializable/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-Data-Serializable/Makefile Fri Dec 11 13:55:32 2015 (r403533)
@@ -0,0 +1,24 @@
+# $FreeBSD$
+
+PORTNAME= Data-Serializable
+PORTVERSION= 0.41.0
+CATEGORIES= devel perl5
+MASTER_SITES= CPAN
+PKGNAMEPREFIX= p5-
+
+MAINTAINER= jeremybbaggs at gmail.com
+COMMENT= Moose role that adds serialization support to any class
+
+LICENSE= GPLv3
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+BUILD_DEPENDS= p5-JSON>=0:${PORTSDIR}/converters/p5-JSON \
+ p5-Module-Runtime>=0:${PORTSDIR}/devel/p5-Module-Runtime \
+ p5-Moose>=0:${PORTSDIR}/devel/p5-Moose \
+ p5-Test-Exception>=0:${PORTSDIR}/devel/p5-Test-Exception
+RUN_DEPENDS:= ${BUILD_DEPENDS}
+
+USES= perl5
+USE_PERL5= configure
+
+.include <bsd.port.mk>
Added: head/devel/p5-Data-Serializable/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-Data-Serializable/distinfo Fri Dec 11 13:55:32 2015 (r403533)
@@ -0,0 +1,2 @@
+SHA256 (Data-Serializable-0.41.0.tar.gz) = b4cc66a23038d82a8a4be75e49d6d021f00585fd1e33ed695447aa20d093f780
+SIZE (Data-Serializable-0.41.0.tar.gz) = 16077
Added: head/devel/p5-Data-Serializable/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-Data-Serializable/pkg-descr Fri Dec 11 13:55:32 2015 (r403533)
@@ -0,0 +1,6 @@
+A Moose-based role that enables the consumer to easily serialize/deserialize
+data structures. The default serializer is Storable, but any serializer in the
+Data::Serializer hierarchy can be used automatically. You can even install your
+own custom serializer if the pre-defined ones are not useful for you.
+
+WWW: http://search.cpan.org/dist/Data-Serializable/
Added: head/devel/p5-Data-Serializable/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/p5-Data-Serializable/pkg-plist Fri Dec 11 13:55:32 2015 (r403533)
@@ -0,0 +1,2 @@
+%%SITE_PERL%%/Data/Serializable.pm
+%%PERL5_MAN3%%/Data::Serializable.3.gz
More information about the svn-ports-all
mailing list