blob: 0b67e40cb3c52f9c316da72ea58aed09af5f8c4f (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
DESCRIPTION = "Client library for OpenStack Identity API"
HOMEPAGE = "https://github.com/openstack/python-keystoneclient"
SECTION = "devel/python"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=4a4d0e932ffae1c0131528d30d419c55"
SRCNAME = "keystoneclient"
SRC_URI = "\
git://github.com/openstack/python-keystoneclient.git;branch=master \
file://fix_keystoneclient_memory_leak.patch \
file://keystone-api-check.sh \
"
PV = "1.7.1+git${SRCPV}"
SRCREV = "28138b588224c6b0503620ac2e24bd37dad25370"
S = "${WORKDIR}/git"
inherit setuptools monitor rmargparse
FILES_${PN}-doc += "${datadir}/keystoneclient"
DEPENDS += " \
python-pip \
python-pbr \
"
# Satisfy setup.py 'setup_requires'
DEPENDS += " \
python-pbr-native \
"
RDEPENDS_${PN} += " \
python-iso8601 \
python-prettytable \
python-requests \
python-simplejson \
python-oslo.config \
python-oslo.serialization \
python-pbr \
python-argparse \
"
PACKAGECONFIG ?= "bash-completion"
PACKAGECONFIG[bash-completion] = ",,bash-completion,bash-completion ${BPN}-bash-completion"
do_install_append() {
install -d ${D}/${sysconfdir}/bash_completion.d
install -m 664 ${S}/tools/keystone.bash_completion ${D}/${sysconfdir}/bash_completion.d
cp -r ${S}/examples ${D}${PYTHON_SITEPACKAGES_DIR}/${SRCNAME}
}
PACKAGES =+ " ${SRCNAME}-tests ${BPN}-bash-completion"
FILES_${BPN}-bash-completion = "${sysconfdir}/bash_completion.d/*"
FILES_${SRCNAME}-tests = "${PYTHON_SITEPACKAGES_DIR}/${SRCNAME}/examples \
"
RDEPENDS_${SRCNAME}-tests += " \
python-httpretty \
bash \
"
MONITOR_CHECKS_${PN} += "\
keystone-api-check.sh \
"
|