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.
This commit is contained in:
Fabian Dellwing 2023-07-05 14:15:36 +02:00 committed by Jelle Raaijmakers
parent 93357a8b70
commit 4a83fb1b12

View file

@ -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
}