svn commit: r563611 - in head/devel: . p5-Data-Dmp

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Mon Feb 1 19:20:28 UTC 2021


Author: sunpoet
Date: Mon Feb  1 19:20:24 2021
New Revision: 563611
URL: https://svnweb.freebsd.org/changeset/ports/563611

Log:
  Add p5-Data-Dmp 0.240
  
  Data::Dmp is a Perl dumper like Data::Dumper. It's compact (only about 200 lines
  of code long), starts fast and does not use any non-core modules except
  Regexp::Stringify when dumping regexes. It produces compact single-line output
  (similar to Data::Dumper::Concise). It roughly has the same speed as
  Data::Dumper (usually a bit faster for smaller structures) and faster than
  Data::Dump, but does not offer the various formatting options. It supports
  dumping objects, regexes, circular structures, coderefs. Its code is first based
  on Data::Dump: I removed all the parts that I don't need, particularly the
  pretty formatting stuffs) and added some features that I need like proper regex
  dumping and coderef deparsing.
  
  WWW: https://metacpan.org/release/Data-Dmp

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon Feb  1 19:20:17 2021	(r563610)
+++ head/devel/Makefile	Mon Feb  1 19:20:24 2021	(r563611)
@@ -2012,6 +2012,7 @@
     SUBDIR += p5-Data-Clone
     SUBDIR += p5-Data-Compare
     SUBDIR += p5-Data-Diver
+    SUBDIR += p5-Data-Dmp
     SUBDIR += p5-Data-Domain
     SUBDIR += p5-Data-Dump
     SUBDIR += p5-Data-Dump-Color

Added: head/devel/p5-Data-Dmp/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Data-Dmp/Makefile	Mon Feb  1 19:20:24 2021	(r563611)
@@ -0,0 +1,25 @@
+# Created by: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	Data-Dmp
+PORTVERSION=	0.240
+CATEGORIES=	devel perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	sunpoet at FreeBSD.org
+COMMENT=	Dump Perl data structures as Perl code
+
+LICENSE=	ART10 GPLv1+
+LICENSE_COMB=	dual
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+BUILD_DEPENDS=	${RUN_DEPENDS}
+RUN_DEPENDS=	p5-Regexp-Stringify>=0:devel/p5-Regexp-Stringify
+
+USES=		perl5
+USE_PERL5=	configure
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/p5-Data-Dmp/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Data-Dmp/distinfo	Mon Feb  1 19:20:24 2021	(r563611)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1612101538
+SHA256 (Data-Dmp-0.240.tar.gz) = 5514c811d6fb708ef9a5930144dd4b76c1ccfe243be94423e2e55fc4a29c0f59
+SIZE (Data-Dmp-0.240.tar.gz) = 21548

Added: head/devel/p5-Data-Dmp/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Data-Dmp/pkg-descr	Mon Feb  1 19:20:24 2021	(r563611)
@@ -0,0 +1,12 @@
+Data::Dmp is a Perl dumper like Data::Dumper. It's compact (only about 200 lines
+of code long), starts fast and does not use any non-core modules except
+Regexp::Stringify when dumping regexes. It produces compact single-line output
+(similar to Data::Dumper::Concise). It roughly has the same speed as
+Data::Dumper (usually a bit faster for smaller structures) and faster than
+Data::Dump, but does not offer the various formatting options. It supports
+dumping objects, regexes, circular structures, coderefs. Its code is first based
+on Data::Dump: I removed all the parts that I don't need, particularly the
+pretty formatting stuffs) and added some features that I need like proper regex
+dumping and coderef deparsing.
+
+WWW: https://metacpan.org/release/Data-Dmp

Added: head/devel/p5-Data-Dmp/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/p5-Data-Dmp/pkg-plist	Mon Feb  1 19:20:24 2021	(r563611)
@@ -0,0 +1,2 @@
+%%SITE_PERL%%/Data/Dmp.pm
+%%PERL5_MAN3%%/Data::Dmp.3.gz


More information about the svn-ports-all mailing list