diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-10-13 01:10:32 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-10-22 13:03:43 +0700 |
commit | b6d5a8aa6f366c018e6578b97cff583c41d279b9 (patch) | |
tree | 83a35164635b7876f40bed94766bdb73b5aa153d /python/BeautifulSoup4/BeautifulSoup4.SlackBuild | |
parent | bf04767f83dfbe5422aa9d606dccbf0a029df77a (diff) |
python/BeautifulSoup4: Updated for version 4.10.0.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/BeautifulSoup4/BeautifulSoup4.SlackBuild')
-rw-r--r-- | python/BeautifulSoup4/BeautifulSoup4.SlackBuild | 29 |
1 files changed, 3 insertions, 26 deletions
diff --git a/python/BeautifulSoup4/BeautifulSoup4.SlackBuild b/python/BeautifulSoup4/BeautifulSoup4.SlackBuild index 74338d9973..411127ea11 100644 --- a/python/BeautifulSoup4/BeautifulSoup4.SlackBuild +++ b/python/BeautifulSoup4/BeautifulSoup4.SlackBuild @@ -26,8 +26,8 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=BeautifulSoup4 -VERSION=${VERSION:-4.9.3} -BUILD=${BUILD:-2} +VERSION=${VERSION:-4.10.0} +BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -82,30 +82,7 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; -python2 setup.py install --root=$PKG - -# Python 3 support (requires python3-soupsieve) -# shaypal5 provided an example package check: -# https://gist.github.com/shaypal5/d505af9953cd86f59c750fa600ee4ba6 -if $(python3 -c 'import pkgutil; exit(not pkgutil.find_loader("soupsieve"))'); then - - # Prepare another source tarball before building for Python 3 - cd $TMP - rm -rf $SRCNAM-$VERSION - tar xvf $CWD/$SRCNAM-$VERSION.tar.gz - cd $SRCNAM-$VERSION - chown -R root:root . - find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; - - # Build for Python 3 - sed -i "s/-rfI/-rf/" convert-py3k - sh convert-py3k - python3 setup.py install --root=$PKG -fi +python3 setup.py install --root=$PKG find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true |