diff options
Diffstat (limited to 'testing/py-pycodestyle/APKBUILD')
-rw-r--r-- | testing/py-pycodestyle/APKBUILD | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/testing/py-pycodestyle/APKBUILD b/testing/py-pycodestyle/APKBUILD new file mode 100644 index 0000000000..16d2941adc --- /dev/null +++ b/testing/py-pycodestyle/APKBUILD @@ -0,0 +1,49 @@ +# Contributor: Leonardo Arena <rnalrd@alpinelinux.org> +# Maintainer: +pkgname=py-pycodestyle +pkgver=2.3.1 +pkgrel=0 +pkgdesc="Check your Python code against some of the style conventions in PEP 8" +url="https://pypi.python.org/pypi/pycodestyle/" +arch="noarch" +license="Unknown" +depends="" +makedepends="python2-dev python3-dev py-setuptools" +options="!check" #no testsuite +subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3" +source="$pkgname-$pkgver.tar.gz::https://github.com/PyCQA/pycodestyle/archive/$pkgver.tar.gz" +builddir="$srcdir"/pycodestyle-$pkgver + +build() { + cd "$builddir" + python2 setup.py --quiet build + python3 setup.py --quiet build +} + +package() { + cd "$builddir" + mkdir -p "$pkgdir"/usr/bin +} + +_py2() { + depends="${depends//py-/py2-}" + _py python2 +} + +_py3() { + depends="${depends//py-/py3-}" + _py python3 +} + +_py() { + local python="$1" + local pyver="${1:6:1}" + pkgdesc="$pkgdesc (for $python)" + depends="$depends $python" + install_if="$pkgname=$pkgver-r$pkgrel $python" + + cd "$builddir" + $python setup.py --quiet install --prefix=/usr --root="$subpkgdir" +} + +sha512sums="78d6a6aad32a31de9852c68c78e91c4aec51224148b0538097e7bb9f0cf60fa13c06aecd0630446fbe72df3523ba8147566a22b0f303c88ada42d828eb81949e py-pycodestyle-2.3.1.tar.gz" |