python-openshift - Version 0.6.3-1
This commit is contained in:
commit
1a80a39cc5
2 changed files with 51 additions and 0 deletions
20
.SRCINFO
Normal file
20
.SRCINFO
Normal file
|
@ -0,0 +1,20 @@
|
|||
pkgbase = python-openshift
|
||||
pkgdesc = Python client for the OpenShift API
|
||||
pkgver = 0.6.3
|
||||
pkgrel = 1
|
||||
url = https://github.com/openshift/openshift-restclient-python
|
||||
arch = any
|
||||
license = APACHE
|
||||
makedepends = python-setuptools
|
||||
depends = python<3.7
|
||||
depends = python-dictdiffer
|
||||
depends = python-jinja
|
||||
depends = python-kubernetes
|
||||
depends = python-string-utils
|
||||
depends = python-ruamel-yaml
|
||||
depends = python-six
|
||||
source = https://files.pythonhosted.org/packages/source/o/openshift/openshift-0.6.3.tar.gz
|
||||
md5sums = b2ff1c4f57bd5c3584c009d634074cff
|
||||
|
||||
pkgname = python-openshift
|
||||
|
31
PKGBUILD
Normal file
31
PKGBUILD
Normal file
|
@ -0,0 +1,31 @@
|
|||
# Maintainer: Giacomo Longo <gabibbo97@gmail.com>
|
||||
pkgname=python-openshift
|
||||
pkgver=0.6.3
|
||||
pkgrel=1
|
||||
pkgdesc="Python client for the OpenShift API"
|
||||
url="https://github.com/openshift/openshift-restclient-python"
|
||||
license=('APACHE')
|
||||
_name=${pkgname#python-}
|
||||
source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz")
|
||||
md5sums=('b2ff1c4f57bd5c3584c009d634074cff')
|
||||
arch=('any')
|
||||
makedepends=('python-setuptools')
|
||||
depends=(
|
||||
'python<3.7'
|
||||
'python-dictdiffer'
|
||||
'python-jinja'
|
||||
'python-kubernetes'
|
||||
'python-string-utils'
|
||||
'python-ruamel-yaml'
|
||||
'python-six'
|
||||
)
|
||||
|
||||
build() {
|
||||
cd "$srcdir/$_name-$pkgver"
|
||||
python setup.py build
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/$_name-$pkgver"
|
||||
python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
|
||||
}
|
Loading…
Reference in a new issue