diff options
| author | Adrian Dudau <adrian.dudau@enea.com> | 2017-08-08 15:47:10 +0200 |
|---|---|---|
| committer | Adrian Dudau <adrian.dudau@enea.com> | 2017-08-08 15:47:52 +0200 |
| commit | 6210c860dd703468c1c870c8dc2d815607f71b1c (patch) | |
| tree | 4aee0badcf3ac007ad59e6d6ccb8418bdd9c8eb7 /meta-openstack/recipes-devtools/python/python-oslo.privsep_git.bb | |
| parent | 9b53adf9b77dc01f4c0aca3faabab9bdb93c84c7 (diff) | |
| download | meta-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.bb | 36 |
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 @@ | |||
| 1 | SUMMARY = "OpenStack library for privilege separation" | ||
| 2 | DESCRIPTION = "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." | ||
| 3 | HOMEPAGE = "https://github.com/openstack/oslo.privsep" | ||
| 4 | SECTION = "devel/python" | ||
| 5 | LICENSE = "Apache-2" | ||
| 6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2" | ||
| 7 | |||
| 8 | PV = "1.13.2+git${SRCPV}" | ||
| 9 | SRCREV = "928b08f112b976da50fbed4e4376957ed76d58ba" | ||
| 10 | |||
| 11 | SRCNAME = "oslo.privsep" | ||
| 12 | SRC_URI = "git://github.com/openstack/${SRCNAME}.git;branch=stable/newton" | ||
| 13 | |||
| 14 | S = "${WORKDIR}/git" | ||
| 15 | |||
| 16 | inherit setuptools | ||
| 17 | |||
| 18 | # DEPENDS_default: python-pip | ||
| 19 | |||
| 20 | DEPENDS += " \ | ||
| 21 | python-pip \ | ||
| 22 | python-pbr \ | ||
| 23 | " | ||
| 24 | |||
| 25 | # RDEPENDS_default: | ||
| 26 | RDEPENDS_${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 | " | ||
