# HG changeset patch # User Hans-G?nter Theisgen # Date 1586190432 -3600 # Node ID dd325ffcea24b89d4cbe49a3a03a1e99ba55f8fe # Parent a1ff9f10f41a2a9e503f9d2cdb68baf6d9e9f34c updated python-pyparsing (2.0.3 -> 2.4.7) diff -r a1ff9f10f41a -r dd325ffcea24 python-pyparsing/receipt --- a/python-pyparsing/receipt Mon Apr 06 17:21:10 2020 +0100 +++ b/python-pyparsing/receipt Mon Apr 06 17:27:12 2020 +0100 @@ -1,29 +1,29 @@ # SliTaz package receipt. PACKAGE="python-pyparsing" -SOURCE="pyparsing" -VERSION="2.0.3" +VERSION="2.4.7" CATEGORY="development" -SHORT_DESC="Python parsing module" +SHORT_DESC="Python parsing module." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="MIT" -WEB_SITE="https://pyparsing.wikispaces.com/" +WEB_SITE="https://pypi.org/project/pyparsing/" + +SOURCE="pyparsing" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/p/$SOURCE/$TARBALL" DEPENDS="python" -BUILD_DEPENDS="python" +BUILD_DEPENDS="python python-setuptools" # Rules to configure and make the package. compile_rules() { - python setup.py build + python setup.py build && python setup.py install --root=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $install/usr $fs + cp -a $install/usr $fs } -