py-setuptools. Also change the lang/python module to use the new devel/py2-setuptools for python2 ports ok sthen@
27 lines
567 B
Makefile
27 lines
567 B
Makefile
# $OpenBSD: Makefile,v 1.12 2021/05/21 19:50:26 kmos Exp $
|
|
|
|
COMMENT= futures implementation for Python
|
|
|
|
MODPY_EGG_VERSION= 3.2.0
|
|
DISTNAME= futures-${MODPY_EGG_VERSION}
|
|
PKGNAME= py-${DISTNAME}
|
|
CATEGORIES= devel
|
|
MAINTAINER= Brian Callahan <bcallah@openbsd.org>
|
|
REVISION= 0
|
|
|
|
# Python Software Foundation license
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
MODULES= lang/python
|
|
MODPY_VERSION = ${MODPY_DEFAULT_VERSION_2}
|
|
|
|
MODPY_PI = Yes
|
|
MODPY_SETUPTOOLS= Yes
|
|
|
|
TEST_DEPENDS = lang/python/${MODPY_VERSION},-tests
|
|
|
|
do-test:
|
|
cd ${WRKSRC} && ${MODPY_BIN} test_futures.py
|
|
|
|
.include <bsd.port.mk>
|