This package contains a generic persistence implementation for Python.

It forms the core protocol for making objects interact "transparently"
with a database such as the ZODB.

WWW: https://github.com/zopefoundation/persistent/
This commit is contained in:
Wen Heping 2020-08-14 06:50:18 +00:00
parent f652de9915
commit 5c5759b233
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=544871
4 changed files with 34 additions and 0 deletions

View File

@ -4784,6 +4784,7 @@
SUBDIR += py-pep517
SUBDIR += py-pep8-naming
SUBDIR += py-period
SUBDIR += py-persistent
SUBDIR += py-petname
SUBDIR += py-pew
SUBDIR += py-pex

View File

@ -0,0 +1,25 @@
# $FreeBSD$
PORTNAME= persistent
DISTVERSION= 4.6.4
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= wen@FreeBSD.org
COMMENT= Translucent persistent objects
LICENSE= ZPL21
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>=0:devel/py-cffi@${PY_FLAVOR}
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>=0:devel/py-cffi@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}zope.interface>=0:devel/py-zope.interface@${PY_FLAVOR}
USES= python:3.6+
USE_PYTHON= distutils autoplist
post-install:
${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/persistent/*.so
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1597091231
SHA256 (persistent-4.6.4.tar.gz) = f83f54355a44cf8ec38c29ce47b378a8c70444e9a745581dbb13d201a24cb546
SIZE (persistent-4.6.4.tar.gz) = 120032

View File

@ -0,0 +1,5 @@
This package contains a generic persistence implementation for Python.
It forms the core protocol for making objects interact "transparently"
with a database such as the ZODB.
WWW: https://github.com/zopefoundation/persistent/