wok annotate python-humanize/receipt @ rev 24055
Add current_version for most github hosted softwares
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Jun 08 08:46:05 2021 +0000 (2021-06-08) |
parents | dc4d6f2f2ec2 |
children | 0262035dc1e7 |
rev | line source |
---|---|
pascal@20295 | 1 # SliTaz package receipt. |
pascal@20295 | 2 |
pascal@20295 | 3 PACKAGE="python-humanize" |
Hans-G?nter@23495 | 4 VERSION="1.0.0" # last version for Python 2 |
pascal@20295 | 5 CATEGORY="development" |
pascal@20295 | 6 SHORT_DESC="python humanize functions" |
pascal@20295 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@20295 | 8 LICENSE="MIT" |
pascal@20295 | 9 WEB_SITE="https://pypi.org/project/humanize/" |
Hans-G?nter@23495 | 10 |
pascal@20295 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@20295 | 12 WGET_URL="https://github.com/jmoiron/humanize/archive/$VERSION.tar.gz" |
pascal@20295 | 13 |
pascal@20295 | 14 DEPENDS="python" |
Hans-G?nter@23495 | 15 BUILD_DEPENDS="python python-setuptools" |
pascal@20295 | 16 |
pascal@24055 | 17 current_version() |
pascal@24055 | 18 { |
pascal@24055 | 19 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ |
pascal@24055 | 20 sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' |
pascal@24055 | 21 } |
pascal@24055 | 22 |
pascal@20295 | 23 # Rules to configure and make the package. |
pascal@20295 | 24 compile_rules() |
pascal@20295 | 25 { |
Hans-G?nter@23495 | 26 sed -i 's|setuptools_scm|setuptools|' setup.py |
Hans-G?nter@23495 | 27 |
pascal@20295 | 28 python setup.py install --prefix=/usr --root=$DESTDIR |
pascal@20295 | 29 } |
pascal@20295 | 30 |
pascal@20295 | 31 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@20295 | 32 genpkg_rules() |
pascal@20295 | 33 { |
Hans-G?nter@23495 | 34 cp -a $install/usr $fs |
pascal@20295 | 35 } |