wok annotate python-configobj/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 16df76e1fc6a
children 0262035dc1e7
rev   line source
al@17791 1 # SliTaz package receipt.
al@17791 2
al@17791 3 PACKAGE="python-configobj"
al@17791 4 VERSION="5.0.6"
al@17791 5 CATEGORY="development"
al@17791 6 SHORT_DESC="Config file reading, writing and validation"
al@17791 7 MAINTAINER="al.bobylev@gmail.com"
al@17791 8 LICENSE="other"
al@17791 9 WEB_SITE="https://github.com/DiffSK/configobj"
al@17791 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@17791 11 WGET_URL="https://github.com/DiffSK/configobj/archive/v$VERSION.tar.gz"
al@17791 12
al@17791 13 DEPENDS="python python-six"
al@17791 14 BUILD_DEPENDS="wget cacerts python"
al@17791 15
pascal@24055 16 current_version()
pascal@24055 17 {
pascal@24055 18 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
pascal@24055 19 sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q'
pascal@24055 20 }
pascal@24055 21
al@17791 22 # Rules to configure and make the package.
al@17791 23 compile_rules()
al@17791 24 {
al@17791 25 python setup.py build
al@17791 26 python setup.py install --root=$DESTDIR
al@17791 27 }
al@17791 28
al@17791 29 # Rules to gen a SliTaz package suitable for Tazpkg.
al@17791 30 genpkg_rules()
al@17791 31 {
al@17791 32 cp -a $install/* $fs
al@17791 33 }
al@18077 34