aports/testing/py3-flake8-builtins/APKBUILD

33 lines
1 KiB
Text

# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
pkgname=py3-flake8-builtins
pkgver=2.5.0
pkgrel=0
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-hatchling py3-gpep517"
subpackages="$pkgname-pyc"
source="https://files.pythonhosted.org/packages/source/f/flake8-builtins/flake8_builtins-$pkgver.tar.gz"
builddir="$srcdir"/flake8_builtins-$pkgver
replaces="py-flake8-builtins" # Backwards compatibility
provides="py-flake8-builtins=$pkgver-r$pkgrel" # Backwards compatibility
build() {
gpep517 build-wheel \
--wheel-dir .dist \
--output-fd 3 3>&1 >&2
}
package() {
gpep517 install-wheel --destdir "$pkgdir" \
.dist/*.whl
}
sha512sums="
ffe8e3a36a5235b4508d937451afeed4266d926512409f074568f8b77c25d98d26c9c67445ce3789085dbe9272a6f602736eaaf6223e4103525728cf468cd236 flake8_builtins-2.5.0.tar.gz
"