diff options
author | Francesco Colista <fcolista@alpinelinux.org> | 2017-11-26 01:53:10 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2017-11-26 01:53:10 +0000 |
commit | 51636f3dcab71421cf3a849d391791d73e878e07 (patch) | |
tree | 07aef1ab8754a8336d5ddacdf0915774ffc749c2 /testing/pylint | |
parent | 0772fe3f2adcf1e2158f5c5efc16c255be00f814 (diff) | |
download | aports-51636f3dcab71421cf3a849d391791d73e878e07.tar.bz2 aports-51636f3dcab71421cf3a849d391791d73e878e07.tar.xz |
testing/pylint:added missing dependencies. Close #8110
Diffstat (limited to 'testing/pylint')
-rw-r--r-- | testing/pylint/APKBUILD | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testing/pylint/APKBUILD b/testing/pylint/APKBUILD index 734529f7de..541bb2011d 100644 --- a/testing/pylint/APKBUILD +++ b/testing/pylint/APKBUILD @@ -2,12 +2,12 @@ # Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> pkgname=pylint pkgver=1.7.4 -pkgrel=0 +pkgrel=1 pkgdesc="Analyzes Python code looking for bugs and signs of poor quality" url="http://pypi.python.org/pypi/pylint" arch="noarch" license="GPL2+" -depends="py-astroid" +depends="py-mccabe py-six py-isort py-astroid" makedepends="python2-dev python3-dev py-setuptools" subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3" source="https://files.pythonhosted.org/packages/source/${pkgname:0:1}/$pkgname/$pkgname-$pkgver.tar.gz" @@ -15,8 +15,8 @@ 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() { |