| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 1 | #!/bin/bash | 
|  | 2 | # | 
|  | 3 | # **inc/python** - Python-related functions | 
|  | 4 | # | 
|  | 5 | # Support for pip/setuptools interfaces and virtual environments | 
|  | 6 | # | 
|  | 7 | # External functions used: | 
|  | 8 | # - GetOSVersion | 
|  | 9 | # - is_fedora | 
|  | 10 | # - is_suse | 
|  | 11 | # - safe_chown | 
|  | 12 |  | 
|  | 13 | # Save trace setting | 
|  | 14 | INC_PY_TRACE=$(set +o | grep xtrace) | 
|  | 15 | set +o xtrace | 
|  | 16 |  | 
|  | 17 |  | 
| Dean Troyer | 8c2ce6e | 2015-02-18 14:47:54 -0600 | [diff] [blame] | 18 | # Global Config Variables | 
|  | 19 |  | 
| Atsushi SAKAI | 5509ed5 | 2015-11-30 20:20:21 +0900 | [diff] [blame] | 20 | # PROJECT_VENV contains the name of the virtual environment for each | 
| Dean Troyer | 8c2ce6e | 2015-02-18 14:47:54 -0600 | [diff] [blame] | 21 | # project.  A null value installs to the system Python directories. | 
| Sean Dague | afef8bf | 2017-03-06 14:07:23 -0500 | [diff] [blame] | 22 | declare -A -g PROJECT_VENV | 
| Dean Troyer | 8c2ce6e | 2015-02-18 14:47:54 -0600 | [diff] [blame] | 23 |  | 
|  | 24 |  | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 25 | # Python Functions | 
|  | 26 | # ================ | 
|  | 27 |  | 
|  | 28 | # Get the path to the pip command. | 
|  | 29 | # get_pip_command | 
|  | 30 | function get_pip_command { | 
| Doug Hellmann | ddc3839 | 2015-05-07 21:06:24 +0000 | [diff] [blame] | 31 | local version="$1" | 
|  | 32 | # NOTE(dhellmann): I don't know if we actually get a pip3.4-python | 
|  | 33 | # under any circumstances. | 
|  | 34 | which pip${version} || which pip${version}-python | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 35 |  | 
|  | 36 | if [ $? -ne 0 ]; then | 
| Doug Hellmann | ddc3839 | 2015-05-07 21:06:24 +0000 | [diff] [blame] | 37 | die $LINENO "Unable to find pip${version}; cannot continue" | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 38 | fi | 
|  | 39 | } | 
|  | 40 |  | 
| Atsushi SAKAI | 5509ed5 | 2015-11-30 20:20:21 +0900 | [diff] [blame] | 41 | # Get the path to the directory where python executables are installed. | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 42 | # get_python_exec_prefix | 
|  | 43 | function get_python_exec_prefix { | 
| Ian Wienand | 433a9b1 | 2015-10-07 13:29:31 +1100 | [diff] [blame] | 44 | local xtrace | 
|  | 45 | xtrace=$(set +o | grep xtrace) | 
| Dean Troyer | 2b56476 | 2015-02-11 17:01:02 -0600 | [diff] [blame] | 46 | set +o xtrace | 
|  | 47 | if [[ -z "$os_PACKAGE" ]]; then | 
|  | 48 | GetOSVersion | 
|  | 49 | fi | 
|  | 50 | $xtrace | 
|  | 51 |  | 
| Lenny Verkhovsky | a30dd1c | 2019-03-14 13:19:36 +0200 | [diff] [blame] | 52 | local PYTHON_PATH=/usr/local/bin | 
|  | 53 | ( is_fedora && ! python3_enabled ) || is_suse && PYTHON_PATH=/usr/bin | 
|  | 54 | echo $PYTHON_PATH | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 55 | } | 
|  | 56 |  | 
| Sean Dague | 60996b1 | 2015-04-08 09:06:49 -0400 | [diff] [blame] | 57 | # Wrapper for ``pip install`` that only installs versions of libraries | 
|  | 58 | # from the global-requirements specification. | 
|  | 59 | # | 
|  | 60 | # Uses globals ``REQUIREMENTS_DIR`` | 
|  | 61 | # | 
|  | 62 | # pip_install_gr packagename | 
|  | 63 | function pip_install_gr { | 
|  | 64 | local name=$1 | 
| Ian Wienand | ada886d | 2015-10-07 14:06:26 +1100 | [diff] [blame] | 65 | local clean_name | 
|  | 66 | clean_name=$(get_from_global_requirements $name) | 
| Sean Dague | 60996b1 | 2015-04-08 09:06:49 -0400 | [diff] [blame] | 67 | pip_install $clean_name | 
|  | 68 | } | 
|  | 69 |  | 
| Mehdi Abaakouk | 52b1074 | 2016-12-01 16:11:17 +0100 | [diff] [blame] | 70 | # Wrapper for ``pip install`` that only installs versions of libraries | 
|  | 71 | # from the global-requirements specification with extras. | 
|  | 72 | # | 
|  | 73 | # Uses globals ``REQUIREMENTS_DIR`` | 
|  | 74 | # | 
|  | 75 | # pip_install_gr_extras packagename extra1,extra2,... | 
|  | 76 | function pip_install_gr_extras { | 
|  | 77 | local name=$1 | 
|  | 78 | local extras=$2 | 
|  | 79 | local clean_name | 
|  | 80 | clean_name=$(get_from_global_requirements $name) | 
|  | 81 | pip_install $clean_name[$extras] | 
|  | 82 | } | 
|  | 83 |  | 
| Doug Hellmann | 36377f6 | 2018-12-04 11:33:03 -0500 | [diff] [blame] | 84 | # python3_enabled_for() assumes the service(s) specified as arguments are | 
|  | 85 | # enabled for python 3 unless explicitly disabled. See python3_disabled_for(). | 
| Doug Hellmann | 94129c7 | 2017-01-09 21:24:24 +0000 | [diff] [blame] | 86 | # | 
|  | 87 | # Multiple services specified as arguments are ``OR``'ed together; the test | 
|  | 88 | # is a short-circuit boolean, i.e it returns on the first match. | 
|  | 89 | # | 
| Doug Hellmann | 94129c7 | 2017-01-09 21:24:24 +0000 | [diff] [blame] | 90 | # python3_enabled_for dir [dir ...] | 
|  | 91 | function python3_enabled_for { | 
|  | 92 | local xtrace | 
|  | 93 | xtrace=$(set +o | grep xtrace) | 
|  | 94 | set +o xtrace | 
|  | 95 |  | 
|  | 96 | local enabled=1 | 
|  | 97 | local dirs=$@ | 
|  | 98 | local dir | 
|  | 99 | for dir in ${dirs}; do | 
| Doug Hellmann | 36377f6 | 2018-12-04 11:33:03 -0500 | [diff] [blame] | 100 | if ! python3_disabled_for "${dir}"; then | 
|  | 101 | enabled=0 | 
|  | 102 | fi | 
| Doug Hellmann | 94129c7 | 2017-01-09 21:24:24 +0000 | [diff] [blame] | 103 | done | 
|  | 104 |  | 
|  | 105 | $xtrace | 
|  | 106 | return $enabled | 
|  | 107 | } | 
|  | 108 |  | 
|  | 109 | # python3_disabled_for() checks if the service(s) specified as arguments are | 
|  | 110 | # disabled by the user in ``DISABLED_PYTHON3_PACKAGES``. | 
|  | 111 | # | 
|  | 112 | # Multiple services specified as arguments are ``OR``'ed together; the test | 
|  | 113 | # is a short-circuit boolean, i.e it returns on the first match. | 
|  | 114 | # | 
|  | 115 | # Uses global ``DISABLED_PYTHON3_PACKAGES`` | 
|  | 116 | # python3_disabled_for dir [dir ...] | 
|  | 117 | function python3_disabled_for { | 
|  | 118 | local xtrace | 
|  | 119 | xtrace=$(set +o | grep xtrace) | 
|  | 120 | set +o xtrace | 
|  | 121 |  | 
|  | 122 | local enabled=1 | 
|  | 123 | local dirs=$@ | 
|  | 124 | local dir | 
|  | 125 | for dir in ${dirs}; do | 
|  | 126 | [[ ,${DISABLED_PYTHON3_PACKAGES}, =~ ,${dir}, ]] && enabled=0 | 
|  | 127 | done | 
|  | 128 |  | 
|  | 129 | $xtrace | 
|  | 130 | return $enabled | 
|  | 131 | } | 
|  | 132 |  | 
| Doug Hellmann | 36377f6 | 2018-12-04 11:33:03 -0500 | [diff] [blame] | 133 | # enable_python3_package() -- no-op for backwards compatibility | 
| Doug Hellmann | 94129c7 | 2017-01-09 21:24:24 +0000 | [diff] [blame] | 134 | # | 
|  | 135 | # For example: | 
|  | 136 | #   enable_python3_package nova | 
|  | 137 | # | 
| Doug Hellmann | 94129c7 | 2017-01-09 21:24:24 +0000 | [diff] [blame] | 138 | # enable_python3_package dir [dir ...] | 
|  | 139 | function enable_python3_package { | 
|  | 140 | local xtrace | 
|  | 141 | xtrace=$(set +o | grep xtrace) | 
|  | 142 | set +o xtrace | 
|  | 143 |  | 
| Doug Hellmann | 36377f6 | 2018-12-04 11:33:03 -0500 | [diff] [blame] | 144 | echo "It is no longer necessary to call enable_python3_package()." | 
| Doug Hellmann | 94129c7 | 2017-01-09 21:24:24 +0000 | [diff] [blame] | 145 |  | 
|  | 146 | $xtrace | 
|  | 147 | } | 
|  | 148 |  | 
| Doug Hellmann | 36377f6 | 2018-12-04 11:33:03 -0500 | [diff] [blame] | 149 | # disable_python3_package() adds the services passed as argument to | 
|  | 150 | # the ``DISABLED_PYTHON3_PACKAGES`` list. | 
| Doug Hellmann | 94129c7 | 2017-01-09 21:24:24 +0000 | [diff] [blame] | 151 | # | 
|  | 152 | # For example: | 
|  | 153 | #   disable_python3_package swift | 
|  | 154 | # | 
| Doug Hellmann | 36377f6 | 2018-12-04 11:33:03 -0500 | [diff] [blame] | 155 | # Uses global ``DISABLED_PYTHON3_PACKAGES`` | 
| Doug Hellmann | 94129c7 | 2017-01-09 21:24:24 +0000 | [diff] [blame] | 156 | # disable_python3_package dir [dir ...] | 
|  | 157 | function disable_python3_package { | 
|  | 158 | local xtrace | 
|  | 159 | xtrace=$(set +o | grep xtrace) | 
|  | 160 | set +o xtrace | 
|  | 161 |  | 
|  | 162 | local disabled_svcs="${DISABLED_PYTHON3_PACKAGES}" | 
| Doug Hellmann | 94129c7 | 2017-01-09 21:24:24 +0000 | [diff] [blame] | 163 | local dir | 
|  | 164 | for dir in $@; do | 
|  | 165 | disabled_svcs+=",$dir" | 
| Doug Hellmann | 94129c7 | 2017-01-09 21:24:24 +0000 | [diff] [blame] | 166 | done | 
|  | 167 | DISABLED_PYTHON3_PACKAGES=$(_cleanup_service_list "$disabled_svcs") | 
| Doug Hellmann | 94129c7 | 2017-01-09 21:24:24 +0000 | [diff] [blame] | 168 |  | 
|  | 169 | $xtrace | 
|  | 170 | } | 
|  | 171 |  | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 172 | # Wrapper for ``pip install`` to set cache and proxy environment variables | 
| Dean Troyer | 41d6f85 | 2015-03-25 22:42:46 -0500 | [diff] [blame] | 173 | # Uses globals ``OFFLINE``, ``PIP_VIRTUAL_ENV``, | 
| Robert Collins | 635a5ba | 2015-06-10 08:48:06 +1200 | [diff] [blame] | 174 | # ``PIP_UPGRADE``, ``TRACK_DEPENDS``, ``*_proxy``, | 
| Zane Bitter | 9e7ead9 | 2017-10-05 16:51:09 -0400 | [diff] [blame] | 175 | # Usage: | 
|  | 176 | #  pip_install pip_arguments | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 177 | function pip_install { | 
| Federico Ressi | e208d06 | 2015-11-21 11:15:39 +0000 | [diff] [blame] | 178 | local xtrace result | 
| Ian Wienand | 433a9b1 | 2015-10-07 13:29:31 +1100 | [diff] [blame] | 179 | xtrace=$(set +o | grep xtrace) | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 180 | set +o xtrace | 
| Chris Dent | ebdd9ac | 2015-03-04 12:35:14 +0000 | [diff] [blame] | 181 | local upgrade="" | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 182 | local offline=${OFFLINE:-False} | 
|  | 183 | if [[ "$offline" == "True" || -z "$@" ]]; then | 
|  | 184 | $xtrace | 
|  | 185 | return | 
|  | 186 | fi | 
|  | 187 |  | 
| Sean Dague | cb658fa | 2015-10-08 17:12:03 -0400 | [diff] [blame] | 188 | time_start "pip_install" | 
|  | 189 |  | 
| Chris Dent | ebdd9ac | 2015-03-04 12:35:14 +0000 | [diff] [blame] | 190 | PIP_UPGRADE=$(trueorfalse False PIP_UPGRADE) | 
|  | 191 | if [[ "$PIP_UPGRADE" = "True" ]] ; then | 
|  | 192 | upgrade="--upgrade" | 
|  | 193 | fi | 
|  | 194 |  | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 195 | if [[ -z "$os_PACKAGE" ]]; then | 
|  | 196 | GetOSVersion | 
|  | 197 | fi | 
| Zane Bitter | 9e7ead9 | 2017-10-05 16:51:09 -0400 | [diff] [blame] | 198 |  | 
|  | 199 | # Try to extract the path of the package we are installing into | 
|  | 200 | # package_dir.  We need this to check for test-requirements.txt, | 
|  | 201 | # at least. | 
|  | 202 | # | 
|  | 203 | # ${!#} expands to the last positional argument to this function. | 
|  | 204 | # With "extras" syntax included, our arguments might be something | 
|  | 205 | # like: | 
|  | 206 | #  -e /path/to/fooproject[extra] | 
|  | 207 | # Thus this magic line grabs just the path without extras | 
|  | 208 | # | 
|  | 209 | # Note that this makes no sense if this is a pypi (rather than | 
|  | 210 | # local path) install; ergo you must check this path exists before | 
|  | 211 | # use.  Also, if we had multiple or mixed installs, we would also | 
|  | 212 | # likely break.  But for historical reasons, it's basically only | 
|  | 213 | # the other wrapper functions in here calling this to install | 
|  | 214 | # local packages, and they do so with single call per install.  So | 
|  | 215 | # this works (for now...) | 
|  | 216 | local package_dir=${!#%\[*\]} | 
|  | 217 |  | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 218 | if [[ $TRACK_DEPENDS = True && ! "$@" =~ virtualenv ]]; then | 
|  | 219 | # TRACK_DEPENDS=True installation creates a circular dependency when | 
| Atsushi SAKAI | 5509ed5 | 2015-11-30 20:20:21 +0900 | [diff] [blame] | 220 | # we attempt to install virtualenv into a virtualenv, so we must global | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 221 | # that installation. | 
|  | 222 | source $DEST/.venv/bin/activate | 
|  | 223 | local cmd_pip=$DEST/.venv/bin/pip | 
|  | 224 | local sudo_pip="env" | 
|  | 225 | else | 
| Dean Troyer | 2b56476 | 2015-02-11 17:01:02 -0600 | [diff] [blame] | 226 | if [[ -n ${PIP_VIRTUAL_ENV:=} && -d ${PIP_VIRTUAL_ENV} ]]; then | 
|  | 227 | local cmd_pip=$PIP_VIRTUAL_ENV/bin/pip | 
|  | 228 | local sudo_pip="env" | 
|  | 229 | else | 
| Ian Wienand | ada886d | 2015-10-07 14:06:26 +1100 | [diff] [blame] | 230 | local cmd_pip | 
| Doug Hellmann | ddc3839 | 2015-05-07 21:06:24 +0000 | [diff] [blame] | 231 | cmd_pip=$(get_pip_command $PYTHON2_VERSION) | 
| Dean Troyer | 2b56476 | 2015-02-11 17:01:02 -0600 | [diff] [blame] | 232 | local sudo_pip="sudo -H" | 
| Doug Hellmann | ddc3839 | 2015-05-07 21:06:24 +0000 | [diff] [blame] | 233 | if python3_enabled; then | 
| Davanum Srinivas | afa8a00 | 2016-12-19 09:51:01 -0500 | [diff] [blame] | 234 | # Special case some services that have experimental | 
|  | 235 | # support for python3 in progress, but don't claim support | 
|  | 236 | # in their classifier | 
|  | 237 | echo "Check python version for : $package_dir" | 
| Doug Hellmann | 94129c7 | 2017-01-09 21:24:24 +0000 | [diff] [blame] | 238 | if python3_disabled_for ${package_dir##*/}; then | 
|  | 239 | echo "Explicitly using $PYTHON2_VERSION version to install $package_dir based on DISABLED_PYTHON3_PACKAGES" | 
| Matt Riedemann | e03bcb2 | 2019-04-01 12:19:45 -0400 | [diff] [blame] | 240 | else | 
|  | 241 | # For everything that is not explicitly blacklisted with | 
|  | 242 | # DISABLED_PYTHON3_PACKAGES, assume it supports python3 | 
|  | 243 | # and we will let pip sort out the install, regardless of | 
|  | 244 | # the package being local or remote. | 
| Doug Hellmann | 36377f6 | 2018-12-04 11:33:03 -0500 | [diff] [blame] | 245 | echo "Using $PYTHON3_VERSION version to install $package_dir based on default behavior" | 
| Davanum Srinivas | afa8a00 | 2016-12-19 09:51:01 -0500 | [diff] [blame] | 246 | sudo_pip="$sudo_pip LC_ALL=en_US.UTF-8" | 
|  | 247 | cmd_pip=$(get_pip_command $PYTHON3_VERSION) | 
| Doug Hellmann | ddc3839 | 2015-05-07 21:06:24 +0000 | [diff] [blame] | 248 | fi | 
|  | 249 | fi | 
| Dean Troyer | 2b56476 | 2015-02-11 17:01:02 -0600 | [diff] [blame] | 250 | fi | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 251 | fi | 
|  | 252 |  | 
| Robert Collins | 635a5ba | 2015-06-10 08:48:06 +1200 | [diff] [blame] | 253 | cmd_pip="$cmd_pip install" | 
| Clark Boylan | 05aa384 | 2015-08-03 11:14:13 -0700 | [diff] [blame] | 254 | # Always apply constraints | 
|  | 255 | cmd_pip="$cmd_pip -c $REQUIREMENTS_DIR/upper-constraints.txt" | 
| Robert Collins | 635a5ba | 2015-06-10 08:48:06 +1200 | [diff] [blame] | 256 |  | 
| Doug Hellmann | ddc3839 | 2015-05-07 21:06:24 +0000 | [diff] [blame] | 257 | # FIXME(dhellmann): Need to force multiple versions of pip for | 
|  | 258 | # packages like setuptools? | 
| Ian Wienand | ada886d | 2015-10-07 14:06:26 +1100 | [diff] [blame] | 259 | local pip_version | 
|  | 260 | pip_version=$(python -c "import pip; \ | 
| Clark Boylan | 0657795 | 2017-10-20 12:14:29 -0700 | [diff] [blame] | 261 | print(pip.__version__.split('.')[0])") | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 262 | if (( pip_version<6 )); then | 
|  | 263 | die $LINENO "Currently installed pip version ${pip_version} does not" \ | 
|  | 264 | "meet minimum requirements (>=6)." | 
|  | 265 | fi | 
|  | 266 |  | 
|  | 267 | $xtrace | 
| Clark Boylan | f266a2d | 2017-06-12 14:57:59 -0700 | [diff] [blame] | 268 |  | 
|  | 269 | # Also install test requirements | 
|  | 270 | local install_test_reqs="" | 
| Zane Bitter | 9e7ead9 | 2017-10-05 16:51:09 -0400 | [diff] [blame] | 271 | local test_req="${package_dir}/test-requirements.txt" | 
| Clark Boylan | f266a2d | 2017-06-12 14:57:59 -0700 | [diff] [blame] | 272 | if [[ -e "$test_req" ]]; then | 
|  | 273 | install_test_reqs="-r $test_req" | 
|  | 274 | fi | 
|  | 275 |  | 
| Spyros Trigazis | 88ccd47 | 2016-07-24 22:13:57 +0200 | [diff] [blame] | 276 | # adding SETUPTOOLS_SYS_PATH_TECHNIQUE is a workaround to keep | 
|  | 277 | # the same behaviour of setuptools before version 25.0.0. | 
|  | 278 | # related issue: https://github.com/pypa/pip/issues/3874 | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 279 | $sudo_pip \ | 
| Eli Qiao | 6a83c42 | 2015-03-17 16:54:16 +0800 | [diff] [blame] | 280 | http_proxy="${http_proxy:-}" \ | 
|  | 281 | https_proxy="${https_proxy:-}" \ | 
|  | 282 | no_proxy="${no_proxy:-}" \ | 
| Joe Gordon | cd8824a | 2015-03-04 16:40:19 -0800 | [diff] [blame] | 283 | PIP_FIND_LINKS=$PIP_FIND_LINKS \ | 
| Spyros Trigazis | 88ccd47 | 2016-07-24 22:13:57 +0200 | [diff] [blame] | 284 | SETUPTOOLS_SYS_PATH_TECHNIQUE=rewrite \ | 
| Clark Boylan | f266a2d | 2017-06-12 14:57:59 -0700 | [diff] [blame] | 285 | $cmd_pip $upgrade $install_test_reqs \ | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 286 | $@ | 
| Federico Ressi | e208d06 | 2015-11-21 11:15:39 +0000 | [diff] [blame] | 287 | result=$? | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 288 |  | 
| Sean Dague | cb658fa | 2015-10-08 17:12:03 -0400 | [diff] [blame] | 289 | time_stop "pip_install" | 
| Federico Ressi | e208d06 | 2015-11-21 11:15:39 +0000 | [diff] [blame] | 290 | return $result | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 291 | } | 
|  | 292 |  | 
| Sean Dague | f28e7ef | 2017-05-07 22:02:10 -0400 | [diff] [blame] | 293 | function pip_uninstall { | 
| Sampath Priyankara | 87d2396 | 2017-08-03 16:12:40 +0900 | [diff] [blame] | 294 | # Skip uninstall if offline | 
|  | 295 | [[ "${OFFLINE}" = "True" ]] && return | 
|  | 296 |  | 
| Sean Dague | f28e7ef | 2017-05-07 22:02:10 -0400 | [diff] [blame] | 297 | local name=$1 | 
|  | 298 | if [[ -n ${PIP_VIRTUAL_ENV:=} && -d ${PIP_VIRTUAL_ENV} ]]; then | 
|  | 299 | local cmd_pip=$PIP_VIRTUAL_ENV/bin/pip | 
|  | 300 | local sudo_pip="env" | 
|  | 301 | else | 
|  | 302 | local cmd_pip | 
|  | 303 | cmd_pip=$(get_pip_command $PYTHON2_VERSION) | 
|  | 304 | local sudo_pip="sudo -H" | 
|  | 305 | fi | 
|  | 306 | # don't error if we can't uninstall, it might not be there | 
| Brian Haley | 954fd1b | 2017-05-16 12:24:45 -0400 | [diff] [blame] | 307 | $sudo_pip $cmd_pip uninstall -y $name || /bin/true | 
| Sean Dague | f28e7ef | 2017-05-07 22:02:10 -0400 | [diff] [blame] | 308 | } | 
|  | 309 |  | 
| Joe Gordon | d5ac785 | 2015-02-06 19:29:23 -0800 | [diff] [blame] | 310 | # get version of a package from global requirements file | 
|  | 311 | # get_from_global_requirements <package> | 
|  | 312 | function get_from_global_requirements { | 
|  | 313 | local package=$1 | 
| Ian Wienand | ada886d | 2015-10-07 14:06:26 +1100 | [diff] [blame] | 314 | local required_pkg | 
|  | 315 | required_pkg=$(grep -i -h ^${package} $REQUIREMENTS_DIR/global-requirements.txt | cut -d\# -f1) | 
| Joe Gordon | d5ac785 | 2015-02-06 19:29:23 -0800 | [diff] [blame] | 316 | if [[ $required_pkg == ""  ]]; then | 
|  | 317 | die $LINENO "Can't find package $package in requirements" | 
|  | 318 | fi | 
|  | 319 | echo $required_pkg | 
|  | 320 | } | 
|  | 321 |  | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 322 | # should we use this library from their git repo, or should we let it | 
|  | 323 | # get pulled in via pip dependencies. | 
|  | 324 | function use_library_from_git { | 
|  | 325 | local name=$1 | 
|  | 326 | local enabled=1 | 
| Marc Koderer | 46f8cb7 | 2016-05-13 09:08:16 +0200 | [diff] [blame] | 327 | [[ ${LIBS_FROM_GIT} = 'ALL' ]] || [[ ,${LIBS_FROM_GIT}, =~ ,${name}, ]] && enabled=0 | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 328 | return $enabled | 
|  | 329 | } | 
|  | 330 |  | 
| Sean Dague | c71973e | 2015-09-08 07:12:48 -0400 | [diff] [blame] | 331 | # determine if a package was installed from git | 
|  | 332 | function lib_installed_from_git { | 
|  | 333 | local name=$1 | 
| DamonLi | 007f588 | 2017-11-23 10:05:46 +0800 | [diff] [blame] | 334 | local safe_name | 
|  | 335 | safe_name=$(python -c "from pkg_resources import safe_name; \ | 
|  | 336 | print(safe_name('${name}'))") | 
| Ian Wienand | ae9c6ab | 2017-09-29 10:16:47 +1000 | [diff] [blame] | 337 | # Note "pip freeze" doesn't always work here, because it tries to | 
|  | 338 | # be smart about finding the remote of the git repo the package | 
|  | 339 | # was installed from.  This doesn't work with zuul which clones | 
|  | 340 | # repos with no remote. | 
|  | 341 | # | 
|  | 342 | # The best option seems to be to use "pip list" which will tell | 
|  | 343 | # you the path an editable install was installed from; for example | 
|  | 344 | # in response to something like | 
|  | 345 | #  pip install -e 'git+http://git.openstack.org/openstack-dev/bashate#egg=bashate' | 
| Monty Taylor | f0cd9a8 | 2017-10-06 13:11:48 -0500 | [diff] [blame] | 346 | # pip list --format columns shows | 
|  | 347 | #  bashate 0.5.2.dev19 /tmp/env/src/bashate | 
|  | 348 | # Thus we check the third column to see if we're installed from | 
|  | 349 | # some local place. | 
| DamonLi | 007f588 | 2017-11-23 10:05:46 +0800 | [diff] [blame] | 350 | [[ -n $(pip list --format=columns 2>/dev/null | awk "/^$safe_name/ {print \$3}") ]] | 
| Sean Dague | c71973e | 2015-09-08 07:12:48 -0400 | [diff] [blame] | 351 | } | 
|  | 352 |  | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 353 | # setup a library by name. If we are trying to use the library from | 
|  | 354 | # git, we'll do a git based install, otherwise we'll punt and the | 
|  | 355 | # library should be installed by a requirements pull from another | 
|  | 356 | # project. | 
|  | 357 | function setup_lib { | 
|  | 358 | local name=$1 | 
|  | 359 | local dir=${GITDIR[$name]} | 
|  | 360 | setup_install $dir | 
|  | 361 | } | 
|  | 362 |  | 
| Atsushi SAKAI | 5509ed5 | 2015-11-30 20:20:21 +0900 | [diff] [blame] | 363 | # setup a library by name in editable mode. If we are trying to use | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 364 | # the library from git, we'll do a git based install, otherwise we'll | 
|  | 365 | # punt and the library should be installed by a requirements pull from | 
|  | 366 | # another project. | 
|  | 367 | # | 
|  | 368 | # use this for non namespaced libraries | 
| Ian Wienand | 58243f6 | 2018-12-13 14:05:53 +1100 | [diff] [blame] | 369 | # | 
|  | 370 | # setup_dev_lib [-bindep] <name> | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 371 | function setup_dev_lib { | 
| Ian Wienand | 58243f6 | 2018-12-13 14:05:53 +1100 | [diff] [blame] | 372 | local bindep | 
|  | 373 | if [[ $1 == -bindep* ]]; then | 
|  | 374 | bindep="${1}" | 
|  | 375 | shift | 
|  | 376 | fi | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 377 | local name=$1 | 
|  | 378 | local dir=${GITDIR[$name]} | 
| Doug Hellmann | a2eb894 | 2017-01-09 22:11:49 +0000 | [diff] [blame] | 379 | if python3_enabled; then | 
|  | 380 | # Turn off Python 3 mode and install the package again, | 
|  | 381 | # forcing a Python 2 installation. This ensures that all libs | 
|  | 382 | # being used for development are installed under both versions | 
|  | 383 | # of Python. | 
|  | 384 | echo "Installing $name again without Python 3 enabled" | 
|  | 385 | USE_PYTHON3=False | 
| Ian Wienand | 58243f6 | 2018-12-13 14:05:53 +1100 | [diff] [blame] | 386 | setup_develop $bindep $dir | 
| Doug Hellmann | a2eb894 | 2017-01-09 22:11:49 +0000 | [diff] [blame] | 387 | USE_PYTHON3=True | 
|  | 388 | fi | 
| Ian Wienand | 58243f6 | 2018-12-13 14:05:53 +1100 | [diff] [blame] | 389 | setup_develop $bindep $dir | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 390 | } | 
|  | 391 |  | 
|  | 392 | # this should be used if you want to install globally, all libraries should | 
|  | 393 | # use this, especially *oslo* ones | 
| Brant Knudson | 0842b81 | 2015-08-03 13:31:25 -0500 | [diff] [blame] | 394 | # | 
|  | 395 | # setup_install project_dir [extras] | 
|  | 396 | # project_dir: directory of project repo (e.g., /opt/stack/keystone) | 
|  | 397 | # extras: comma-separated list of optional dependencies to install | 
|  | 398 | #         (e.g., ldap,memcache). | 
| Takashi NATSUME | fa00777 | 2017-07-22 08:59:43 +0900 | [diff] [blame] | 399 | #         See https://docs.openstack.org/pbr/latest/user/using.html#extra-requirements | 
| Ian Wienand | 58243f6 | 2018-12-13 14:05:53 +1100 | [diff] [blame] | 400 | # bindep: Set "-bindep" as first argument to install bindep.txt packages | 
| Brant Knudson | 0842b81 | 2015-08-03 13:31:25 -0500 | [diff] [blame] | 401 | # The command is like "pip install <project_dir>[<extras>]" | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 402 | function setup_install { | 
| Ian Wienand | 58243f6 | 2018-12-13 14:05:53 +1100 | [diff] [blame] | 403 | local bindep | 
|  | 404 | if [[ $1 == -bindep* ]]; then | 
|  | 405 | bindep="${1}" | 
|  | 406 | shift | 
|  | 407 | fi | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 408 | local project_dir=$1 | 
| Brant Knudson | 0842b81 | 2015-08-03 13:31:25 -0500 | [diff] [blame] | 409 | local extras=$2 | 
| Ian Wienand | 58243f6 | 2018-12-13 14:05:53 +1100 | [diff] [blame] | 410 | _setup_package_with_constraints_edit $bindep $project_dir "" $extras | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 411 | } | 
|  | 412 |  | 
|  | 413 | # this should be used for projects which run services, like all services | 
| Brant Knudson | 0842b81 | 2015-08-03 13:31:25 -0500 | [diff] [blame] | 414 | # | 
|  | 415 | # setup_develop project_dir [extras] | 
|  | 416 | # project_dir: directory of project repo (e.g., /opt/stack/keystone) | 
|  | 417 | # extras: comma-separated list of optional dependencies to install | 
|  | 418 | #         (e.g., ldap,memcache). | 
| Takashi NATSUME | fa00777 | 2017-07-22 08:59:43 +0900 | [diff] [blame] | 419 | #         See https://docs.openstack.org/pbr/latest/user/using.html#extra-requirements | 
| Brant Knudson | 0842b81 | 2015-08-03 13:31:25 -0500 | [diff] [blame] | 420 | # The command is like "pip install -e <project_dir>[<extras>]" | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 421 | function setup_develop { | 
| Ian Wienand | 58243f6 | 2018-12-13 14:05:53 +1100 | [diff] [blame] | 422 | local bindep | 
|  | 423 | if [[ $1 == -bindep* ]]; then | 
|  | 424 | bindep="${1}" | 
|  | 425 | shift | 
|  | 426 | fi | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 427 | local project_dir=$1 | 
| Brant Knudson | 0842b81 | 2015-08-03 13:31:25 -0500 | [diff] [blame] | 428 | local extras=$2 | 
| Ian Wienand | 58243f6 | 2018-12-13 14:05:53 +1100 | [diff] [blame] | 429 | _setup_package_with_constraints_edit $bindep $project_dir -e $extras | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 430 | } | 
|  | 431 |  | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 432 | # ``pip install -e`` the package, which processes the dependencies | 
|  | 433 | # using pip before running `setup.py develop` | 
|  | 434 | # | 
| Clark Boylan | 05aa384 | 2015-08-03 11:14:13 -0700 | [diff] [blame] | 435 | # Updates the constraints from REQUIREMENTS_DIR to reflect the | 
|  | 436 | # future installed state of this package. This ensures when we | 
|  | 437 | # install this package we get the from source version. | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 438 | # | 
| Clark Boylan | 05aa384 | 2015-08-03 11:14:13 -0700 | [diff] [blame] | 439 | # Uses globals ``REQUIREMENTS_DIR`` | 
| Brant Knudson | 0842b81 | 2015-08-03 13:31:25 -0500 | [diff] [blame] | 440 | # _setup_package_with_constraints_edit project_dir flags [extras] | 
|  | 441 | # project_dir: directory of project repo (e.g., /opt/stack/keystone) | 
|  | 442 | # flags: pip CLI options/flags | 
|  | 443 | # extras: comma-separated list of optional dependencies to install | 
|  | 444 | #         (e.g., ldap,memcache). | 
| Takashi NATSUME | fa00777 | 2017-07-22 08:59:43 +0900 | [diff] [blame] | 445 | #         See https://docs.openstack.org/pbr/latest/user/using.html#extra-requirements | 
| Brant Knudson | 0842b81 | 2015-08-03 13:31:25 -0500 | [diff] [blame] | 446 | # The command is like "pip install <flags> <project_dir>[<extras>]" | 
|  | 447 | function _setup_package_with_constraints_edit { | 
| Ian Wienand | 58243f6 | 2018-12-13 14:05:53 +1100 | [diff] [blame] | 448 | local bindep | 
|  | 449 | if [[ $1 == -bindep* ]]; then | 
|  | 450 | bindep="${1}" | 
|  | 451 | shift | 
|  | 452 | fi | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 453 | local project_dir=$1 | 
|  | 454 | local flags=$2 | 
| Brant Knudson | 0842b81 | 2015-08-03 13:31:25 -0500 | [diff] [blame] | 455 | local extras=$3 | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 456 |  | 
| YAMAMOTO Takashi | c8c1c61 | 2016-03-22 14:29:47 +0900 | [diff] [blame] | 457 | # Normalize the directory name to avoid | 
|  | 458 | # "installation from path or url cannot be constrained to a version" | 
|  | 459 | # error. | 
|  | 460 | # REVISIT(yamamoto): Remove this when fixed in pip. | 
|  | 461 | # https://github.com/pypa/pip/pull/3582 | 
|  | 462 | project_dir=$(cd $project_dir && pwd) | 
|  | 463 |  | 
| Robert Collins | 635a5ba | 2015-06-10 08:48:06 +1200 | [diff] [blame] | 464 | if [ -n "$REQUIREMENTS_DIR" ]; then | 
|  | 465 | # Constrain this package to this project directory from here on out. | 
| Ian Wienand | ada886d | 2015-10-07 14:06:26 +1100 | [diff] [blame] | 466 | local name | 
|  | 467 | name=$(awk '/^name.*=/ {print $3}' $project_dir/setup.cfg) | 
| Robert Collins | 7c83861 | 2015-07-03 13:28:09 +1200 | [diff] [blame] | 468 | $REQUIREMENTS_DIR/.venv/bin/edit-constraints \ | 
|  | 469 | $REQUIREMENTS_DIR/upper-constraints.txt -- $name \ | 
|  | 470 | "$flags file://$project_dir#egg=$name" | 
| Robert Collins | 635a5ba | 2015-06-10 08:48:06 +1200 | [diff] [blame] | 471 | fi | 
|  | 472 |  | 
| Ian Wienand | 58243f6 | 2018-12-13 14:05:53 +1100 | [diff] [blame] | 473 | setup_package $bindep $project_dir "$flags" $extras | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 474 |  | 
| James E. Blair | e1edde3 | 2018-03-02 15:05:14 +0000 | [diff] [blame] | 475 | # If this project is in LIBS_FROM_GIT, verify it was actually installed | 
|  | 476 | # correctly.  This helps catch errors caused by constraints mismatches. | 
|  | 477 | if use_library_from_git "$project_dir"; then | 
|  | 478 | if ! lib_installed_from_git "$project_dir"; then | 
|  | 479 | die $LINENO "The following LIBS_FROM_GIT was not installed correctly: $project_dir" | 
|  | 480 | fi | 
|  | 481 | fi | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 482 | } | 
|  | 483 |  | 
|  | 484 | # ``pip install -e`` the package, which processes the dependencies | 
| Ian Wienand | 58243f6 | 2018-12-13 14:05:53 +1100 | [diff] [blame] | 485 | # using pip before running `setup.py develop`.  The command is like | 
|  | 486 | # "pip install <flags> <project_dir>[<extras>]" | 
| Brant Knudson | 0842b81 | 2015-08-03 13:31:25 -0500 | [diff] [blame] | 487 | # | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 488 | # Uses globals ``STACK_USER`` | 
| Ian Wienand | 58243f6 | 2018-12-13 14:05:53 +1100 | [diff] [blame] | 489 | # | 
|  | 490 | # Usage: | 
|  | 491 | #  setup_package [-bindep[=profile,profile]] <project_dir> <flags> [extras] | 
|  | 492 | # | 
|  | 493 | # -bindep     : Use bindep to install dependencies; select extra profiles | 
|  | 494 | #               as comma separated arguments after "=" | 
|  | 495 | # project_dir : directory of project repo (e.g., /opt/stack/keystone) | 
|  | 496 | # flags       : pip CLI options/flags | 
|  | 497 | # extras      : comma-separated list of optional dependencies to install | 
|  | 498 | #               (e.g., ldap,memcache). | 
|  | 499 | #               See https://docs.openstack.org/pbr/latest/user/using.html#extra-requirements | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 500 | function setup_package { | 
| Ian Wienand | 58243f6 | 2018-12-13 14:05:53 +1100 | [diff] [blame] | 501 | local bindep=0 | 
|  | 502 | local bindep_flag="" | 
|  | 503 | local bindep_profiles="" | 
|  | 504 | if [[ $1 == -bindep* ]]; then | 
|  | 505 | bindep=1 | 
|  | 506 | IFS="=" read bindep_flag bindep_profiles <<< ${1} | 
|  | 507 | shift | 
|  | 508 | fi | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 509 | local project_dir=$1 | 
|  | 510 | local flags=$2 | 
| Brant Knudson | 0842b81 | 2015-08-03 13:31:25 -0500 | [diff] [blame] | 511 | local extras=$3 | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 512 |  | 
| Brant Knudson | 0842b81 | 2015-08-03 13:31:25 -0500 | [diff] [blame] | 513 | # if the flags variable exists, and it doesn't look like a flag, | 
|  | 514 | # assume it's actually the extras list. | 
|  | 515 | if [[ -n "$flags" && -z "$extras" && ! "$flags" =~ ^-.* ]]; then | 
|  | 516 | extras=$flags | 
|  | 517 | flags="" | 
|  | 518 | fi | 
|  | 519 |  | 
|  | 520 | if [[ ! -z "$extras" ]]; then | 
|  | 521 | extras="[$extras]" | 
|  | 522 | fi | 
|  | 523 |  | 
| Ian Wienand | 58243f6 | 2018-12-13 14:05:53 +1100 | [diff] [blame] | 524 | # install any bindep packages | 
|  | 525 | if [[ $bindep == 1 ]]; then | 
|  | 526 | install_bindep $project_dir/bindep.txt $bindep_profiles | 
|  | 527 | fi | 
|  | 528 |  | 
| Brant Knudson | 0842b81 | 2015-08-03 13:31:25 -0500 | [diff] [blame] | 529 | pip_install $flags "$project_dir$extras" | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 530 | # ensure that further actions can do things like setup.py sdist | 
|  | 531 | if [[ "$flags" == "-e" ]]; then | 
|  | 532 | safe_chown -R $STACK_USER $1/*.egg-info | 
|  | 533 | fi | 
|  | 534 | } | 
|  | 535 |  | 
| Doug Hellmann | ddc3839 | 2015-05-07 21:06:24 +0000 | [diff] [blame] | 536 | # Report whether python 3 should be used | 
|  | 537 | function python3_enabled { | 
|  | 538 | if [[ $USE_PYTHON3 == "True" ]]; then | 
|  | 539 | return 0 | 
|  | 540 | else | 
|  | 541 | return 1 | 
|  | 542 | fi | 
|  | 543 | } | 
|  | 544 |  | 
|  | 545 | # Install python3 packages | 
|  | 546 | function install_python3 { | 
|  | 547 | if is_ubuntu; then | 
| Lubosz "diltram" Kosnik | 0a09976 | 2016-08-03 10:21:41 -0500 | [diff] [blame] | 548 | apt_get install python${PYTHON3_VERSION} python${PYTHON3_VERSION}-dev | 
| Armando Migliaccio | bacfb94 | 2017-03-20 22:27:20 -0700 | [diff] [blame] | 549 | elif is_suse; then | 
|  | 550 | install_package python3-devel python3-dbm | 
| Doug Hellmann | ddc3839 | 2015-05-07 21:06:24 +0000 | [diff] [blame] | 551 | fi | 
|  | 552 | } | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 553 |  | 
| Sean Dague | f80e2cf | 2017-01-18 15:42:32 -0500 | [diff] [blame] | 554 | function install_devstack_tools { | 
|  | 555 | # intentionally old to ensure devstack-gate has control | 
|  | 556 | local dstools_version=${DSTOOLS_VERSION:-0.1.2} | 
|  | 557 | install_python3 | 
|  | 558 | sudo pip3 install -U devstack-tools==${dstools_version} | 
|  | 559 | } | 
|  | 560 |  | 
| Dean Troyer | 490430d | 2015-01-30 14:38:35 -0600 | [diff] [blame] | 561 | # Restore xtrace | 
|  | 562 | $INC_PY_TRACE | 
|  | 563 |  | 
|  | 564 | # Local variables: | 
|  | 565 | # mode: shell-script | 
|  | 566 | # End: |