wok-next diff python-beautifulsoup4/receipt @ rev 21599

updated drakon-editor (1.26 -> 1.31)
author Hans-G?nter Theisgen
date Wed Jun 24 14:49:10 2020 +0100 (2020-06-24)
parents a00b398faf9e
children
line diff
     1.1 --- a/python-beautifulsoup4/receipt	Wed Aug 22 09:09:15 2018 +0300
     1.2 +++ b/python-beautifulsoup4/receipt	Wed Jun 24 14:49:10 2020 +0100
     1.3 @@ -1,24 +1,26 @@
     1.4  # SliTaz package receipt v2.
     1.5  
     1.6 +ORIGIN="beautifulsoup4"
     1.7  PACKAGE="python-beautifulsoup4"
     1.8 -VERSION="latest"
     1.9 +VERSION="4.6.3"
    1.10  CATEGORY="development"
    1.11  SHORT_DESC="Python HTML-XML parser"
    1.12  MAINTAINER="paul@slitaz.org"
    1.13  LICENSE="MIT"
    1.14 -WEB_SITE="https://pypi.org/project/beautifulsoup4/"
    1.15 +WEB_SITE="https://pypi.org/project/$ORIGIN/"
    1.16  HOST_ARCH="any"
    1.17  REPOLOGY="python:beautifulsoup"
    1.18  
    1.19 -BUILD_DEPENDS="python-dev"
    1.20 +BUILD_DEPENDS="python python3"
    1.21 +SPLIT="${PACKAGE/python/python3}:3"
    1.22  
    1.23  compile_rules() {
    1.24 -	pip install --no-compile --root=$DESTDIR beautifulsoup4
    1.25 +	pip$SET install --no-compile --root=$install $ORIGIN==$VERSION
    1.26  }
    1.27  
    1.28  genpkg_rules() {
    1.29 -	VERSION=$(sed -n '/^Successfully installed/ s|.*beautifulsoup4-||p' $LOGS/$PACKAGE.log)
    1.30  	copy @std
    1.31 -	DEPENDS="python"
    1.32 +	py="${PACKAGE%%-*}" # python/python3
    1.33 +	DEPENDS="$py"
    1.34  	TAGS="parser XML HTML"
    1.35  }