Jordan Pittier | ec2eefe | 2017-01-09 12:57:37 +0100 | [diff] [blame^] | 1 | #!/usr/bin/env bash |
| 2 | |
| 3 | # Client constraint file contains this client version pin that is in conflict |
| 4 | # with installing the client from source. We should remove the version pin in |
| 5 | # the constraints file before applying it for from-source installation. |
| 6 | |
| 7 | CONSTRAINTS_FILE=$1 |
| 8 | shift 1 |
| 9 | |
| 10 | set -e |
| 11 | |
| 12 | # NOTE(tonyb): Place this in the tox enviroment's log dir so it will get |
| 13 | # published to logs.openstack.org for easy debugging. |
| 14 | localfile="$VIRTUAL_ENV/log/upper-constraints.txt" |
| 15 | |
| 16 | if [[ $CONSTRAINTS_FILE != http* ]]; then |
| 17 | CONSTRAINTS_FILE=file://$CONSTRAINTS_FILE |
| 18 | fi |
| 19 | # NOTE(tonyb): need to add curl to bindep.txt if the project supports bindep |
| 20 | curl $CONSTRAINTS_FILE --insecure --progress-bar --output $localfile |
| 21 | |
| 22 | pip install -c$localfile openstack-requirements |
| 23 | |
| 24 | # This is the main purpose of the script: Allow local installation of |
| 25 | # the current repo. It is listed in constraints file and thus any |
| 26 | # install will be constrained and we need to unconstrain it. |
| 27 | edit-constraints $localfile -- $CLIENT_NAME |
| 28 | |
| 29 | pip install -c$localfile -U $* |
| 30 | exit $? |