mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-05 12:26:52 +02:00
testing/py-flake8-import-order: new aport
Flake8 and pylama plugin that checks the ordering of import statements. https://github.com/public/flake8-import-order
This commit is contained in:
parent
c25fd347c3
commit
5ffe86f845
41
testing/py-flake8-import-order/APKBUILD
Normal file
41
testing/py-flake8-import-order/APKBUILD
Normal file
@ -0,0 +1,41 @@
|
||||
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
||||
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
||||
pkgname=py-flake8-import-order
|
||||
_pkgname=flake8-import-order
|
||||
pkgver=0.5.3
|
||||
pkgrel=0
|
||||
pkgdesc="Extension for flake8 which checks for the ordering of import statements"
|
||||
url="https://github.com/public/flake8-import-order"
|
||||
arch="noarch"
|
||||
license="MIT"
|
||||
depends="python py-flake8"
|
||||
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="45c8aa3ba5da201e8977798a1c113e9e flake8-import-order-0.5.3.tar.gz"
|
||||
sha256sums="f304ff2d51a9736d59d8f4c829b43f73693010e3cc0724ee6af0a3a275f968a5 flake8-import-order-0.5.3.tar.gz"
|
||||
sha512sums="254fef67814968b959a2be668ca41d37d17b57cff4ab8df2c87081425e505394d53e5362603d065197ba73c0580a8e18f065d89d881692e78fa0f58619153130 flake8-import-order-0.5.3.tar.gz"
|
||||
Loading…
x
Reference in New Issue
Block a user