[notify] py3boost: removed, users should uninstall this port and rebuild boost afterwards if not done yet

This commit is contained in:
Tim Biermann 2020-08-21 14:46:18 +00:00
parent cd1bf25be7
commit 8ae28b2253
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 0 additions and 58 deletions

View File

@ -1,8 +0,0 @@
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

View File

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

View File

@ -1,45 +0,0 @@
# Description: Boost python3 binding.
# URL: https://www.boost.org/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Packager: Pedja, predivan at mts dot rs
# Depends on: boost python3
name=py3boost
version=1.73.0
release=1
source=(https://downloads.sourceforge.net/project/${name#py3}/${name#py3}/$version/${name#py3}_${version//./_}.tar.bz2)
build() {
cd ${name#py3}_${version//./_}
# these numbers need to be changed according to systems python3 version
sed -i '19s:=python:=python3.7:' bootstrap.sh
## here too
sed -i '20s:=:=3.7:' bootstrap.sh
export _stagedir="$SRC/stagedir"
./bootstrap.sh \
--prefix="${_stagedir}" \
--with-toolset=gcc \
--with-icu \
--with-libraries=python \
--with-python=/usr/bin/python3
./b2 stage \
--prefix="${_stagedir/python3}" \
--with-python \
python=3.7 \
variant=release \
threading=multi \
runtime-link=shared \
link=shared,static \
debug-symbols=off \
toolset=gcc \
install
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
}