summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@windriver.com>2014-04-30 15:41:58 -0400
committerBruce Ashfield <bruce.ashfield@windriver.com>2014-04-30 15:42:49 -0400
commit1abda8a6b89f36884417e96c20dee394da8159a1 (patch)
tree99d9275ea99cb3d7897a250518a7869399cb47de /meta-openstack/recipes-devtools/python
parent96cabf00ac78440e5a71aca85c4ed4949cce39e3 (diff)
downloadmeta-cloud-services-1abda8a6b89f36884417e96c20dee394da8159a1.tar.gz
barbican: introduce barbicanclient
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python')
-rw-r--r--meta-openstack/recipes-devtools/python/python-barbican_git.bb1
-rw-r--r--meta-openstack/recipes-devtools/python/python-barbicanclient_git.bb28
2 files changed, 29 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-barbican_git.bb b/meta-openstack/recipes-devtools/python/python-barbican_git.bb
index 838346c..93cd587 100644
--- a/meta-openstack/recipes-devtools/python/python-barbican_git.bb
+++ b/meta-openstack/recipes-devtools/python/python-barbican_git.bb
@@ -93,6 +93,7 @@ RDEPENDS_${PN} += " \
93 python-stevedore \ 93 python-stevedore \
94 python-webob \ 94 python-webob \
95 python-wsgiref \ 95 python-wsgiref \
96 python-barbicanclient \
96 " 97 "
97 98
98INITSCRIPT_PACKAGES = "${SRCNAME}" 99INITSCRIPT_PACKAGES = "${SRCNAME}"
diff --git a/meta-openstack/recipes-devtools/python/python-barbicanclient_git.bb b/meta-openstack/recipes-devtools/python/python-barbicanclient_git.bb
new file mode 100644
index 0000000..fb4fa86
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-barbicanclient_git.bb
@@ -0,0 +1,28 @@
1DESCRIPTION = "Client library for Barbican API"
2HOMEPAGE = "https://github.com/stackforge/python-barbicanclient"
3SECTION = "devel/python"
4LICENSE = "Apache-2.0"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=e031cff4528978748f9cc064c6e6fa73"
6
7PR = "r0"
8
9SRC_URI = "\
10 git://github.com/stackforge/python-barbicanclient.git;branch=master \
11 "
12
13PV="2.1.0+git${SRCPV}"
14SRCREV="80cd5724397d0c9c3371f7290591f9b06f610f88"
15S = "${WORKDIR}/git"
16
17inherit setuptools
18
19DEPENDS += " \
20 python-pip \
21 python-pbr \
22 "
23
24RDEPENDS_${PN} += " \
25 python-requests \
26 python-six \
27 python-keystoneclient \
28 "