diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2021-11-04 15:28:07 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-11-05 22:56:43 +0700 |
commit | a6456d4e2ee37c017f1e63c06e37f1bd72d4f26c (patch) | |
tree | 1c3bfcb1fb2ddd6c1713e23c620c56e05c4269aa /python/BeautifulSoup4 | |
parent | 89c41f49c7638b83d6f23480fa7579a49bd66b36 (diff) | |
download | slackbuilds-a6456d4e2ee37c017f1e63c06e37f1bd72d4f26c.tar.gz |
python/BeautifulSoup4: Updated for version 4.9.3.
This reverts commit b6d5a8a
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/BeautifulSoup4')
-rw-r--r-- | python/BeautifulSoup4/BeautifulSoup4.SlackBuild | 29 | ||||
-rw-r--r-- | python/BeautifulSoup4/BeautifulSoup4.info | 8 |
2 files changed, 30 insertions, 7 deletions
diff --git a/python/BeautifulSoup4/BeautifulSoup4.SlackBuild b/python/BeautifulSoup4/BeautifulSoup4.SlackBuild index 411127ea11..74338d9973 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.10.0} -BUILD=${BUILD:-1} +VERSION=${VERSION:-4.9.3} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -82,7 +82,30 @@ 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 {} \; -python3 setup.py install --root=$PKG +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 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 diff --git a/python/BeautifulSoup4/BeautifulSoup4.info b/python/BeautifulSoup4/BeautifulSoup4.info index 4093fcabeb..7203506282 100644 --- a/python/BeautifulSoup4/BeautifulSoup4.info +++ b/python/BeautifulSoup4/BeautifulSoup4.info @@ -1,10 +1,10 @@ PRGNAM="BeautifulSoup4" -VERSION="4.10.0" +VERSION="4.9.3" HOMEPAGE="https://www.crummy.com/software/BeautifulSoup/" -DOWNLOAD="https://files.pythonhosted.org/packages/a1/69/daeee6d8f22c997e522cdbeb59641c4d31ab120aba0f2c799500f7456b7e/beautifulsoup4-4.10.0.tar.gz" -MD5SUM="e754242642253dd31d249d00358d552e" +DOWNLOAD="https://www.crummy.com/software/BeautifulSoup/bs4/download/4.9/beautifulsoup4-4.9.3.tar.gz" +MD5SUM="57fd468ae3eb055f6871106e8f7813e2" DOWNLOAD_x86_64="" MD5SUM_x86_64="" -REQUIRES="python3-soupsieve" +REQUIRES="python2-soupsieve python3-soupsieve" MAINTAINER="Isaac Yu" EMAIL="isaacyu1@isaacyu1.com" |