wok annotate python-dnspython/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 16df76e1fc6a
children 947565b77b20
rev   line source
monghitri@13949 1 # SliTaz package receipt.
monghitri@13949 2
monghitri@13949 3 PACKAGE="python-dnspython"
monghitri@13949 4 VERSION="1.10.0"
monghitri@13949 5 CATEGORY="development"
monghitri@13949 6 SHORT_DESC="a DNS toolkit for Python"
monghitri@13949 7 MAINTAINER="monghitri@aruba.it"
pascal@15378 8 LICENSE="BSD"
monghitri@13949 9 SOURCE="dnspython"
monghitri@13949 10 TARBALL="$SOURCE-$VERSION.tar.gz"
monghitri@13949 11 WEB_SITE="http://www.dnspython.org/"
monghitri@13949 12 WGET_URL="http://www.dnspython.org/kits/$VERSION/$TARBALL"
pascal@15378 13
monghitri@13949 14 DEPENDS="python"
pascal@21581 15 BUILD_DEPENDS="python python-setuptools"
monghitri@13949 16
monghitri@13949 17 # Rules to configure and make the package.
monghitri@13949 18 compile_rules()
monghitri@13949 19 {
monghitri@13949 20 python setup.py install --root=$DESTDIR
monghitri@13949 21 }
monghitri@13949 22
monghitri@13949 23 # Rules to gen a SliTaz package suitable for Tazpkg.
monghitri@13949 24 genpkg_rules()
monghitri@13949 25 {
monghitri@13949 26 cp -a $install/usr $fs
monghitri@13949 27 }