diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2019-11-07 19:51:30 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2019-11-07 19:51:30 +0000 |
commit | 9fe3b890fca1b136e3b74b55f090243494303f6e (patch) | |
tree | f3ff8ff21a1ba3485f7bcb22a751f916309baf77 | |
parent | net-mgmt/riemann: update to 0.3.4 (diff) |
- Limit python version (does not build with 3.7+)
- Silence stripping
Approved by: portmgr blanket
-rw-r--r-- | devel/py-intbitset/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/py-intbitset/Makefile b/devel/py-intbitset/Makefile index 79ad7a9a18cd..5a3017a00ea7 100644 --- a/devel/py-intbitset/Makefile +++ b/devel/py-intbitset/Makefile @@ -16,11 +16,11 @@ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>=0:devel/py-nose@${PY_FLAVOR} -USES= python +USES= python:-3.6 USE_PYTHON= cython distutils autoplist post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/intbitset.so + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/intbitset.so do-test: @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test |