blob: 43aa0694efce6621a94ab0ba559f72d8fc1c3323 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
SUMMARY = "OpenStack library for privilege separation"
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."
HOMEPAGE = "https://github.com/openstack/oslo.privsep"
SECTION = "devel/python"
LICENSE = "Apache-2"
LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2"
PV = "1.13.2+git${SRCPV}"
SRCREV = "928b08f112b976da50fbed4e4376957ed76d58ba"
SRCNAME = "oslo.privsep"
SRC_URI = "git://github.com/openstack/${SRCNAME}.git;branch=stable/newton"
S = "${WORKDIR}/git"
inherit setuptools
# DEPENDS_default: python-pip
DEPENDS += " \
python-pip \
python-pbr \
"
# RDEPENDS_default:
RDEPENDS_${PN} += " \
python-cffi \
python-enum34 \
python-eventlet \
python-greenlet \
python-oslo.config \
python-oslo.i18n \
python-oslo.log \
python-oslo.utils \
python-msgpack \
"
|