From a6b602eb1f1f8cb5965dd640d3c4fe5680fdfdf7 Mon Sep 17 00:00:00 2001 From: barracuda156 Date: Fri, 15 Dec 2023 19:15:15 +0800 Subject: [PATCH] blis: disable rpath to fix install; switch to python311 See: https://github.com/mpimd-csc/flexiblas/issues/40 --- math/blis/Portfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/math/blis/Portfile b/math/blis/Portfile index 6c9ed781f35ad..6732c4ff17acf 100644 --- a/math/blis/Portfile +++ b/math/blis/Portfile @@ -5,7 +5,7 @@ PortGroup compiler_blacklist_versions 1.0 PortGroup github 1.0 github.setup flame blis 0.9.0 -revision 0 +revision 1 categories math maintainers {@barracuda156 gmail.com:vital.had} {@catap korins.ky:kirill} openmaintainer license BSD @@ -32,14 +32,14 @@ configure.args-append \ --prefix=${prefix} \ --enable-shared \ --enable-static \ - --enable-rpath + --disable-rpath configure.post_args generic if {${os.platform} eq "darwin" && ${os.major} < 11} { - depends_build-append port:python310 - license_noconflict python310 - configure.python ${prefix}/bin/python3.10 + depends_build-append port:python311 + license_noconflict python311 + configure.python ${prefix}/bin/python3.11 } elseif {${os.platform} eq "darwin" && ${os.major} >= 19} { configure.python /usr/bin/python3 } else {