wok-current diff python-whoosh/receipt @ rev 23681
Up libsvn (1.13.0)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Apr 26 15:38:37 2020 +0000 (2020-04-26) |
parents | 814362194a8d |
children | 104a2a2e5484 |
line diff
1.1 --- a/python-whoosh/receipt Sun May 19 19:45:04 2019 +0200 1.2 +++ b/python-whoosh/receipt Sun Apr 26 15:38:37 2020 +0000 1.3 @@ -1,29 +1,29 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="python-whoosh" 1.7 -SOURCE="Whoosh" 1.8 -VERSION="2.5.7" 1.9 +VERSION="2.7.4" 1.10 CATEGORY="development" 1.11 SHORT_DESC="Fast full text indexing, search, and spell checking library." 1.12 MAINTAINER="pascal.bellard@slitaz.org" 1.13 LICENSE="BSD" 1.14 +WEB_SITE="https://pypi.python.org/pypi/Whoosh/" 1.15 + 1.16 +SOURCE="Whoosh" 1.17 TARBALL="$SOURCE-$VERSION.tar.gz" 1.18 -WEB_SITE="http://pypi.python.org/pypi/Whoosh/" 1.19 -WGET_URL="https://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" 1.20 +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" 1.21 1.22 DEPENDS="python" 1.23 -BUILD_DEPENDS="python wget python-setuptools" 1.24 +BUILD_DEPENDS="python python-setuptools" 1.25 1.26 # Rules to configure and make the package. 1.27 compile_rules() 1.28 { 1.29 - python setup.py build 1.30 + python setup.py build && 1.31 python setup.py install --root=$DESTDIR 1.32 } 1.33 1.34 # Rules to gen a SliTaz package suitable for Tazpkg. 1.35 genpkg_rules() 1.36 { 1.37 - cp -a $install/* $fs 1.38 + cp -a $install/* $fs 1.39 } 1.40 -