42 lines
802 B
Makefile
42 lines
802 B
Makefile
|
COMMENT = Python driver for mongodb
|
||
|
|
||
|
MODPY_EGG_VERSION = 4.4.1
|
||
|
DISTNAME = pymongo-${MODPY_EGG_VERSION}
|
||
|
PKGNAME = py-${DISTNAME:S/py//}
|
||
|
|
||
|
CATEGORIES = databases devel
|
||
|
|
||
|
HOMEPAGE = https://github.com/mongodb/mongo-python-driver/
|
||
|
|
||
|
# Apache 2.0
|
||
|
PERMIT_PACKAGE = Yes
|
||
|
|
||
|
WANTLIB = pthread ${MODPY_WANTLIB}
|
||
|
|
||
|
MODPY_PI = Yes
|
||
|
|
||
|
MODULES = lang/python
|
||
|
FLAVORS = python3
|
||
|
FLAVOR = python3
|
||
|
|
||
|
MODPY_PYBUILD = setuptools
|
||
|
|
||
|
# unported dep
|
||
|
MODPY_PYTEST_ARGS = --ignore test/mockupdb \
|
||
|
--ignore test/auth_aws/test_auth_aws.py
|
||
|
|
||
|
# needs a running mongodb instance in 127.0.0.1:27017,
|
||
|
# and increased kern.somaxconn, various missing files from the tar.gz
|
||
|
# too it seems
|
||
|
TEST_IS_INTERACTIVE = Yes
|
||
|
|
||
|
.include <bsd.port.arch.mk>
|
||
|
|
||
|
.if ${PROPERTIES:Mle}
|
||
|
PKG_ARGS += -Dno_be=1
|
||
|
.else
|
||
|
PKG_ARGS += -Dno_be=0
|
||
|
.endif
|
||
|
|
||
|
.include <bsd.port.mk>
|