Date: Wed, 12 Dec 2018 00:19:52 +0000 (UTC) From: William Grzybowski <wg@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r487268 - in head/devel: . py-pyrsistent Message-ID: <201812120019.wBC0JqR5026476@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: wg Date: Wed Dec 12 00:19:52 2018 New Revision: 487268 URL: https://svnweb.freebsd.org/changeset/ports/487268 Log: devel/py-pyrsistent: Persistent/Immutable/Functional data structures Pyrsistent is a number of persistent collections (by some referred to as functional data structures). Persistent in the sense that they are immutable. WWW: https://github.com/tobgu/pyrsistent Added: head/devel/py-pyrsistent/ head/devel/py-pyrsistent/Makefile (contents, props changed) head/devel/py-pyrsistent/distinfo (contents, props changed) head/devel/py-pyrsistent/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Dec 12 00:18:41 2018 (r487267) +++ head/devel/Makefile Wed Dec 12 00:19:52 2018 (r487268) @@ -4964,6 +4964,7 @@ SUBDIR += py-pyrepl SUBDIR += py-pyrfc3339 SUBDIR += py-pyro + SUBDIR += py-pyrsistent SUBDIR += py-pyshapelib SUBDIR += py-pyshp SUBDIR += py-pysparklines Added: head/devel/py-pyrsistent/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pyrsistent/Makefile Wed Dec 12 00:19:52 2018 (r487268) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= pyrsistent +PORTVERSION= 0.14.7 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= python@FreeBSD.org +COMMENT= Persistent/Immutable/Functional data structures for Python + +LICENSE= MIT + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-runner>0:devel/py-pytest-runner@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent distutils + +.include <bsd.port.mk> Added: head/devel/py-pyrsistent/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pyrsistent/distinfo Wed Dec 12 00:19:52 2018 (r487268) @@ -0,0 +1,3 @@ +TIMESTAMP = 1544544852 +SHA256 (pyrsistent-0.14.7.tar.gz) = 05910b7ff43cec0a853c15da0bfaf2867faa95f29b08e71f5846a195f1f38c75 +SIZE (pyrsistent-0.14.7.tar.gz) = 103848 Added: head/devel/py-pyrsistent/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pyrsistent/pkg-descr Wed Dec 12 00:19:52 2018 (r487268) @@ -0,0 +1,4 @@ +Pyrsistent is a number of persistent collections (by some referred to as +functional data structures). Persistent in the sense that they are immutable. + +WWW: https://github.com/tobgu/pyrsistent
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201812120019.wBC0JqR5026476>