wok view python-webtest/receipt @ rev 25250

updated python-webtest (2.0.34 -> 2.0.35)
author Hans-G?nter Theisgen
date Thu Jul 14 07:35:06 2022 +0100 (22 months ago)
parents 104a2a2e5484
children
line source
1 # SliTaz package receipt.
3 PACKAGE="python-webtest"
4 VERSION="2.0.35" # last version for Python 2
5 CATEGORY="development"
6 TAGS="python"
7 SHORT_DESC="Helper to test WSGI applications."
8 MAINTAINER="taziden@slitaz.org"
9 LICENSE="MIT"
10 WEB_SITE="https://pypi.org/project/WebTest/"
11 REPOLOGY="python:webtest"
13 SOURCE="WebTest"
14 TARBALL="$SOURCE-$VERSION.tar.gz"
15 WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL"
17 DEPENDS="python"
18 BUILD_DEPENDS="python python-dev python-setuptools"
20 # What is the latest version available today?
21 current_version()
22 {
23 wget -O - https://pypi.org/project/$SOURCE/ 2>/dev/null | \
24 sed "/$SOURCE-/!d;/tar/!d;s|.*$SOURCE-||;s|.tar.*||;q"
25 }
27 # Rules to configure and make the package.
28 compile_rules()
29 {
30 python setup.py install --root=$DESTDIR
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 cook_copy_folders lib
37 }