Date: Fri, 14 Aug 2020 07:07:12 +0000 (UTC) From: Wen Heping <wen@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r544872 - in head/devel: . py-BTrees Message-ID: <202008140707.07E77CjU059289@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: wen Date: Fri Aug 14 07:07:12 2020 New Revision: 544872 URL: https://svnweb.freebsd.org/changeset/ports/544872 Log: This package contains a set of persistent object containers built around a modified BTree data structure. The trees are optimized for use inside ZODB's "optimistic concurrency" paradigm, and include explicit resolution of conflicts detected by that mechanism. WWW: https://github.com/zopefoundation/BTrees Added: head/devel/py-BTrees/ head/devel/py-BTrees/Makefile (contents, props changed) head/devel/py-BTrees/distinfo (contents, props changed) head/devel/py-BTrees/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Aug 14 06:50:18 2020 (r544871) +++ head/devel/Makefile Fri Aug 14 07:07:12 2020 (r544872) @@ -3989,6 +3989,7 @@ SUBDIR += pushmi SUBDIR += py-AddOns SUBDIR += py-Automat + SUBDIR += py-BTrees SUBDIR += py-Breve SUBDIR += py-BytecodeAssembler SUBDIR += py-DateTime Added: head/devel/py-BTrees/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-BTrees/Makefile Fri Aug 14 07:07:12 2020 (r544872) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= BTrees +DISTVERSION= 4.7.2 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= wen@FreeBSD.org +COMMENT= Scalable persistent object containers + +LICENSE= ZPL21 +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}persistent>=4.4.0:devel/py-persistent@${PY_FLAVOR} + +USES= python:3.6+ +USE_PYTHON= distutils autoplist + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/BTrees/*.so + +#do-test: +# @cd ${WRKSRC} && ${PYTHON_CMD} ${PYSETUP} test + +.include <bsd.port.mk> Added: head/devel/py-BTrees/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-BTrees/distinfo Fri Aug 14 07:07:12 2020 (r544872) @@ -0,0 +1,3 @@ +TIMESTAMP = 1597093528 +SHA256 (BTrees-4.7.2.tar.gz) = 7ce4a5eb5c135bcb5c06b5bd1ca6fd7fd39d8631306182307ed8bc30d3033846 +SIZE (BTrees-4.7.2.tar.gz) = 175093 Added: head/devel/py-BTrees/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-BTrees/pkg-descr Fri Aug 14 07:07:12 2020 (r544872) @@ -0,0 +1,6 @@ +This package contains a set of persistent object containers built around +a modified BTree data structure. The trees are optimized for use inside +ZODB's "optimistic concurrency" paradigm, and include explicit resolution +of conflicts detected by that mechanism. + +WWW: https://github.com/zopefoundation/BTrees
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202008140707.07E77CjU059289>