From be26306b4ab470e65cc93305453d2945aa33bf78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Piliszek?= Date: Mon, 30 Mar 2020 09:56:53 +0200 Subject: [PATCH] Support extras in Glance Store install Recent change to devstack dropped installing test-requirements [1] However, this caused gate failures due to lack of glance-store deps for cinder and swift support. This patch makes devstack install relevant extras depending on enabled features. Additionally, relevant functions are added/fixed to make this possible. glance-store = glance_store (for gerrit search match) [1] https://review.opendev.org/715469 Change-Id: I0bf5792a6058b52936115b515ea8360f6264a7c9 --- inc/python | 32 +++++++++++++++++++++++++++----- lib/glance | 15 ++++++++++++++- 2 files changed, 41 insertions(+), 6 deletions(-) diff --git a/inc/python b/inc/python index 30b9a30eca..dd77296049 100644 --- a/inc/python +++ b/inc/python @@ -21,6 +21,14 @@ set +o xtrace # project. A null value installs to the system Python directories. declare -A -g PROJECT_VENV +# Utility Functions +# ================= + +# Joins bash array of extras with commas as expected by other functions +function join_extras { + local IFS="," + echo "$*" +} # Python Functions # ================ @@ -80,9 +88,9 @@ function pip_install_gr { function pip_install_gr_extras { local name=$1 local extras=$2 - local clean_name - clean_name=$(get_from_global_requirements $name) - pip_install $clean_name[$extras] + local version_constraints + version_constraints=$(get_version_constraints_from_global_requirements $name) + pip_install $name[$extras]$version_constraints } # enable_python3_package() -- no-op for backwards compatibility @@ -230,6 +238,19 @@ function get_from_global_requirements { echo $required_pkg } +# get only version constraints of a package from global requirements file +# get_version_constraints_from_global_requirements +function get_version_constraints_from_global_requirements { + local package=$1 + local required_pkg_version_constraint + # drop the package name from output (\K) + required_pkg_version_constraint=$(grep -i -h -o -P "^${package}\K.*" $REQUIREMENTS_DIR/global-requirements.txt | cut -d\# -f1) + if [[ $required_pkg_version_constraint == "" ]]; then + die $LINENO "Can't find package $package in requirements" + fi + echo $required_pkg_version_constraint +} + # should we use this library from their git repo, or should we let it # get pulled in via pip dependencies. function use_library_from_git { @@ -278,7 +299,7 @@ function setup_lib { # # use this for non namespaced libraries # -# setup_dev_lib [-bindep] +# setup_dev_lib [-bindep] [] function setup_dev_lib { local bindep if [[ $1 == -bindep* ]]; then @@ -287,7 +308,8 @@ function setup_dev_lib { fi local name=$1 local dir=${GITDIR[$name]} - setup_develop $bindep $dir + local extras=$2 + setup_develop $bindep $dir $extras } # this should be used if you want to install globally, all libraries should diff --git a/lib/glance b/lib/glance index e8f846fbb9..9398bd2daf 100644 --- a/lib/glance +++ b/lib/glance @@ -355,11 +355,24 @@ function install_glanceclient { # install_glance() - Collect source and prepare function install_glance { + local glance_store_extras=() + + if is_service_enabled cinder; then + glance_store_extras=("cinder" "${glance_store_extras[@]}") + fi + + if is_service_enabled swift; then + glance_store_extras=("swift" "${glance_store_extras[@]}") + fi + # Install glance_store from git so we make sure we're testing # the latest code. if use_library_from_git "glance_store"; then git_clone_by_name "glance_store" - setup_dev_lib "glance_store" + setup_dev_lib "glance_store" $(join_extras "${glance_store_extras[@]}") + else + # we still need to pass extras + pip_install_gr_extras glance-store $(join_extras "${glance_store_extras[@]}") fi git_clone $GLANCE_REPO $GLANCE_DIR $GLANCE_BRANCH