wok-next diff python-requests/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents 8b5b2a6d07b8
children
line diff
     1.1 --- a/python-requests/receipt	Fri Sep 14 01:56:52 2018 +0300
     1.2 +++ b/python-requests/receipt	Tue Sep 01 10:31:46 2020 +0000
     1.3 @@ -1,22 +1,26 @@
     1.4  # SliTaz package receipt v2.
     1.5  
     1.6 +ORIGIN="requests"
     1.7  PACKAGE="python-requests"
     1.8 -VERSION="latest"
     1.9 +VERSION="2.19.1"
    1.10  CATEGORY="network"
    1.11  SHORT_DESC="Python HTTP Requests for Humans"
    1.12  MAINTAINER="al.bobylev@gmail.com"
    1.13  LICENSE="Apache"
    1.14 -WEB_SITE="https://pypi.org/project/requests/"
    1.15 +WEB_SITE="https://pypi.org/project/$ORIGIN/"
    1.16 +HOST_ARCH="any"
    1.17  REPOLOGY="python:requests"
    1.18  
    1.19 -BUILD_DEPENDS="python-urllib3 python-idna python-certifi python-chardet"
    1.20 +BUILD_DEPENDS="python python-urllib3 python-idna python-certifi python-chardet \
    1.21 +python3 python3-urllib3 python3-idna python3-certifi python3-chardet"
    1.22 +SPLIT="${PACKAGE/python/python3}:3"
    1.23  
    1.24  compile_rules() {
    1.25 -	pip install --no-compile --root=$DESTDIR requests
    1.26 +	pip$SET install --no-compile --root=$install $ORIGIN==$VERSION
    1.27  }
    1.28  
    1.29  genpkg_rules() {
    1.30 -	VERSION=$(sed -n '/^Successfully installed/ s|.*requests-||p' $LOGS/$PACKAGE.log)
    1.31  	copy @std
    1.32 -	DEPENDS="$BUILD_DEPENDS"
    1.33 +	py=${PACKAGE%%-*} # python/python3
    1.34 +	DEPENDS="$py $py-urllib3 $py-idna $py-certifi $py-chardet"
    1.35  }