diff --git a/python-openshift/.SRCINFO b/python-openshift/.SRCINFO new file mode 100644 index 0000000..0e891f4 --- /dev/null +++ b/python-openshift/.SRCINFO @@ -0,0 +1,23 @@ +pkgbase = python-openshift + pkgdesc = Python client for the OpenShift API + pkgver = 0.13.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-installer + makedepends = python-wheel + depends = python-jinja + depends = python-kubernetes + depends = python-string-utils + depends = python-ruamel-yaml + depends = python-six + depends = python-requests + depends = python-requests-oauthlib + source = python-openshift-0.13.1.tar.gz::https://github.com/openshift/openshift-restclient-python/archive/v0.13.1.tar.gz + sha256sums = 6a061cc12247e96147e40d8463c133cb01b915907af10df08d937d27e6a1f283 + +pkgname = python-openshift diff --git a/python-openshift/.gitignore b/python-openshift/.gitignore new file mode 100644 index 0000000..05c6d4d --- /dev/null +++ b/python-openshift/.gitignore @@ -0,0 +1,4 @@ +* +!.gitignore +!.SRCINFO +!PKGBUILD diff --git a/python-openshift/PKGBUILD b/python-openshift/PKGBUILD new file mode 100644 index 0000000..65023d8 --- /dev/null +++ b/python-openshift/PKGBUILD @@ -0,0 +1,39 @@ +# Maintainer: Luis Martinez +# Contributor: Jeff Henson +# Contributor: Giacomo Longo + +pkgname=python-openshift +pkgver=0.13.1 +pkgrel=2 +pkgdesc="Python client for the OpenShift API" +arch=('any') +url="https://github.com/openshift/openshift-restclient-python" +license=('APACHE') +depends=( + 'python-jinja' + 'python-kubernetes' + 'python-string-utils' + 'python-ruamel-yaml' + 'python-six' + 'python-requests' + 'python-requests-oauthlib') +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 --no-isolation +} + +check() { + cd "openshift-restclient-python-$pkgver" + PYTHONPATH=./ pytest -x -c /dev/null test/unit +} + +package() { + export PYTHONHASHSEED=0 + cd "openshift-restclient-python-$pkgver" + python -m installer --destdir="$pkgdir/" dist/*.whl +}