svn commit: r486399 - in head/devel: . py-Dumper

Kurt Jaeger pi at FreeBSD.org
Sun Dec 2 09:41:46 UTC 2018


Author: pi
Date: Sun Dec  2 09:41:44 2018
New Revision: 486399
URL: https://svnweb.freebsd.org/changeset/ports/486399

Log:
  New port: devel/py-Dumper
  
  Dump Python data structures (including class instances) in a nicely-
  nested, easy-to-read form. Handles recursive data structures properly,
  and has sensible options for limiting the extent of the dump both
  by simple depth and by some rules for how to handle contained
  instances.
  
  WWW: https://pypi.org/project/Dumper/

Added:
  head/devel/py-Dumper/
  head/devel/py-Dumper/Makefile   (contents, props changed)
  head/devel/py-Dumper/distinfo   (contents, props changed)
  head/devel/py-Dumper/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Dec  2 09:35:44 2018	(r486398)
+++ head/devel/Makefile	Sun Dec  2 09:41:44 2018	(r486399)
@@ -4260,6 +4260,7 @@
     SUBDIR += py-BytecodeAssembler
     SUBDIR += py-DateTime
     SUBDIR += py-DocumentTemplate
+    SUBDIR += py-Dumper
     SUBDIR += py-ExtensionClass
     SUBDIR += py-Faker
     SUBDIR += py-IBMQuantumExperience

Added: head/devel/py-Dumper/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-Dumper/Makefile	Sun Dec  2 09:41:44 2018	(r486399)
@@ -0,0 +1,19 @@
+# $FreeBSD$
+
+PORTNAME=	Dumper
+PORTVERSION=	1.0.4
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	pi at FreeBSD.org
+COMMENT=	Conveniently print any Python datastructure
+
+LICENSE=	PSFL
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-Dumper/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-Dumper/distinfo	Sun Dec  2 09:41:44 2018	(r486399)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1543743096
+SHA256 (Dumper-1.0.4.tar.gz) = 2629c27b66707c6767b126b7fd17d2a0d78e0c1850adf16faf5ecdba12512389
+SIZE (Dumper-1.0.4.tar.gz) = 11935

Added: head/devel/py-Dumper/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-Dumper/pkg-descr	Sun Dec  2 09:41:44 2018	(r486399)
@@ -0,0 +1,7 @@
+Dump Python data structures (including class instances) in a nicely-
+nested, easy-to-read form. Handles recursive data structures properly,
+and has sensible options for limiting the extent of the dump both
+by simple depth and by some rules for how to handle contained
+instances.
+
+WWW: https://pypi.org/project/Dumper/


More information about the svn-ports-head mailing list