mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
28 lines
971 B
Text
28 lines
971 B
Text
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py3-flake8-builtins
|
|
_pkgname=flake8-builtins
|
|
pkgver=1.4.1
|
|
pkgrel=1
|
|
pkgdesc="Extension for flake8 to check for builtins"
|
|
options="!check" # No testsuite
|
|
url="https://github.com/gforcada/flake8-builtins"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="py3-flake8"
|
|
makedepends="py3-setuptools"
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir"/$_pkgname-$pkgver
|
|
|
|
replaces="py-flake8-builtins" # Backwards compatibility
|
|
provides="py-flake8-builtins=$pkgver-r$pkgrel" # Backwards compatibility
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="c351b3405a6a627e497cb203ae2d5d15ad167170fe2c63e7510c65d1c705b29a03d3c260e779d0a9f1927339cc9b3409672384a5177fa6c30dfffab01504b326 flake8-builtins-1.4.1.tar.gz"
|