# Contributor (Arch) : Carl George < arch at cgtx dot us > # Contributor (Arch) : Troy C < rstrox -ta yahoo -tod com > # Maintainer (Parabola) : Aurélien DESBRIÈRES _name="python-novaclient" _module="${_name#python-}" _cmd="${_module%client}" pkgname=("python-${_module}" "python2-${_module}") pkgver="2.24.1" pkgrel="1" pkgdesc="Client library for OpenStack Compute API" arch=("any") url="https://github.com/openstack/${_name}" license=("Apache") makedepends=("python-pbr>=0.6" "python-pip" "python-setuptools" "python2-pbr>=0.6" "python2-pip" "python2-setuptools") source=("https://pypi.python.org/packages/source/${_name:0:1}/${_name}/${_name}-${pkgver}.tar.gz") sha256sums=('ba5bc2a270cdc0ef59a0adc198f9e8b633c2eb81cbd751551fec359acdc0cc8b') prepare() { cd "${srcdir}/${_name}-${pkgver}" sed -ri '/argparse|pbr/d' requirements.txt } package_python-novaclient() { depends=("python-babel>=1.3" "python-iso8601>=0.1.9" "python-keystoneclient>=1.1.0" "python-oslo-i18n>=1.5.0" "python-oslo-serialization>=1.4.0" "python-oslo-utils>=1.4.0" "python-pbr>=0.6" "python-prettytable>=0.7" "python-requests>=2.2.0" "python-simplejson>=2.2.0" "python-six>=1.9.0") cd "${srcdir}/${_name}-${pkgver}" python setup.py install --root="${pkgdir}" --optimize=1 install -Dm644 "tools/${_cmd}.bash_completion" "${pkgdir}/usr/share/bash-completion/completions/${_cmd}" } package_python2-novaclient() { depends=("python2-babel>=1.3" "python2-iso8601>=0.1.9" "python2-keystoneclient>=1.1.0" "python2-oslo-i18n>=1.5.0" "python2-oslo-serialization>=1.4.0" "python2-oslo-utils>=1.4.0" "python2-pbr>=0.6" "python2-prettytable>=0.7" "python2-requests>=2.2.0" "python2-simplejson>=2.2.0" "python2-six>=1.9.0") cd "${srcdir}/${_name}-${pkgver}" python2 setup.py install --root="${pkgdir}" --optimize=1 mv "${pkgdir}/usr/bin/${_cmd}" "${pkgdir}/usr/bin/${_cmd}2" install -Dm644 "tools/${_cmd}.bash_completion" "${pkgdir}/usr/share/bash-completion/completions/${_cmd}2" sed -i '/complete -F/ s/$/2/' "${pkgdir}/usr/share/bash-completion/completions/${_cmd}2" }