From owner-svn-ports-head@freebsd.org Sun Dec 2 09:41:46 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E421A1317362; Sun, 2 Dec 2018 09:41:45 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 874D48C095; Sun, 2 Dec 2018 09:41:45 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6877A24F4C; Sun, 2 Dec 2018 09:41:45 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wB29fjbP093323; Sun, 2 Dec 2018 09:41:45 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wB29fimj093318; Sun, 2 Dec 2018 09:41:44 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201812020941.wB29fimj093318@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 2 Dec 2018 09:41:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r486399 - in head/devel: . py-Dumper X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/devel: . py-Dumper X-SVN-Commit-Revision: 486399 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 874D48C095 X-Spamd-Result: default: False [0.62 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_SPAM_LONG(0.05)[0.050,0]; NEURAL_SPAM_MEDIUM(0.03)[0.029,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_SPAM_SHORT(0.54)[0.537,0] X-Rspamd-Server: mx1.freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Dec 2018 09:41:46 -0000 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@FreeBSD.org +COMMENT= Conveniently print any Python datastructure + +LICENSE= PSFL + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include 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/