From ac67559152a359f6bbaf41b8b6529cfaaff236ce Mon Sep 17 00:00:00 2001 From: Luis Martinez Date: Tue, 1 Mar 2022 13:33:49 -0600 Subject: [PATCH] use python-installer for packaging --- .SRCINFO | 4 ++-- PKGBUILD | 9 +++++---- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 7ca8c4b..0e891f4 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,14 +1,14 @@ pkgbase = python-openshift pkgdesc = Python client for the OpenShift API pkgver = 0.13.1 - pkgrel = 1 + pkgrel = 2 url = https://github.com/openshift/openshift-restclient-python arch = any license = APACHE checkdepends = python-pytest makedepends = python-setuptools makedepends = python-build - makedepends = python-install + makedepends = python-installer makedepends = python-wheel depends = python-jinja depends = python-kubernetes diff --git a/PKGBUILD b/PKGBUILD index c76c891..65023d8 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ pkgname=python-openshift pkgver=0.13.1 -pkgrel=1 +pkgrel=2 pkgdesc="Python client for the OpenShift API" arch=('any') url="https://github.com/openshift/openshift-restclient-python" @@ -17,14 +17,14 @@ depends=( 'python-six' 'python-requests' 'python-requests-oauthlib') -makedepends=('python-setuptools' 'python-build' 'python-install' 'python-wheel') +makedepends=('python-setuptools' 'python-build' 'python-installer' 'python-wheel') checkdepends=('python-pytest') source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz") sha256sums=('6a061cc12247e96147e40d8463c133cb01b915907af10df08d937d27e6a1f283') build() { cd "openshift-restclient-python-$pkgver" - python -m build --wheel --skip-dependency-check --no-isolation + python -m build --wheel --no-isolation } check() { @@ -33,6 +33,7 @@ check() { } package() { + export PYTHONHASHSEED=0 cd "openshift-restclient-python-$pkgver" - python -m install --optimize=1 --destdir="$pkgdir/" dist/*.whl + python -m installer --destdir="$pkgdir/" dist/*.whl }