Date: Sat, 30 Mar 2019 22:16:43 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r497365 - in head/devel: . py-addict Message-ID: <201903302216.x2UMGhCN080762@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Sat Mar 30 22:16:43 2019 New Revision: 497365 URL: https://svnweb.freebsd.org/changeset/ports/497365 Log: New port: devel/py-addict: Dictionary whose items can be set using both attribute and item syntax Added: head/devel/py-addict/ head/devel/py-addict/Makefile (contents, props changed) head/devel/py-addict/distinfo (contents, props changed) head/devel/py-addict/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Mar 30 22:06:36 2019 (r497364) +++ head/devel/Makefile Sat Mar 30 22:16:43 2019 (r497365) @@ -4289,6 +4289,7 @@ SUBDIR += py-XStatic-tv4 SUBDIR += py-ZopeUndo SUBDIR += py-adb + SUBDIR += py-addict SUBDIR += py-aenum SUBDIR += py-aiofiles SUBDIR += py-aioice Added: head/devel/py-addict/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-addict/Makefile Sat Mar 30 22:16:43 2019 (r497365) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= addict +DISTVERSION= 2.2.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Dictionary whose items can be set using both attribute and item syntax + +LICENSE= MIT + +USES= python +USE_PYTHON= distutils autoplist + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/devel/py-addict/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-addict/distinfo Sat Mar 30 22:16:43 2019 (r497365) @@ -0,0 +1,3 @@ +TIMESTAMP = 1553984010 +SHA256 (addict-2.2.0.tar.gz) = 57c41c427cb355e17f01d836a47aeae51e2175cf334e5d58e78476c77b224da1 +SIZE (addict-2.2.0.tar.gz) = 5059 Added: head/devel/py-addict/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-addict/pkg-descr Sat Mar 30 22:16:43 2019 (r497365) @@ -0,0 +1,4 @@ +addict is a Python module that gives you dictionaries whose values are both +gettable and settable using attributes, in addition to standard item-syntax. + +WWW: https://github.com/mewwts/addict
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903302216.x2UMGhCN080762>