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@gmail.com Approved by: mat (mentor) Differential Revision: D4498
This commit is contained in:
parent
86dd1f9a20
commit
148ed443c2
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=403533
5 changed files with 35 additions and 0 deletions
|
@ -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
|
||||
|
|
24
devel/p5-Data-Serializable/Makefile
Normal file
24
devel/p5-Data-Serializable/Makefile
Normal file
|
@ -0,0 +1,24 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= Data-Serializable
|
||||
PORTVERSION= 0.41.0
|
||||
CATEGORIES= devel perl5
|
||||
MASTER_SITES= CPAN
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
||||
MAINTAINER= jeremybbaggs@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>
|
2
devel/p5-Data-Serializable/distinfo
Normal file
2
devel/p5-Data-Serializable/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
SHA256 (Data-Serializable-0.41.0.tar.gz) = b4cc66a23038d82a8a4be75e49d6d021f00585fd1e33ed695447aa20d093f780
|
||||
SIZE (Data-Serializable-0.41.0.tar.gz) = 16077
|
6
devel/p5-Data-Serializable/pkg-descr
Normal file
6
devel/p5-Data-Serializable/pkg-descr
Normal file
|
@ -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/
|
2
devel/p5-Data-Serializable/pkg-plist
Normal file
2
devel/p5-Data-Serializable/pkg-plist
Normal file
|
@ -0,0 +1,2 @@
|
|||
%%SITE_PERL%%/Data/Serializable.pm
|
||||
%%PERL5_MAN3%%/Data::Serializable.3.gz
|
Loading…
Reference in a new issue