summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb')
-rw-r--r--meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb62
1 files changed, 0 insertions, 62 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb b/meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb
deleted file mode 100644
index c7bfef4..0000000
--- a/meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb
+++ /dev/null
@@ -1,62 +0,0 @@
1DESCRIPTION = "Client library for OpenStack Identity API"
2HOMEPAGE = "https://github.com/openstack/python-keystoneclient"
3SECTION = "devel/python"
4LICENSE = "Apache-2.0"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=4a4d0e932ffae1c0131528d30d419c55"
6
7SRCNAME = "keystoneclient"
8
9SRC_URI = "\
10 git://github.com/openstack/python-keystoneclient.git;branch=stable/pike \
11 file://keystone-api-check.sh \
12 "
13
14PV = "3.13.0+git${SRCPV}"
15SRCREV = "7ff05baa1fa56f152173651f16fc6fd181291292"
16S = "${WORKDIR}/git"
17
18inherit setuptools3 monitor
19
20FILES_${PN}-doc += "${datadir}/keystoneclient"
21
22DEPENDS += " \
23 python-pip \
24 python-pbr \
25 "
26
27# Satisfy setup.py 'setup_requires'
28DEPENDS += " \
29 python-pbr-native \
30 "
31
32RDEPENDS_${PN} += " \
33 bash \
34 python-pbr \
35 python-debtcollector \
36 python-keystoneauth1 \
37 python-oslo.config \
38 python-oslo.i18n \
39 python-oslo.serialization \
40 python-oslo.utils \
41 python-positional \
42 python-requests \
43 python-six \
44 python-stevedore \
45 "
46
47do_install_append() {
48 cp -r ${S}/examples ${D}${PYTHON_SITEPACKAGES_DIR}/${SRCNAME}
49}
50
51PACKAGES =+ " ${SRCNAME}-tests"
52
53FILES_${SRCNAME}-tests = "${PYTHON_SITEPACKAGES_DIR}/${SRCNAME}/examples \
54 "
55RDEPENDS_${SRCNAME}-tests += " \
56 python-httpretty \
57 bash \
58 "
59
60MONITOR_CHECKS_${PN} += "\
61 keystone-api-check.sh \
62"