upgpkg: python-smbmc 0.2.0-4

Replace python-dephell with PEP517 compatible method.
This commit is contained in:
George Rawlinson 2021-12-30 16:56:04 +00:00
parent 8d64344cd4
commit 5d82793cbf
Signed by: grawlinson
GPG Key ID: E0959FEA8B550539
1 changed files with 14 additions and 10 deletions

View File

@ -3,28 +3,32 @@
pkgname=python-smbmc
_pkgname=smbmc
pkgver=0.2.0
pkgrel=3
pkgrel=4
pkgdesc="Supermicro BMC interface"
arch=('any')
url="https://github.com/grawlinson/smbmc"
license=('GPL')
depends=('python-requests' 'python-defusedxml')
makedepends=('python-dephell')
makedepends=('python-build' 'python-install' 'python-poetry-core')
source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
b2sums=('f73f077de5e2b7e6cb96a19a9eb952f8274e0cb1b5980437b365d6586ef557bbdd494362f301737776c924de2f580d91eec4e45ed18c32dd712b37565fb98784')
prepare() {
cd "$_pkgname-$pkgver"
dephell deps convert --from pyproject.toml --to setup.py
}
build() {
cd "$_pkgname-$pkgver"
python setup.py build
python -m build \
--wheel \
--skip-dependency-check \
--no-isolation
}
package() {
cd "$_pkgname-$pkgver"
python setup.py install --root="$pkgdir" --optimize=1 --skip-build
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
python -m install \
--optimize=1 \
--destdir="$pkgdir" \
dist/*.whl
install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
}