17 lines
564 B
Plaintext
17 lines
564 B
Plaintext
# Description: Easy VCS-based management of project version strings
|
|
# URL: https://github.com/python-versioneer/python-versioneer
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-build python3-installer python3-wheel
|
|
|
|
name=python3-versioneer
|
|
version=0.29
|
|
release=1
|
|
source=(https://pypi.org/packages/source/v/versioneer/versioneer-$version.tar.gz)
|
|
|
|
build() {
|
|
cd versioneer-$version
|
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
|
|
}
|