wok annotate python-webdav/receipt @ rev 22042

gcc83-lib-base: do NOT provide gcc-lib-base
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 22 12:55:54 2019 +0300 (2019-10-22)
parents 7390f8de9846
children 080c1dff8494
rev   line source
pascal@11727 1 # SliTaz package receipt.
pascal@11727 2
pascal@11727 3 PACKAGE="python-webdav"
pascal@11727 4 VERSION="0.5"
pascal@11727 5 CATEGORY="development"
pascal@11727 6 SHORT_DESC="A WebDAV client library for Python."
pascal@11727 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15376 8 LICENSE="MIT"
pascal@11727 9 TARBALL="${PACKAGE}_$VERSION.tar.gz"
pascal@20421 10 WEB_SITE="https://sourceforge.net/projects/python-webdav/"
pascal@11727 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@11727 12
pascal@11727 13 DEPENDS="python"
pascal@11727 14 BUILD_DEPENDS="python-dev python"
pascal@11727 15
pascal@11727 16 # Rules to configure and make the package.
pascal@11727 17 compile_rules()
pascal@11727 18 {
pascal@11727 19 python setup.py build &&
pascal@11727 20 python setup.py install --root=$DESTDIR
pascal@11727 21 }
pascal@11727 22
pascal@11727 23 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11727 24 genpkg_rules()
pascal@11727 25 {
pascal@11727 26 mkdir -p $fs
pascal@15376 27 cp -a $install/usr $fs
pascal@11727 28 }