wok rev 23542

updated python-pyparsing (2.0.3 -> 2.4.7)
author Hans-G?nter Theisgen
date Mon Apr 06 17:27:12 2020 +0100 (2020-04-06)
parents a1ff9f10f41a
children c251d5eb8ec2 f2abfbf087ed
files python-pyparsing/receipt
line diff
     1.1 --- a/python-pyparsing/receipt	Mon Apr 06 17:21:10 2020 +0100
     1.2 +++ b/python-pyparsing/receipt	Mon Apr 06 17:27:12 2020 +0100
     1.3 @@ -1,29 +1,29 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="python-pyparsing"
     1.7 -SOURCE="pyparsing"
     1.8 -VERSION="2.0.3"
     1.9 +VERSION="2.4.7"
    1.10  CATEGORY="development"
    1.11 -SHORT_DESC="Python parsing module"
    1.12 +SHORT_DESC="Python parsing module."
    1.13  MAINTAINER="pascal.bellard@slitaz.org"
    1.14  LICENSE="MIT"
    1.15 -WEB_SITE="https://pyparsing.wikispaces.com/"
    1.16 +WEB_SITE="https://pypi.org/project/pyparsing/"
    1.17 +
    1.18 +SOURCE="pyparsing"
    1.19  TARBALL="$SOURCE-$VERSION.tar.gz"
    1.20 -WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL"
    1.21 +WGET_URL="https://files.pythonhosted.org/packages/source/p/$SOURCE/$TARBALL"
    1.22  
    1.23  DEPENDS="python"
    1.24 -BUILD_DEPENDS="python"
    1.25 +BUILD_DEPENDS="python python-setuptools"
    1.26  
    1.27  # Rules to configure and make the package.
    1.28  compile_rules()
    1.29  {
    1.30 -	python setup.py build
    1.31 +	python setup.py build &&
    1.32  	python setup.py install --root=$DESTDIR
    1.33  }
    1.34  
    1.35  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.36  genpkg_rules()
    1.37  {
    1.38 -	cp -a $install/usr $fs
    1.39 +	cp -a $install/usr	$fs
    1.40  }
    1.41 -