diff --git a/py3boost/.footprint b/py3boost/.footprint deleted file mode 100644 index 4784ef3c7..000000000 --- a/py3boost/.footprint +++ /dev/null @@ -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 diff --git a/py3boost/.signature b/py3boost/.signature deleted file mode 100644 index be126be5c..000000000 --- a/py3boost/.signature +++ /dev/null @@ -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 diff --git a/py3boost/Pkgfile b/py3boost/Pkgfile deleted file mode 100644 index ea2780cb7..000000000 --- a/py3boost/Pkgfile +++ /dev/null @@ -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 -}