diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-06-05 15:07:14 -0300 |
---|---|---|
committer | prspkt <prspkt@protonmail.com> | 2019-06-05 21:18:26 +0300 |
commit | 6d292babcbcfc15626f04fd876721d66e97fe3dc (patch) | |
tree | f52ef2b64eb26089205ccdf59969c8abecc2867c /testing | |
parent | 868fbf346e4a16ccaedaf825063e6f8227d2610b (diff) | |
download | aports-6d292babcbcfc15626f04fd876721d66e97fe3dc.tar.bz2 aports-6d292babcbcfc15626f04fd876721d66e97fe3dc.tar.xz |
testing/py-doit: modernize, fix license
Diffstat (limited to 'testing')
-rw-r--r-- | testing/py-doit/APKBUILD | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/testing/py-doit/APKBUILD b/testing/py-doit/APKBUILD index 49feae6ee7..98619ef8bd 100644 --- a/testing/py-doit/APKBUILD +++ b/testing/py-doit/APKBUILD @@ -3,9 +3,9 @@ pkgname=py-doit _pkgname=doit pkgver=0.29.0 -pkgrel=3 +pkgrel=4 pkgdesc="A Python Automation Tool" -url="http://pydoit.org/" +url="https://pydoit.org/" arch="noarch" license="MIT" depends="py-six py-inotify" @@ -15,9 +15,8 @@ source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname builddir="$srcdir"/$_pkgname-$pkgver build() { - cd "$builddir" - python2 setup.py build || return 1 - python3 setup.py build || return 1 + python2 setup.py build + python3 setup.py build } package() { |