# Maintainer: Felix Yan <felixonmars@archlinux.org>
pkgname=python-calver
pkgver=2022.06.26
pkgrel=4
pkgdesc="Setuptools extension for CalVer package versions"
url="https://github.com/di/calver"
license=('Apache-2.0')
arch=('any')
depends=('python')
makedepends=('python-setuptools' 'python-build' 'python-installer' 'python-wheel')
source=("https://github.com/di/calver/archive/$pkgver/$pkgname-$pkgver.tar.gz")
sha512sums=('4d436cead8930cae1a71eddef9f0ecd2881f8cb632c3814dc75390b061a909e7ca969a604a5fded1c66647947856d540e2180bd3ce4bed5087b4dbc9d5edb393')
prepare() {
cd calver-$pkgver
echo "Version: $pkgver" > PKG-INFO
}
build() {
cd calver-$pkgver
python -m build --wheel --no-isolation
}
package() {
cd calver-$pkgver
python -m installer --destdir="$pkgdir" dist/*.whl
}