summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python-novaclient_git.bb
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@windriver.com>2015-02-20 21:04:29 -0500
committerBruce Ashfield <bruce.ashfield@windriver.com>2015-02-20 21:04:29 -0500
commite19241b4a82a207ea2e6c98ecae3aee2b38dd01e (patch)
tree20d732b6dec5b06199315f440d9cac9c034196e7 /meta-openstack/recipes-devtools/python/python-novaclient_git.bb
parentdb43720c6ce4750be4776d01454a4d5cce21c9e6 (diff)
downloadmeta-cloud-services-e19241b4a82a207ea2e6c98ecae3aee2b38dd01e.tar.gz
clients: update to the latest available clients
To start the kilo update cycle, we refresh and update the clients. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-novaclient_git.bb')
-rw-r--r--meta-openstack/recipes-devtools/python/python-novaclient_git.bb12
1 files changed, 6 insertions, 6 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-novaclient_git.bb b/meta-openstack/recipes-devtools/python/python-novaclient_git.bb
index 78a5c93..5192021 100644
--- a/meta-openstack/recipes-devtools/python/python-novaclient_git.bb
+++ b/meta-openstack/recipes-devtools/python/python-novaclient_git.bb
@@ -8,13 +8,11 @@ PR = "r0"
8 8
9SRC_URI = "\ 9SRC_URI = "\
10 git://github.com/openstack/python-novaclient.git;branch=master \ 10 git://github.com/openstack/python-novaclient.git;branch=master \
11 file://fix_novaclient_memory_leak.patch \
12 file://novaclient-specify-full-path-to-test-certificate.patch \
13 file://nova-api-check.sh \ 11 file://nova-api-check.sh \
14 " 12 "
15 13
16PV="2.20.0+git${SRCPV}" 14PV="2.21.0+git${SRCPV}"
17SRCREV="1eb1abe8700a137d017dbcd4a9dab3d4c0879c81" 15SRCREV="bfd029c8ef500af705159a5f3d5fa74e39c43096"
18S = "${WORKDIR}/git" 16S = "${WORKDIR}/git"
19 17
20inherit setuptools monitor 18inherit setuptools monitor
@@ -39,8 +37,10 @@ do_install_append() {
39 install -d ${D}/${sysconfdir}/bash_completion.d 37 install -d ${D}/${sysconfdir}/bash_completion.d
40 install -m 664 ${S}/tools/nova.bash_completion ${D}/${sysconfdir}/bash_completion.d 38 install -m 664 ${S}/tools/nova.bash_completion ${D}/${sysconfdir}/bash_completion.d
41 39
42 sed -e "s:%PYTHON_SITEPACKAGES_DIR%:${PYTHON_SITEPACKAGES_DIR}:g" \ 40 if [ -e "${D}/${PYTHON_SITEPACKAGES_DIR}/novaclient/tests/v1_1/test_servers.py" ]; then
43 -i ${D}/${PYTHON_SITEPACKAGES_DIR}/novaclient/tests/v1_1/test_servers.py 41 sed -e "s:%PYTHON_SITEPACKAGES_DIR%:${PYTHON_SITEPACKAGES_DIR}:g" \
42 -i ${D}/${PYTHON_SITEPACKAGES_DIR}/novaclient/tests/v1_1/test_servers.py
43 fi
44} 44}
45 45
46PACKAGES =+ "${BPN}-bash-completion" 46PACKAGES =+ "${BPN}-bash-completion"