mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-05 04:16:46 +02:00
testing/py-mccabe: new aport
A McCabe complexity checker plugin for Flake8 https://github.com/flintwork/mccabe
This commit is contained in:
parent
39eddc6695
commit
3e84b15194
41
testing/py-mccabe/APKBUILD
Normal file
41
testing/py-mccabe/APKBUILD
Normal file
@ -0,0 +1,41 @@
|
||||
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
||||
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
||||
pkgname=py-mccabe
|
||||
_pkgname=mccabe
|
||||
pkgver=0.2.1
|
||||
pkgrel=0
|
||||
pkgdesc="A McCabe complexity checker plugin for Flake8"
|
||||
url="https://github.com/flintwork/mccabe"
|
||||
arch="noarch"
|
||||
license="MIT"
|
||||
depends="python"
|
||||
depends_dev=""
|
||||
makedepends="python-dev py-setuptools"
|
||||
install=""
|
||||
subpackages=""
|
||||
source="http://pypi.python.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
||||
|
||||
_builddir="$srcdir"/$_pkgname-$pkgver
|
||||
prepare() {
|
||||
local i
|
||||
cd "$_builddir"
|
||||
for i in $source; do
|
||||
case $i in
|
||||
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
||||
esac
|
||||
done
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$_builddir"
|
||||
python setup.py build || return 1
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$_builddir"
|
||||
python setup.py install --prefix=/usr --root="$pkgdir" || return 1
|
||||
}
|
||||
|
||||
md5sums="5a3f3fa6a4bad126c88aaaa7dab682f5 mccabe-0.2.1.tar.gz"
|
||||
sha256sums="5a2a170e47de5593a6abfae1e9542bd2c3924ac62bbe4e6ed96c953c0352243a mccabe-0.2.1.tar.gz"
|
||||
sha512sums="7155e52063e786c140c541f1410d0c319387b4b5f24ec3c60ba3d5a963a92d0ee545254559941ac0dbe961f46750c0e61271fbe82653c6b1465c0a13b31ec325 mccabe-0.2.1.tar.gz"
|
||||
Loading…
x
Reference in New Issue
Block a user