freebsd-ports/databases/zodb/Makefile
Wen Heping 78d4278cd2 databases/zodb: Add new port
ZODB provides an object-oriented database for Python that provides
a high-degree of transparency. ZODB runs on Python 2.7 or Python 3.4
 and above. It also runs on PyPy.

*no separate language for database operations
*very little impact on your code to make objects persistent
*no database mapper that partially hides the database.
*Using an object-relational mapping is not like using an object-oriented
database.
*almost no seam between code and database.

WWW: https://github.com/zopefoundation/zodb
2021-10-17 11:11:29 +08:00

26 lines
972 B
Makefile

PORTNAME= zodb
PORTVERSION= 5.6.0
CATEGORIES= databases python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= ZODB-${PORTVERSION}
MAINTAINER= wen@FreeBSD.org
COMMENT= Python object-oriented database
LICENSE= ZPL21
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}persistent>=4.4.0:devel/py-persistent@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}BTrees>=4.2.0:devel/py-BTrees@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}zconfig>0:devel/py-zconfig@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}transaction>=2.4:devel/py-transaction@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}zclockfile>=0:devel/py-zclockfile@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}six>=1.10.0:devel/py-six@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}zope.interface>=0:devel/py-zope.interface@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}zodbpickle>=1.0.1:databases/py-zodbpickle@${PY_FLAVOR}
USES= python:3.6+
USE_PYTHON= autoplist concurrent distutils
.include <bsd.port.mk>