wok annotate python-gdata/receipt @ rev 25031

Add fatcat
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri May 20 09:25:51 2022 +0000 (2022-05-20)
parents 1df6fa555414
children
rev   line source
pascal@11727 1 # SliTaz package receipt.
pascal@11727 2
pascal@11727 3 PACKAGE="python-gdata"
Hans-G?nter@23488 4 VERSION="2.0.18"
pascal@11727 5 CATEGORY="development"
pascal@11727 6 SHORT_DESC="The Google Data APIs for Python."
pascal@11727 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15379 8 LICENSE="Apache"
pascal@24383 9 SOURCE="gdata"
Hans-G?nter@23488 10 WEB_SITE="https://pypi.org/project/$SOURCE/"
Hans-G?nter@23488 11
pascal@11727 12 TARBALL="$SOURCE-$VERSION.tar.gz"
Hans-G?nter@23488 13 WGET_URL="https://files.pythonhosted.org/packages/source/g/$SOURCE/$TARBALL"
pascal@11727 14
pascal@11727 15 DEPENDS="python"
Hans-G?nter@23488 16 BUILD_DEPENDS="python python-setuptools"
pascal@11727 17
pascal@24383 18 # What is the latest version available today?
pascal@24288 19 current_version()
pascal@24288 20 {
pascal@24383 21 wget -O - $WEB_SITE 2>/dev/null | sed "/$SOURCE [0-9]/!d;s|.*$SOURCE ||;s|<.*||"
pascal@24288 22 }
pascal@24288 23
pascal@11727 24 # Rules to configure and make the package.
pascal@11727 25 compile_rules()
pascal@11727 26 {
pascal@11727 27 python setup.py build &&
pascal@11727 28 python setup.py install --root=$DESTDIR
pascal@11727 29 }
pascal@11727 30
pascal@11727 31 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11727 32 genpkg_rules()
pascal@11727 33 {
Hans-G?nter@23488 34 cp -a $install/usr $fs
pascal@11727 35 }