summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python-castellan_git.bb
diff options
context:
space:
mode:
authorMark Asselstine <asselsm@gmail.com>2016-02-03 20:41:16 -0500
committerBruce Ashfield <bruce.ashfield@windriver.com>2016-02-05 14:42:17 -0500
commit460d5f940538a4958142cd34a6ee509bb3c0be0a (patch)
tree30d457193235f66b41e992cc5eee84d749f0c41d /meta-openstack/recipes-devtools/python/python-castellan_git.bb
parent53e2faa09a03ece3c30f94ba652dd69a9334884f (diff)
downloadmeta-cloud-services-460d5f940538a4958142cd34a6ee509bb3c0be0a.tar.gz
python-castellan: initial version
This package provides a generic key manager interface for OpenStack. This package is required by glance. Signed-off-by: Mark Asselstine <asselsm@gmail.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-castellan_git.bb')
-rw-r--r--meta-openstack/recipes-devtools/python/python-castellan_git.bb34
1 files changed, 34 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-castellan_git.bb b/meta-openstack/recipes-devtools/python/python-castellan_git.bb
new file mode 100644
index 0000000..40a085d
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-castellan_git.bb
@@ -0,0 +1,34 @@
1DESCRIPTION = "Generic Key Manager interface for OpenStack"
2HOMEPAGE = "https://github.com/openstack/castellan"
3SECTION = "devel/python"
4LICENSE = "Apache-2.0"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2"
6
7SRCNAME = "castellan"
8
9SRC_URI = "\
10 git://git.openstack.org/openstack/${SRCNAME}.git;branch=master \
11 "
12
13PV="0.2.1+git${SRCPV}"
14SRCREV="4fda4a749f3f908d58817c326676073aa6fcf62a"
15S = "${WORKDIR}/git"
16
17inherit setuptools
18
19DEPENDS += " \
20 python-pip \
21 python-pbr \
22 "
23
24RDEPENDS_${PN} += " \
25 python-pbr \
26 python-babel \
27 python-cryptography \
28 python-oslo.config \
29 python-oslo.context \
30 python-oslo.log \
31 python-oslo.policy \
32 python-oslo.serialization \
33 python-oslo.utils \
34 "