wok view python-six/receipt @ rev 24355
updated backintime (1.2.1 -> 1.3.1)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Feb 03 15:37:25 2022 +0100 (2022-02-03) |
parents | fbd272caca98 |
children | 076f424196b2 |
line source
1 # SliTaz package receipt.
3 PACKAGE="python-six"
4 VERSION="1.14.0"
5 CATEGORY="development"
6 SHORT_DESC="A Python 2 and 3 compatibility library."
7 MAINTAINER="claudinei@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://pypi.org/project/six/"
11 SOURCE="six"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL"
15 DEPENDS="python"
16 BUILD_DEPENDS="python python-dev"
18 HOST_ARCH="i486 arm"
20 current_version()
21 {
22 wget -O - $WEB_SITE 2>/dev/null | sed '/, version /!d;s|.*version ||;s|<.*||'
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 python setup.py install --root=$DESTDIR
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 cp -a $install/usr $fs
35 }