19 lines
529 B
Plaintext
19 lines
529 B
Plaintext
# Description: Python Build Reasonableness
|
|
# URL: https://pypi.python.org/pypi/pbr
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-build python3-wheel python3-installer
|
|
|
|
name=python3-pbr
|
|
version=6.0.0
|
|
release=1
|
|
source=(https://pypi.org/packages/source/p/pbr/pbr-$version.tar.gz)
|
|
|
|
build() {
|
|
cd pbr-$version
|
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
|
|
|
|
find $PKG -iname "*README*" -delete
|
|
}
|