blob: 46f95c0093140d8acebc571d45120a3e118a3d0d (
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
|
DESCRIPTION = "OpenStack library for privilege separation"
HOMEPAGE = "https://github.com/openstack/oslo.privsep"
SECTION = "devel/python"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2"
SRCNAME = "oslo.privsep"
SRC_URI = "git://github.com/openstack/${SRCNAME}.git"
PV = "2.4.0+git${SRCPV}"
SRCREV = "512b5d9f6b79b798474d8bb2dac2462b0f705cb9"
S = "${WORKDIR}/git"
inherit setuptools3
DEPENDS += " \
python3-pbr \
"
# Satisfy setup.py 'setup_requires'
DEPENDS += " \
python3-pbr-native \
"
# RDEPENDS:default:
RDEPENDS:${PN} += " \
python3-oslo.log \
python3-oslo.i18n \
python3-oslo.config \
python3-oslo.utils \
python3-cffi \
python3-eventlet \
python3-greenlet \
python3-msgpack \
"
|