Index: head/devel/py-intbitset/Makefile =================================================================== --- head/devel/py-intbitset/Makefile (revision 476960) +++ head/devel/py-intbitset/Makefile (revision 476961) @@ -1,28 +1,32 @@ # $FreeBSD$ PORTNAME= intbitset DISTVERSION= 2.3.0 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= freebsd_ports@k-worx.org COMMENT= C-based extension implementing fast integer bit sets LICENSE= LGPL3 LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_aarch64= fails to compile: the clang compiler does not support -march=core2 BROKEN_armv6= fails to compile: the clang compiler does not support -march=core2 BROKEN_armv7= fails to compile: the clang compiler does not support -march=core2 RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>=0:devel/py-nose@${PY_FLAVOR} USES= python USE_PYTHON= cython distutils autoplist + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/intbitset.so do-test: @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test .include Index: head/devel/py-intbitset/files/patch-setup.py =================================================================== --- head/devel/py-intbitset/files/patch-setup.py (nonexistent) +++ head/devel/py-intbitset/files/patch-setup.py (revision 476961) @@ -0,0 +1,13 @@ +# Respect CFLAGS, remove x86 specific -march tuning which fails on !x86 archs +# https://svnweb.freebsd.org/changeset/ports/476958 + +--- setup.py.orig 2018-08-12 04:50:38 UTC ++++ setup.py +@@ -48,7 +48,6 @@ setup( + ext_modules=[ + Extension("intbitset", + ["intbitset/intbitset.c", "intbitset/intbitset_impl.c"], +- extra_compile_args=['-O3', '-march=core2', '-mtune=native'] + # For debug -> '-ftree-vectorizer-verbose=2' + ) + ], Property changes on: head/devel/py-intbitset/files/patch-setup.py ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property