wok-next diff pyvim/receipt @ rev 21020

Cleaning is almost finished... I should proceed to upgrades.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 02 14:15:08 2018 +0200 (2018-11-02)
parents 8b5b2a6d07b8
children 0c430fcaf2d9
line diff
     1.1 --- a/pyvim/receipt	Fri Sep 14 01:56:52 2018 +0300
     1.2 +++ b/pyvim/receipt	Fri Nov 02 14:15:08 2018 +0200
     1.3 @@ -3,7 +3,7 @@
     1.4  PACKAGE="pyvim"
     1.5  VERSION="0.0.13"
     1.6  CATEGORY="development"
     1.7 -SHORT_DESC="Pure Python Vi Implementation."
     1.8 +SHORT_DESC="Pure Python Vi Implementation"
     1.9  MAINTAINER="paul@slitaz.org"
    1.10  WEB_SITE="https://github.com/jonathanslenders/pyvim"
    1.11  
    1.12 @@ -11,18 +11,14 @@
    1.13  TARBALL="$SOURCE-$VERSION.tar.gz"
    1.14  WGET_URL="https://files.pythonhosted.org/packages/source/p/$SOURCE/$TARBALL"
    1.15  
    1.16 -DEPENDS="python python-prompt-toolkit ptpython python-docopt python-pyflakes"
    1.17 -BUILD_DEPENDS="python-prompt-toolkit ptpython python-docopt python-pyflakes python-dev"
    1.18 +BUILD_DEPENDS="python-prompt-toolkit ptpython python-docopt python-pyflakes \
    1.19 +python-dev"
    1.20  
    1.21 -# Rules to configure and make the package.
    1.22 -compile_rules()
    1.23 -{
    1.24 -	python setup.py install --root=$DESTDIR
    1.25 +compile_rules() {
    1.26 +	python -B setup.py install --root=$install
    1.27  }
    1.28  
    1.29 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.30 -genpkg_rules()
    1.31 -{
    1.32 +genpkg_rules() {
    1.33  	cp -a $install/usr $fs
    1.34 +	DEPENDS="python python-prompt-toolkit ptpython python-docopt python-pyflakes"
    1.35  }
    1.36 -