upgpkg: python-smbmc 0.2.0-4
Replace python-dephell with PEP517 compatible method.
This commit is contained in:
parent
8d64344cd4
commit
5d82793cbf
1 changed files with 14 additions and 10 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue