py3boost: bumped for python 3.8

This commit is contained in:
Tim Biermann 2020-07-17 18:41:02 +00:00
parent ea0c1dc1c4
commit fdb1737669
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 13 additions and 13 deletions

View File

@ -1,8 +1,8 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib/
lrwxrwxrwx root/root usr/lib/libboost_python3.so -> libboost_python37.so.1.73.0
-rw-r--r-- root/root usr/lib/libboost_python37.a
lrwxrwxrwx root/root usr/lib/libboost_python37.so -> libboost_python37.so.1.73.0
lrwxrwxrwx root/root usr/lib/libboost_python37.so.1 -> libboost_python37.so.1.73.0
lrwxrwxrwx root/root usr/lib/libboost_python37.so.1.73 -> libboost_python37.so.1.73.0
-rwxr-xr-x root/root usr/lib/libboost_python37.so.1.73.0
lrwxrwxrwx root/root usr/lib/libboost_python3.so -> libboost_python38.so.1.73.0
-rw-r--r-- root/root usr/lib/libboost_python38.a
lrwxrwxrwx root/root usr/lib/libboost_python38.so -> libboost_python38.so.1.73.0
lrwxrwxrwx root/root usr/lib/libboost_python38.so.1 -> libboost_python38.so.1.73.0
lrwxrwxrwx root/root usr/lib/libboost_python38.so.1.73 -> libboost_python38.so.1.73.0
-rwxr-xr-x root/root usr/lib/libboost_python38.so.1.73.0

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF35sXSwiCFYByxZ0ypvs4/Caly0M6LpUlSMfxESKQP0PPVmrYFesiEpD2bNkzXkKJPr60vyKm9BPipj+/4GhbMAM=
SHA256 (Pkgfile) = 33cf26267db280a10cff6e5cc1d75dd60c51884d6f54646e259e93b7de31ca4e
SHA256 (.footprint) = edc1a0114eed59d34e70bf067d096ae590baa15fe4f928a7870abf967f877b34
RWSagIOpLGJF38V7whj5WGnh2BFPMJSE54aSxWUYWGKzu8Tedo2b7g2ZTF56CB46mOvAeBSrEszeuvJ13/P7ShaPQ1RcbFjCNg4=
SHA256 (Pkgfile) = f3bae5fd288f838f4f57e293dc656c1e487c0c1c8ab7f936ab6461f43593ff3c
SHA256 (.footprint) = 703923dedc3e70e480ea456f29e4362385129bc58c64fc62f1226bb4c11581e7
SHA256 (boost_1_73_0.tar.bz2) = 4eb3b8d442b426dc35346235c8733b5ae35ba431690e38c6a8263dce9fcbb402

View File

@ -13,9 +13,9 @@ build() {
cd ${name#py3}_${version//./_}
# these numbers need to be changed according to systems python3 version
sed -i '19s:=python:=python3.7:' bootstrap.sh
sed -i '19s:=python:=python3.8:' bootstrap.sh
## here too
sed -i '20s:=:=3.7:' bootstrap.sh
sed -i '20s:=:=3.8:' bootstrap.sh
export _stagedir="$SRC/stagedir"
@ -29,7 +29,7 @@ build() {
./b2 stage \
--prefix="${_stagedir/python3}" \
--with-python \
python=3.7 \
python=3.8 \
variant=release \
threading=multi \
runtime-link=shared \
@ -41,5 +41,5 @@ build() {
install -dm 755 $PKG/usr/lib
cp -a ${_stagedir}/lib/libboost_python3* $PKG/usr/lib
#https://github.com/boostorg/python/issues/203#issuecomment-391477685
ln -srL $PKG/usr/lib/libboost_python3{7,}.so
ln -srL $PKG/usr/lib/libboost_python3{8,}.so
}