blob: dc6b550b6c48ecf6b7f3e53836102ed641eccb87 [file] [log] [blame]
Sean Dague1b6b5312013-07-31 06:46:34 -04001# 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 Spiers6a5aa7c2013-10-24 11:27:02 +01009#
10# - ``functions`` file
Sean Dague1b6b5312013-07-31 06:46:34 -040011
12# ``stack.sh`` calls the entry points in this order:
13#
Adam Spiers6a5aa7c2013-10-24 11:27:02 +010014# - install_oslo
Sean Dague1b6b5312013-07-31 06:46:34 -040015
16# Save trace setting
17XTRACE=$(set +o | grep xtrace)
18set +o xtrace
19
20
21# Defaults
22# --------
Doug Hellmann6b1cb102014-02-10 09:59:43 -080023CLIFF_DIR=$DEST/cliff
Sean Dague1b6b5312013-07-31 06:46:34 -040024OSLOCFG_DIR=$DEST/oslo.config
Victor Sergeyevda945f32014-04-28 15:44:29 +030025OSLODB_DIR=$DEST/oslo.db
Sean Dague1b6b5312013-07-31 06:46:34 -040026OSLOMSG_DIR=$DEST/oslo.messaging
Thierry Carrez0915e0c2014-01-02 15:05:41 +010027OSLORWRAP_DIR=$DEST/oslo.rootwrap
Davanum Srinivasf5aa05c2014-02-21 22:03:59 -050028OSLOVMWARE_DIR=$DEST/oslo.vmware
Doug Hellmann6b1cb102014-02-10 09:59:43 -080029PYCADF_DIR=$DEST/pycadf
30STEVEDORE_DIR=$DEST/stevedore
31TASKFLOW_DIR=$DEST/taskflow
Sean Dague1b6b5312013-07-31 06:46:34 -040032
33# Entry Points
34# ------------
35
36# install_oslo() - Collect source and prepare
Ian Wienandaee18c72014-02-21 15:35:08 +110037function install_oslo {
Sean Dague59d9cec2014-04-02 18:43:42 -040038 # TODO(sdague): remove this once we get to Icehouse, this just makes
39 # for a smoother transition of existing users.
40 cleanup_oslo
41
Doug Hellmann6b1cb102014-02-10 09:59:43 -080042 git_clone $CLIFF_REPO $CLIFF_DIR $CLIFF_BRANCH
Sean Dague099e5e32014-03-31 10:35:43 -040043 setup_install $CLIFF_DIR
Doug Hellmann6b1cb102014-02-10 09:59:43 -080044
Sean Dague1b6b5312013-07-31 06:46:34 -040045 git_clone $OSLOCFG_REPO $OSLOCFG_DIR $OSLOCFG_BRANCH
Sean Dague099e5e32014-03-31 10:35:43 -040046 setup_install $OSLOCFG_DIR
Sean Dague1b6b5312013-07-31 06:46:34 -040047
48 git_clone $OSLOMSG_REPO $OSLOMSG_DIR $OSLOMSG_BRANCH
Sean Dague099e5e32014-03-31 10:35:43 -040049 setup_install $OSLOMSG_DIR
Thierry Carrez0915e0c2014-01-02 15:05:41 +010050
51 git_clone $OSLORWRAP_REPO $OSLORWRAP_DIR $OSLORWRAP_BRANCH
Sean Dague099e5e32014-03-31 10:35:43 -040052 setup_install $OSLORWRAP_DIR
Doug Hellmann6b1cb102014-02-10 09:59:43 -080053
Davanum Srinivasf5aa05c2014-02-21 22:03:59 -050054 git_clone $OSLOVMWARE_REPO $OSLOVMWARE_DIR $OSLOVMWARE_BRANCH
Sean Dague099e5e32014-03-31 10:35:43 -040055 setup_install $OSLOVMWARE_DIR
Davanum Srinivasf5aa05c2014-02-21 22:03:59 -050056
Doug Hellmann6b1cb102014-02-10 09:59:43 -080057 git_clone $PYCADF_REPO $PYCADF_DIR $PYCADF_BRANCH
Sean Dague099e5e32014-03-31 10:35:43 -040058 setup_install $PYCADF_DIR
Doug Hellmann6b1cb102014-02-10 09:59:43 -080059
60 git_clone $STEVEDORE_REPO $STEVEDORE_DIR $STEVEDORE_BRANCH
Sean Dague099e5e32014-03-31 10:35:43 -040061 setup_install $STEVEDORE_DIR
Doug Hellmann6b1cb102014-02-10 09:59:43 -080062
63 git_clone $TASKFLOW_REPO $TASKFLOW_DIR $TASKFLOW_BRANCH
Sean Dague099e5e32014-03-31 10:35:43 -040064 setup_install $TASKFLOW_DIR
Sean Daguedb5fadb2013-08-09 13:41:33 -040065}
66
Sean Dague59d9cec2014-04-02 18:43:42 -040067# cleanup_oslo() - purge possibly old versions of oslo
68function cleanup_oslo {
69 # this means we've got an old oslo installed, lets get rid of it
70 if ! python -c 'import oslo.config' 2>/dev/null; then
71 echo "Found old oslo.config... removing to ensure consistency"
72 local PIP_CMD=$(get_pip_command)
73 pip_install oslo.config
74 sudo $PIP_CMD uninstall -y oslo.config
75 fi
76}
77
Sean Dague1b6b5312013-07-31 06:46:34 -040078# Restore xtrace
79$XTRACE
80
Adam Spiers6a5aa7c2013-10-24 11:27:02 +010081# Tell emacs to use shell-script-mode
82## Local variables:
83## mode: shell-script
84## End: