diff options
| author | Mark Asselstine <asselsm@gmail.com> | 2016-02-03 20:41:24 -0500 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2016-02-05 14:42:17 -0500 |
| commit | d4bb2d204e4a4efbb69c6a9308e2ac5346dec216 (patch) | |
| tree | 1ff71c08364a6838570d3d955b6d98202717092f | |
| parent | 4fb3f26b6f38f3bd7282e21f7f3a324120a129e0 (diff) | |
| download | meta-cloud-services-d4bb2d204e4a4efbb69c6a9308e2ac5346dec216.tar.gz | |
python-manilaclient: initial version
This package provides Python bindings to the OpenStack Manila API.
This package is required by heat.
Signed-off-by: Mark Asselstine <asselsm@gmail.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
| -rw-r--r-- | meta-openstack/recipes-devtools/python/python-manilaclient_git.bb | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-manilaclient_git.bb b/meta-openstack/recipes-devtools/python/python-manilaclient_git.bb new file mode 100644 index 0000000..5cabf2e --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-manilaclient_git.bb | |||
| @@ -0,0 +1,35 @@ | |||
| 1 | DESCRIPTION = "Python bindings to the OpenStack Manila API" | ||
| 2 | HOMEPAGE = "https://github.com/openstack/python-manilaclient" | ||
| 3 | SECTION = "devel/python" | ||
| 4 | LICENSE = "Apache-2.0" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=9edbbf5857ab51214ef0e8b79069bb07" | ||
| 6 | |||
| 7 | DEPENDS += " \ | ||
| 8 | python-pip \ | ||
| 9 | python-pbr \ | ||
| 10 | " | ||
| 11 | |||
| 12 | RDEPENDS_${PN} +=" \ | ||
| 13 | python-pbr \ | ||
| 14 | python-iso8601 \ | ||
| 15 | python-oslo.config \ | ||
| 16 | python-oslo.log \ | ||
| 17 | python-oslo.serialization \ | ||
| 18 | python-oslo.utils \ | ||
| 19 | python-prettytable \ | ||
| 20 | python-pycrypto \ | ||
| 21 | python-requests \ | ||
| 22 | python-simplejson \ | ||
| 23 | python-babel \ | ||
| 24 | python-six \ | ||
| 25 | python-keystoneclient \ | ||
| 26 | " | ||
| 27 | |||
| 28 | SRCNAME = "manilaclient" | ||
| 29 | SRC_URI = "git://github.com/openstack/${BPN}.git;branch=master" | ||
| 30 | |||
| 31 | PV = "1.4.0+git${SRCPV}" | ||
| 32 | SRCREV = "0bbd2144f701df3408b1435b16611c2ba3c22221" | ||
| 33 | S = "${WORKDIR}/git" | ||
| 34 | |||
| 35 | inherit setuptools rmargparse | ||
