extra/boost to 1.78.0-3

This commit is contained in:
Kevin Mihelich 2022-06-08 18:53:14 +00:00
parent 2e3177e72d
commit be1d285a69

View file

@ -15,7 +15,7 @@
pkgname=('boost' 'boost-libs')
pkgver=1.78.0
pkgrel=2
pkgrel=3
_srcname=boost_${pkgver//./_}
pkgdesc="Free peer-reviewed portable C++ source libraries"
arch=('x86_64')
@ -24,9 +24,11 @@ license=('custom')
makedepends=('icu' 'python' 'python-numpy' 'bzip2' 'zlib' 'openmpi' 'zstd')
source=(https://boostorg.jfrog.io/artifactory/main/release/$pkgver/source/$_srcname.tar.gz
$pkgname-b2-fix-lib-install.patch::https://github.com/bfgroup/b2/commit/78fd284a42ca.patch
$pkgname-locale-empty-vector.patch::https://github.com/boostorg/locale/commit/1ff0ead837b3.patch
$pkgname-ublas-c++20-iterator.patch::https://github.com/boostorg/ublas/commit/a31e5cffa85f.patch)
sha256sums=('94ced8b72956591c4775ae2207a9763d3600b30d9d7446562c552f0a14a63be7'
'd233b16920ad7da8bb6e02bf5fb4e429592057b4f4db28d4babf3850e837a8db'
'6c05bd362bc18908a7e23eec3b4a714f82c15c722bda4c340778e2f5b1a9bf25'
'aa38addb40d5f44b4a8472029b475e7e6aef1c460509eb7d8edf03491dc1b5ee')
prepare() {
@ -35,6 +37,9 @@ prepare() {
# https://github.com/bfgroup/b2/issues/104
patch -Np1 -d tools/build <../$pkgname-b2-fix-lib-install.patch
# https://github.com/boostorg/locale/issues/52
patch -Np1 -d libs/locale <../$pkgname-locale-empty-vector.patch
# https://github.com/boostorg/ublas/pull/97
patch -Np2 -i ../$pkgname-ublas-c++20-iterator.patch
}