git » python-license-expression.git » commit bc09868

todo rebuild - remove pip from makedepends

author George Rawlinson
2022-11-05 02:13:33 UTC
committer George Rawlinson
2022-11-05 02:13:33 UTC
parent 7ae39cf2b1b845986015678f886cfcb872967203

todo rebuild - remove pip from makedepends

PKGBUILD +8 -6

diff --git a/PKGBUILD b/PKGBUILD
index 72ce7d8..b9be22d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,7 +5,7 @@
 
 pkgname=python-license-expression
 pkgver=30.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Utility to parse, normalize and compare license expressions'
 arch=('any')
 url='https://github.com/nexB/license-expression'
@@ -16,9 +16,11 @@ depends=(
 )
 makedepends=(
   'git'
-  'python-setuptools'
+  'python-build'
+  'python-installer'
+  'python-wheel'
+  'python-setuptools-scm'
   'python-wheel'
-  'python-pip'
 )
 checkdepends=(
   'python-pytest'
@@ -46,17 +48,17 @@ prepare() {
 build() {
   cd "$pkgname"
 
-  python setup.py build
+  python -m build --wheel --no-isolation
 }
 
 check() {
   cd "$pkgname"
 
-  pytest
+  pytest -v
 }
 
 package() {
   cd "$pkgname"
 
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+  python -m installer --destdir="$pkgdir" dist/*.whl
 }