svn commit: r568378 - head/math/py-piranha
Kai Knoblich
kai at FreeBSD.org
Sun Mar 14 11:01:50 UTC 2021
Author: kai
Date: Sun Mar 14 11:01:49 2021
New Revision: 568378
URL: https://svnweb.freebsd.org/changeset/ports/568378
Log:
math/py-piranha: Fix build with Python 3.8 and 3.9
* Adjust regexp pattern to make builds with Python 3.8/3.9 possible and
remove Python 2 support from it while I'm here because the port is
Python 3 only since r559531.
Excerpt from the log:
ninja: error: '/usr/local/lib/libpython3.8m.so', needed by 'pyranha/_core.so', missing and no known rule to make it
PR: 253815
Approved by: portmgr (build fix)
Modified:
head/math/py-piranha/Makefile
Modified: head/math/py-piranha/Makefile
==============================================================================
--- head/math/py-piranha/Makefile Sun Mar 14 10:53:04 2021 (r568377)
+++ head/math/py-piranha/Makefile Sun Mar 14 11:01:49 2021 (r568378)
@@ -26,7 +26,7 @@ USE_GITHUB= yes
GH_ACCOUNT= bluescarni
USE_PYTHON= flavors
-PYTHON_SUFFIX_LETTER= ${PYTHON_VER:C/^2.*//:C/^3.*/m/}
+PYTHON_SUFFIX_LETTER= ${PYTHON_VER:C/^3.[67]/m/:C/^3.[89]//}
CMAKE_ON= BUILD_PYRANHA
CMAKE_OFF= PIRANHA_INSTALL_HEADERS
More information about the svn-ports-head
mailing list