wok annotate snimpy/receipt @ rev 22147

updated xalan-c and xalan-c-dev (1.10.0 -> 1.11)
author Hans-G?nter Theisgen
date Wed Nov 06 16:26:14 2019 +0100 (2019-11-06)
parents 5f46a341be86
children 5ea0ce1cecc0
rev   line source
pascal@17227 1 # SliTaz package receipt.
pascal@17227 2
pascal@17227 3 PACKAGE="snimpy"
pascal@17227 4 VERSION="0.8.3"
pascal@17227 5 CATEGORY="network"
pascal@17227 6 SHORT_DESC="Interactive SNMP tool with Python."
pascal@17227 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@17227 8 LICENSE="ISC"
pascal@17227 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@17227 10 WEB_SITE="http://snimpy.readthedocs.org/"
pascal@17227 11 WGET_URL="https://github.com/vincentbernat/snimpy/archive/$VERSION.tar.gz"
pascal@17227 12
pascal@17227 13 DEPENDS="python"
pascal@21581 14 BUILD_DEPENDS="wget python-dev python-setuptools libffi-dev glib"
pascal@17227 15
pascal@17227 16 # Rules to configure and make the package.
pascal@17227 17 compile_rules()
pascal@17227 18 {
pascal@20622 19 sed -i 's|^import snimpy|&, ssl\nssl._create_default_https_context = ssl._create_unverified_context|' \
pascal@20622 20 setup.py
pascal@17227 21 python setup.py build &&
pascal@17227 22 python setup.py install --root=$DESTDIR
pascal@17227 23 }
pascal@17227 24
pascal@17227 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@17227 26 genpkg_rules()
pascal@17227 27 {
pascal@17227 28 mkdir -p $fs/usr
pascal@17227 29 cp -a $install/usr/bin $fs/usr
pascal@17227 30 cp -a $install/usr/lib $fs/usr
pascal@17227 31 }
al@18086 32