[arch-commits] Commit in (4 files)

Felix Yan fyan at archlinux.org
Sat Mar 5 03:48:40 UTC 2016


    Date: Saturday, March 5, 2016 @ 04:48:39
  Author: fyan
Revision: 164882

addpkg: python-cinderclient 1.6.0-1

Added:
  python-cinderclient/
  python-cinderclient/repos/
  python-cinderclient/trunk/
  python-cinderclient/trunk/PKGBUILD

----------+
 PKGBUILD |   61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 61 insertions(+)

Added: python-cinderclient/trunk/PKGBUILD
===================================================================
--- python-cinderclient/trunk/PKGBUILD	                        (rev 0)
+++ python-cinderclient/trunk/PKGBUILD	2016-03-05 03:48:39 UTC (rev 164882)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Daniel Wallace <danielwallace at gtmanfred dot com>
+
+pkgbase=python-cinderclient
+pkgname=(python-cinderclient python2-cinderclient)
+pkgver=1.6.0
+pkgrel=1
+pkgdesc="OpenStack Image API Client Library"
+arch=('any')
+url="http://docs.openstack.org/developer/python-cinderclient"
+license=('Apache')
+makedepends=('git' 'python-setuptools' 'python2-setuptools' 'python-pbr' 'python2-pbr'
+             'python-babel' 'python2-babel' 'python-prettytable' 'python2-prettytable'
+             'python-keystoneclient' 'python2-keystoneclient' 'python-requests'
+             'python2-requests' 'python-oslo-utils' 'python2-oslo-utils')
+checkdepends=('python-oslotest' 'python2-oslotest' 'python-requests-mock'
+              'python2-requests-mock')
+source=("git+https://git.openstack.org/openstack/python-cinderclient#tag=$pkgver")
+md5sums=('SKIP')
+
+prepare() {
+  sed -i '/simplejson/d' python-cinderclient/requirements.txt
+  cp -a python-cinderclient{,-py2}
+}
+
+build() {
+  cd "$srcdir"/python-cinderclient
+  python setup.py build
+
+  cd "$srcdir"/python-cinderclient-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/python-cinderclient
+  python setup.py testr
+
+  cd "$srcdir"/python-cinderclient-py2
+  PYTHON=python2 python2 setup.py testr
+}
+
+package_python-cinderclient() {
+  depends=('python-six' 'python-pbr' 'python-babel' 'python-prettytable' 'python-keystoneclient'
+           'python-requests' 'python-oslo-utils')
+
+  cd "$srcdir"/python-cinderclient
+  python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+package_python2-cinderclient() {
+  depends=('python2-six' 'python2-pbr' 'python2-babel' 'python2-prettytable' 'python2-keystoneclient'
+           'python2-requests' 'python2-oslo-utils')
+
+  cd "$srcdir"/python-cinderclient-py2
+  python2 setup.py install --root="$pkgdir/" --optimize=1
+
+  mv "$pkgdir"/usr/bin/cinder{,2}
+}
+
+# vim:set ts=2 sw=2 et:


Property changes on: python-cinderclient/trunk/PKGBUILD
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property



More information about the arch-commits mailing list