From 4a83fb1b123c0524fcccf9ff14070ef4affa4c5f Mon Sep 17 00:00:00 2001 From: Fabian Dellwing Date: Wed, 5 Jul 2023 14:15:36 +0200 Subject: [PATCH] Ports: Drop Python bindings for Boost Building Boost failed in at least 2 cases using Python 3.11. Since there is currently no known usage of Boost's Python binding by ports, we drop the dependency to make the port install successfully again. --- Ports/boost/package.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Ports/boost/package.sh b/Ports/boost/package.sh index fb31a88939..266c775332 100755 --- a/Ports/boost/package.sh +++ b/Ports/boost/package.sh @@ -9,7 +9,6 @@ depends=( 'zstd' 'xz' 'libicu' - 'python3' ) files="https://boostorg.jfrog.io/artifactory/main/release/${version}/source/boost_${version//./_}.tar.bz2 boost_${version//./_}.tar.bz2 1e19565d82e43bc59209a168f5ac899d3ba471d55c7610c677d4ccf2c9c500c0" auth_type='sha256' @@ -20,7 +19,7 @@ bjamopts=( ) configure() { - run ./bootstrap.sh --with-icu=${DESTDIR}/usr/local --prefix=${DESTDIR}/usr/local + run ./bootstrap.sh --with-icu=${DESTDIR}/usr/local --prefix=${DESTDIR}/usr/local --without-libraries=python echo "using gcc : : $CXX ;" >$workdir/user-config.jam }