wok annotate python-unittest2/receipt @ rev 24391

Add some current_version
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Feb 07 18:01:05 2022 +0000 (2022-02-07)
parents 814362194a8d
children e717a4953b0e
rev   line source
pascal@14376 1 # SliTaz package receipt.
pascal@14376 2
pascal@14376 3 PACKAGE="python-unittest2"
pascal@14376 4 VERSION="0.5.1"
pascal@14376 5 CATEGORY="development"
pascal@14376 6 SHORT_DESC="New features backport to the unittest testing framework."
pascal@14376 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15379 8 LICENSE="BSD"
pascal@14376 9 SOURCE="unittest2"
pascal@14376 10 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@14376 11 WEB_SITE="http://pypi.python.org/pypi/unittest2"
pascal@14376 12 WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL"
pascal@14376 13
pascal@14376 14 DEPENDS="python"
pascal@21582 15 BUILD_DEPENDS="python-dev python-setuptools"
pascal@14376 16
pascal@24391 17 # What is the latest version available today?
pascal@24391 18 current_version()
pascal@24391 19 {
pascal@24391 20 wget -O - https://pypi.org/project/$SOURCE/ 2>/dev/null | \
pascal@24391 21 sed "/$SOURCE-/!d;/tar/!d;s|.*$SOURCE-||;s|.tar.*||;q"
pascal@24391 22 }
pascal@24391 23
pascal@14376 24 # Rules to configure and make the package.
pascal@14376 25 compile_rules()
pascal@14376 26 {
pascal@14376 27 python setup.py build
pascal@14376 28 python setup.py test
pascal@14376 29 python setup.py install --root=$DESTDIR
pascal@14376 30 }
pascal@14376 31
pascal@14376 32 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@14376 33 genpkg_rules()
pascal@14376 34 {
pascal@14376 35 mkdir -p $fs/usr
pascal@14376 36 cp -a $install/usr/lib $fs/usr
pascal@14376 37 }