openbsd-ports/devel/py-future/Makefile

29 lines
480 B
Makefile
Raw Normal View History

COMMENT = compatibility layer between Python 2 and Python 3
2022-03-04 09:47:27 +00:00
MODPY_EGG_VERSION = 0.18.2
DISTNAME = future-${MODPY_EGG_VERSION}
PKGNAME = py-${DISTNAME}
REVISION = 1
CATEGORIES = devel
HOMEPAGE = http://python-future.org/
# MIT
PERMIT_PACKAGE = Yes
MODULES = lang/python
MODPY_PI = Yes
MODPY_SETUPTOOLS = Yes
2022-03-04 09:47:27 +00:00
MODPY_PYTEST = Yes
FLAVORS = python3
FLAVOR ?=
post-install:
for i in ${PREFIX}/bin/*; do \
mv $${i} $${i}${MODPY_BIN_SUFFIX} ;\
done
.include <bsd.port.mk>