Sean Dague | 1b6b531 | 2013-07-31 06:46:34 -0400 | [diff] [blame] | 1 | # lib/oslo |
| 2 | # |
| 3 | # Functions to install oslo libraries from git |
| 4 | # |
| 5 | # We need this to handle the fact that projects would like to use |
| 6 | # pre-released versions of oslo libraries. |
| 7 | |
| 8 | # Dependencies: |
Adam Spiers | 6a5aa7c | 2013-10-24 11:27:02 +0100 | [diff] [blame] | 9 | # |
| 10 | # - ``functions`` file |
Sean Dague | 1b6b531 | 2013-07-31 06:46:34 -0400 | [diff] [blame] | 11 | |
| 12 | # ``stack.sh`` calls the entry points in this order: |
| 13 | # |
Adam Spiers | 6a5aa7c | 2013-10-24 11:27:02 +0100 | [diff] [blame] | 14 | # - install_oslo |
Sean Dague | 1b6b531 | 2013-07-31 06:46:34 -0400 | [diff] [blame] | 15 | |
| 16 | # Save trace setting |
| 17 | XTRACE=$(set +o | grep xtrace) |
| 18 | set +o xtrace |
| 19 | |
| 20 | |
| 21 | # Defaults |
| 22 | # -------- |
Doug Hellmann | 6b1cb10 | 2014-02-10 09:59:43 -0800 | [diff] [blame] | 23 | CLIFF_DIR=$DEST/cliff |
Sean Dague | 1b6b531 | 2013-07-31 06:46:34 -0400 | [diff] [blame] | 24 | OSLOCFG_DIR=$DEST/oslo.config |
| 25 | OSLOMSG_DIR=$DEST/oslo.messaging |
Thierry Carrez | 0915e0c | 2014-01-02 15:05:41 +0100 | [diff] [blame] | 26 | OSLORWRAP_DIR=$DEST/oslo.rootwrap |
Doug Hellmann | 6b1cb10 | 2014-02-10 09:59:43 -0800 | [diff] [blame] | 27 | PYCADF_DIR=$DEST/pycadf |
| 28 | STEVEDORE_DIR=$DEST/stevedore |
| 29 | TASKFLOW_DIR=$DEST/taskflow |
Sean Dague | 1b6b531 | 2013-07-31 06:46:34 -0400 | [diff] [blame] | 30 | |
| 31 | # Entry Points |
| 32 | # ------------ |
| 33 | |
| 34 | # install_oslo() - Collect source and prepare |
| 35 | function install_oslo() { |
Sean Dague | db5fadb | 2013-08-09 13:41:33 -0400 | [diff] [blame] | 36 | # TODO(sdague): remove this once we get to Icehouse, this just makes |
| 37 | # for a smoother transition of existing users. |
| 38 | cleanup_oslo |
| 39 | |
Doug Hellmann | 6b1cb10 | 2014-02-10 09:59:43 -0800 | [diff] [blame] | 40 | git_clone $CLIFF_REPO $CLIFF_DIR $CLIFF_BRANCH |
| 41 | setup_develop $CLIFF_DIR |
| 42 | |
Sean Dague | 1b6b531 | 2013-07-31 06:46:34 -0400 | [diff] [blame] | 43 | git_clone $OSLOCFG_REPO $OSLOCFG_DIR $OSLOCFG_BRANCH |
| 44 | setup_develop $OSLOCFG_DIR |
| 45 | |
| 46 | git_clone $OSLOMSG_REPO $OSLOMSG_DIR $OSLOMSG_BRANCH |
| 47 | setup_develop $OSLOMSG_DIR |
Thierry Carrez | 0915e0c | 2014-01-02 15:05:41 +0100 | [diff] [blame] | 48 | |
| 49 | git_clone $OSLORWRAP_REPO $OSLORWRAP_DIR $OSLORWRAP_BRANCH |
| 50 | setup_develop $OSLORWRAP_DIR |
Doug Hellmann | 6b1cb10 | 2014-02-10 09:59:43 -0800 | [diff] [blame] | 51 | |
| 52 | git_clone $PYCADF_REPO $PYCADF_DIR $PYCADF_BRANCH |
| 53 | setup_develop $PYCADF_DIR |
| 54 | |
| 55 | git_clone $STEVEDORE_REPO $STEVEDORE_DIR $STEVEDORE_BRANCH |
| 56 | setup_develop $STEVEDORE_DIR |
| 57 | |
| 58 | git_clone $TASKFLOW_REPO $TASKFLOW_DIR $TASKFLOW_BRANCH |
| 59 | setup_develop $TASKFLOW_DIR |
Sean Dague | 1b6b531 | 2013-07-31 06:46:34 -0400 | [diff] [blame] | 60 | } |
| 61 | |
Sean Dague | db5fadb | 2013-08-09 13:41:33 -0400 | [diff] [blame] | 62 | # cleanup_oslo() - purge possibly old versions of oslo |
| 63 | function cleanup_oslo() { |
Alessio Ababilov | c2a4c92 | 2013-08-16 21:53:22 +0300 | [diff] [blame] | 64 | # this means we've got an old oslo installed, lets get rid of it |
Attila Fazekas | 025fc5e | 2013-08-13 18:55:33 +0200 | [diff] [blame] | 65 | if ! python -c 'import oslo.config' 2>/dev/null; then |
Sean Dague | db5fadb | 2013-08-09 13:41:33 -0400 | [diff] [blame] | 66 | echo "Found old oslo.config... removing to ensure consistency" |
| 67 | local PIP_CMD=$(get_pip_command) |
Alessio Ababilov | c2a4c92 | 2013-08-16 21:53:22 +0300 | [diff] [blame] | 68 | pip_install oslo.config |
| 69 | sudo $PIP_CMD uninstall -y oslo.config |
Sean Dague | db5fadb | 2013-08-09 13:41:33 -0400 | [diff] [blame] | 70 | fi |
| 71 | } |
| 72 | |
Sean Dague | 1b6b531 | 2013-07-31 06:46:34 -0400 | [diff] [blame] | 73 | # Restore xtrace |
| 74 | $XTRACE |
| 75 | |
Adam Spiers | 6a5aa7c | 2013-10-24 11:27:02 +0100 | [diff] [blame] | 76 | # Tell emacs to use shell-script-mode |
| 77 | ## Local variables: |
| 78 | ## mode: shell-script |
| 79 | ## End: |