PKGBUILDs/extra/boost/PKGBUILD

152 lines
6 KiB
Bash
Raw Normal View History

2021-06-10 12:48:30 +00:00
# Maintainer: Evangelos Foutras <evangelos@foutrelis.com>
# Contributor: Levente Polyak <anthraxx[at]archlinux[dot]org>
2018-09-21 18:59:40 +00:00
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
2017-07-13 12:46:49 +00:00
# Contributor: Marius Knaust <marius.knaust@gmail.com>
2015-12-23 18:59:16 +00:00
# Contributor: Ionut Biru <ibiru@archlinux.org>
2014-09-07 14:39:43 +00:00
# Contributor: Stéphane Gaudreault <stephane@archlinux.org>
2013-03-26 21:59:17 +00:00
# Contributor: kevin <kevin@archlinux.org>
2011-01-19 05:10:54 +00:00
# Contributor: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Kritoke <kritoke@gamebox.net>
2011-01-19 05:10:54 +00:00
# Contributor: Luca Roccia <little_rock@users.sourceforge.net>
2012-07-23 16:34:01 +00:00
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2015-07-11 04:21:02 +00:00
# - specify arm architecture to b2 for aarch64
2011-01-19 05:10:54 +00:00
2021-06-10 12:48:30 +00:00
pkgname=('boost' 'boost-libs')
2023-09-02 14:05:45 +00:00
pkgver=1.83.0
2024-06-26 09:16:05 +00:00
pkgrel=9
2021-06-10 12:48:30 +00:00
_srcname=boost_${pkgver//./_}
pkgdesc="Free peer-reviewed portable C++ source libraries"
2017-11-17 23:24:12 +00:00
arch=('x86_64')
2021-06-10 12:48:30 +00:00
url="https://www.boost.org/"
2011-01-19 05:10:54 +00:00
license=('custom')
2021-06-10 12:48:30 +00:00
makedepends=('icu' 'python' 'python-numpy' 'bzip2' 'zlib' 'openmpi' 'zstd')
2022-09-19 01:29:09 +00:00
source=(https://boostorg.jfrog.io/artifactory/main/release/$pkgver/source/$_srcname.tar.bz2
2023-01-22 20:29:43 +00:00
boost-1.81.0-phoenix-multiple-definitions.patch
2023-09-03 19:50:33 +00:00
$pkgname-support-fn.contains-f-where-f-is-a-function.patch::https://github.com/boostorg/function/commit/7ca2310b15e3.patch
2024-06-26 09:16:05 +00:00
$pkgname-numpy-2.0.patch::https://github.com/boostorg/python/commit/0474de0f6cc9.patch
2021-12-19 05:27:00 +00:00
$pkgname-ublas-c++20-iterator.patch::https://github.com/boostorg/ublas/commit/a31e5cffa85f.patch)
2023-09-02 14:05:45 +00:00
sha256sums=('6478edfe2f3305127cffe8caf73ea0176c53769f4bf1585be237eb30798c3b8e'
2023-01-22 20:29:43 +00:00
'3ebf428ef6be090a7b56a233330375539ac429333b83708e28fe5db049cfecdb'
2023-09-03 19:50:33 +00:00
'1b5998ee8fb389dd6df55a3684d29ffa37246bc007e8e6712bf2be6c7f745036'
2024-06-26 09:16:05 +00:00
'ccda8ef8126c93f4c8d29ba43b5f301952e5eacdc7fecb2ae3d01115a2222c53'
2021-12-19 05:27:00 +00:00
'aa38addb40d5f44b4a8472029b475e7e6aef1c460509eb7d8edf03491dc1b5ee')
2020-12-09 22:43:50 +00:00
prepare() {
2021-06-10 12:48:30 +00:00
cd $_srcname
2020-12-09 22:43:50 +00:00
2023-01-22 20:29:43 +00:00
# https://github.com/boostorg/phoenix/issues/111
patch -Np1 -i ../boost-1.81.0-phoenix-multiple-definitions.patch
2023-09-03 19:50:33 +00:00
# https://github.com/boostorg/signals2/issues/68
# https://github.com/boostorg/function/issues/46
patch -Np2 -i <(sed 's#test/#asd/libs/function/test/#' \
../$pkgname-support-fn.contains-f-where-f-is-a-function.patch)
2024-06-26 09:16:05 +00:00
# support building against NumPy 2.0
patch -Np1 -d libs/python <../$pkgname-numpy-2.0.patch
2021-06-10 12:48:30 +00:00
# https://github.com/boostorg/ublas/pull/97
patch -Np2 -i ../$pkgname-ublas-c++20-iterator.patch
2020-12-09 22:43:50 +00:00
}
2014-01-09 22:37:29 +00:00
build() {
2021-06-10 12:48:30 +00:00
local JOBS="$(sed 's/.*\(-j *[0-9]\+\).*/\1/' <<<$MAKEFLAGS)"
2023-01-22 20:29:43 +00:00
local python_version=$(
python -c 'import sys; print(".".join(map(str, sys.version_info[:2])))')
2021-06-10 12:48:30 +00:00
pushd $_srcname/tools/build
./bootstrap.sh --cxxflags="$CXXFLAGS $LDFLAGS"
./b2 install --prefix="$srcdir"/fakeinstall
ln -s b2 "$srcdir"/fakeinstall/bin/bjam
popd
cd $_srcname
./bootstrap.sh --with-toolset=gcc --with-icu --with-python=python3
# support for OpenMPI
echo "using mpi ;" >>project-config.jam
# boostbook is needed by quickbook
install -dm755 "$srcdir"/fakeinstall/share/boostbook
cp -a tools/boostbook/{xsl,dtd} "$srcdir"/fakeinstall/share/boostbook/
# install to $srcdir/fakeinstall in preparation for split packaging
./b2 install \
architecture=arm \
variant=release \
debug-symbols=off \
threading=multi \
runtime-link=shared \
link=shared,static \
toolset=gcc \
2023-01-22 20:29:43 +00:00
python=$python_version \
2021-06-10 12:48:30 +00:00
cflags="$CPPFLAGS $CFLAGS -fPIC -O3" \
cxxflags="$CPPFLAGS $CXXFLAGS -fPIC -O3" \
linkflags="$LDFLAGS" \
--layout=system \
$JOBS \
\
--prefix="$srcdir"/fakeinstall
2011-01-19 05:10:54 +00:00
}
package_boost() {
2023-05-03 23:23:20 +00:00
local python_version=$(
python -c 'import sys; print(".".join(map(str, sys.version_info[:2])))')
2021-06-10 12:48:30 +00:00
pkgdesc+=' (development headers)'
depends=("boost-libs=$pkgver")
optdepends=('python: for python bindings')
options=('staticlibs')
2014-01-09 22:37:29 +00:00
2021-06-10 12:48:30 +00:00
install -d "$pkgdir"/usr/lib
2022-09-19 01:29:09 +00:00
cp -a fakeinstall/lib/*.{a,so} "$pkgdir"/usr/lib/
2021-06-10 12:48:30 +00:00
cp -a fakeinstall/lib/cmake "$pkgdir"/usr/lib/
cp -a fakeinstall/{bin,include,share} "$pkgdir"/usr/
2014-01-09 22:37:29 +00:00
2022-09-19 23:50:57 +00:00
# https://github.com/boostorg/python/issues/203#issuecomment-391477685
for _lib in python numpy; do
2023-05-03 23:23:20 +00:00
ln -srL "$pkgdir"/usr/lib/libboost_${_lib}{${python_version/.},${python_version%.*}}.so
2022-09-19 23:50:57 +00:00
done
2021-06-10 12:48:30 +00:00
install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" $_srcname/LICENSE_1_0.txt
2011-01-19 05:10:54 +00:00
}
package_boost-libs() {
2023-05-03 23:23:20 +00:00
local python_version=$(
python -c 'import sys; print(".".join(map(str, sys.version_info[:2])))')
2021-06-10 12:48:30 +00:00
pkgdesc+=' (runtime libraries)'
depends=('bzip2' 'zlib' 'icu' 'zstd')
optdepends=('openmpi: for mpi support')
provides=(libboost_atomic.so libboost_chrono.so libboost_container.so
libboost_context.so libboost_contract.so libboost_coroutine.so
libboost_date_time.so libboost_fiber.so libboost_filesystem.so
libboost_graph.so libboost_graph_parallel.so libboost_iostreams.so
libboost_json.so libboost_locale.so libboost_log.so libboost_log_setup.so
libboost_math_c99.so libboost_math_c99f.so libboost_math_c99l.so
libboost_math_tr1.so libboost_math_tr1f.so libboost_math_tr1l.so
2023-05-03 23:23:20 +00:00
libboost_mpi{,_python${python_version/.}}.so libboost_nowide.so
libboost_numpy${python_version/.}.so libboost_prg_exec_monitor.so
libboost_program_options.so libboost_python${python_version/.}.so
libboost_random.so libboost_regex.so libboost_serialization.so
2021-06-10 12:48:30 +00:00
libboost_stacktrace_addr2line.so libboost_stacktrace_basic.so
libboost_stacktrace_noop.so libboost_system.so libboost_thread.so
libboost_timer.so libboost_type_erasure.so libboost_unit_test_framework.so
2023-01-22 20:29:43 +00:00
libboost_url.so libboost_wave.so libboost_wserialization.so)
2021-06-10 12:48:30 +00:00
install -dm755 "$pkgdir"/usr/lib
2022-09-19 01:29:09 +00:00
cp -a fakeinstall/lib/*.so.* "$pkgdir"/usr/lib/
2021-06-10 12:48:30 +00:00
# https://github.com/boostorg/mpi/issues/112
2023-01-22 20:29:43 +00:00
local site_packages=$(python -c 'import site; print(site.getsitepackages()[0])')
install -d "$pkgdir"$site_packages/boost
touch "$pkgdir"$site_packages/boost/__init__.py
python -m compileall -o 0 -o 1 -o 2 "$pkgdir"$site_packages/boost
cp fakeinstall/lib/boost-python*/mpi.so "$pkgdir"$site_packages/boost/mpi.so
2021-06-10 12:48:30 +00:00
install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" $_srcname/LICENSE_1_0.txt
2011-01-19 05:10:54 +00:00
}
2018-09-21 18:59:40 +00:00
2021-06-10 12:48:30 +00:00
# vim:set ts=2 sw=2 et: