wok-current annotate python-paste/receipt @ rev 24333
updated autoconf (2.69 -> 2.71)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Jan 28 08:53:07 2022 +0100 (2022-01-28) |
parents | b34097cc0ae7 |
children | 076f424196b2 |
rev | line source |
---|---|
pankso@3379 | 1 # SliTaz package receipt. |
pankso@3379 | 2 |
pankso@3379 | 3 PACKAGE="python-paste" |
Hans-G?nter@23523 | 4 VERSION="3.4.0" |
pankso@3379 | 5 CATEGORY="development" |
Hans-G?nter@23523 | 6 TAGS="python" |
pankso@3379 | 7 SHORT_DESC="Tools for using a Web Server Gateway Interface stack." |
pankso@3379 | 8 MAINTAINER="pankso@slitaz.org" |
pascal@15379 | 9 LICENSE="MIT" |
Hans-G?nter@23523 | 10 WEB_SITE="https://pypi.org/project/Paste/" |
Hans-G?nter@23523 | 11 |
pankso@3379 | 12 SOURCE="Paste" |
pankso@3379 | 13 TARBALL="$SOURCE-$VERSION.tar.gz" |
Hans-G?nter@23523 | 14 WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" |
pascal@15379 | 15 |
pankso@3379 | 16 DEPENDS="python" |
pascal@21582 | 17 BUILD_DEPENDS="python python-dev python-setuptools" |
pankso@3379 | 18 |
Hans-G?nter@23523 | 19 HOST_ARCH="i486 arm" |
Hans-G?nter@23523 | 20 |
pascal@24288 | 21 current_version() |
pascal@24288 | 22 { |
pascal@24288 | 23 wget -O - $WEB_SITE 2>/dev/null | sed '/, version /!d;s|.*version ||;s|<.*||' |
pascal@24288 | 24 } |
pascal@24288 | 25 |
pankso@3379 | 26 # Rules to configure and make the package. |
pankso@3379 | 27 compile_rules() |
pankso@3379 | 28 { |
pascal@15379 | 29 python setup.py install --root=$DESTDIR |
pankso@3379 | 30 } |
pankso@3379 | 31 |
pankso@3379 | 32 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@3379 | 33 genpkg_rules() |
pankso@3379 | 34 { |
Hans-G?nter@23523 | 35 cp -a $install/usr $fs |
pankso@3379 | 36 } |