summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python-oslo.privsep_git.bb
diff options
context:
space:
mode:
authorAdrian Dudau <adrian.dudau@enea.com>2017-08-08 15:47:10 +0200
committerAdrian Dudau <adrian.dudau@enea.com>2017-08-08 15:47:52 +0200
commit6210c860dd703468c1c870c8dc2d815607f71b1c (patch)
tree4aee0badcf3ac007ad59e6d6ccb8418bdd9c8eb7 /meta-openstack/recipes-devtools/python/python-oslo.privsep_git.bb
parent9b53adf9b77dc01f4c0aca3faabab9bdb93c84c7 (diff)
downloadmeta-cloud-services-6210c860dd703468c1c870c8dc2d815607f71b1c.tar.gz
python-oslo.privsep: Add recipe
This is required by python-nova. Signed-off-by: Adrian Dudau <adrian.dudau@enea.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-oslo.privsep_git.bb')
-rw-r--r--meta-openstack/recipes-devtools/python/python-oslo.privsep_git.bb36
1 files changed, 36 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-oslo.privsep_git.bb b/meta-openstack/recipes-devtools/python/python-oslo.privsep_git.bb
new file mode 100644
index 0000000..43aa069
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-oslo.privsep_git.bb
@@ -0,0 +1,36 @@
1SUMMARY = "OpenStack library for privilege separation"
2DESCRIPTION = "This library helps applications perform actions which require more or less privileges than they were started with in a safe, easy to code and easy to use manner. For more information on why this is generally a good idea please read over the principle of least privilege and the specification which created this library."
3HOMEPAGE = "https://github.com/openstack/oslo.privsep"
4SECTION = "devel/python"
5LICENSE = "Apache-2"
6LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2"
7
8PV = "1.13.2+git${SRCPV}"
9SRCREV = "928b08f112b976da50fbed4e4376957ed76d58ba"
10
11SRCNAME = "oslo.privsep"
12SRC_URI = "git://github.com/openstack/${SRCNAME}.git;branch=stable/newton"
13
14S = "${WORKDIR}/git"
15
16inherit setuptools
17
18# DEPENDS_default: python-pip
19
20DEPENDS += " \
21 python-pip \
22 python-pbr \
23 "
24
25# RDEPENDS_default:
26RDEPENDS_${PN} += " \
27 python-cffi \
28 python-enum34 \
29 python-eventlet \
30 python-greenlet \
31 python-oslo.config \
32 python-oslo.i18n \
33 python-oslo.log \
34 python-oslo.utils \
35 python-msgpack \
36 "