wok annotate python-pywebdav/receipt @ rev 24288

fail2ban: add log4j-jndi.conf
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jan 13 18:29:05 2022 +0000 (2022-01-13)
parents 814362194a8d
children 076f424196b2
rev   line source
pascal@14502 1 # SliTaz package receipt.
pascal@14502 2
pascal@14502 3 PACKAGE="python-pywebdav"
pascal@14502 4 SOURCE="PyWebDAV"
pascal@14502 5 VERSION="0.9.8"
pascal@14502 6 CATEGORY="development"
pascal@14502 7 SHORT_DESC="A WebDAV client library for Python."
pascal@14502 8 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15378 9 LICENSE="GPL2"
pascal@14502 10 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@20672 11 WEB_SITE="https://pypi.org/project/$SOURCE/"
pascal@14502 12 WGET_URL="http://pywebdav.googlecode.com/files/$TARBALL"
pascal@14502 13
pascal@14502 14 DEPENDS="python"
pascal@21582 15 BUILD_DEPENDS="python-dev python python-setuptools"
pascal@14502 16
pascal@24288 17 current_version()
pascal@24288 18 {
pascal@24288 19 wget -O - $WEB_SITE 2>/dev/null | sed '/, version /!d;s|.*version ||;s|<.*||'
pascal@24288 20 }
pascal@24288 21
pascal@24288 22 # Rules to configure and make the package.
pascal@14502 23 # Rules to configure and make the package.
pascal@14502 24 compile_rules()
pascal@14502 25 {
pascal@14502 26 python setup.py develop &&
pascal@14502 27 python setup.py install --root=$DESTDIR
pascal@14502 28 }
pascal@14502 29
pascal@14502 30 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@14502 31 genpkg_rules()
pascal@14502 32 {
pascal@14502 33 mkdir -p $fs
pascal@14502 34 cp -a $install/usr $fs
pascal@14502 35 }
al@18086 36