blob: 1b47e66edf46827fc1e062d6bd01f1ef2904fc13 [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
Elena Ezhova2d451962014-06-19 12:49:32 +040033# Support entry points installation of console scripts
34OSLO_BIN_DIR=$(get_python_exec_prefix)
35
Sean Dague1b6b5312013-07-31 06:46:34 -040036# Entry Points
37# ------------
38
39# install_oslo() - Collect source and prepare
Ian Wienandaee18c72014-02-21 15:35:08 +110040function install_oslo {
Sean Dague59d9cec2014-04-02 18:43:42 -040041 # TODO(sdague): remove this once we get to Icehouse, this just makes
42 # for a smoother transition of existing users.
43 cleanup_oslo
44
Doug Hellmann6b1cb102014-02-10 09:59:43 -080045 git_clone $CLIFF_REPO $CLIFF_DIR $CLIFF_BRANCH
Sean Dague099e5e32014-03-31 10:35:43 -040046 setup_install $CLIFF_DIR
Doug Hellmann6b1cb102014-02-10 09:59:43 -080047
Sean Dague1b6b5312013-07-31 06:46:34 -040048 git_clone $OSLOCFG_REPO $OSLOCFG_DIR $OSLOCFG_BRANCH
Sean Dague099e5e32014-03-31 10:35:43 -040049 setup_install $OSLOCFG_DIR
Sean Dague1b6b5312013-07-31 06:46:34 -040050
51 git_clone $OSLOMSG_REPO $OSLOMSG_DIR $OSLOMSG_BRANCH
Sean Dague099e5e32014-03-31 10:35:43 -040052 setup_install $OSLOMSG_DIR
Thierry Carrez0915e0c2014-01-02 15:05:41 +010053
54 git_clone $OSLORWRAP_REPO $OSLORWRAP_DIR $OSLORWRAP_BRANCH
Sean Dague099e5e32014-03-31 10:35:43 -040055 setup_install $OSLORWRAP_DIR
Doug Hellmann6b1cb102014-02-10 09:59:43 -080056
Davanum Srinivasf5aa05c2014-02-21 22:03:59 -050057 git_clone $OSLOVMWARE_REPO $OSLOVMWARE_DIR $OSLOVMWARE_BRANCH
Sean Dague099e5e32014-03-31 10:35:43 -040058 setup_install $OSLOVMWARE_DIR
Davanum Srinivasf5aa05c2014-02-21 22:03:59 -050059
Doug Hellmann6b1cb102014-02-10 09:59:43 -080060 git_clone $PYCADF_REPO $PYCADF_DIR $PYCADF_BRANCH
Sean Dague099e5e32014-03-31 10:35:43 -040061 setup_install $PYCADF_DIR
Doug Hellmann6b1cb102014-02-10 09:59:43 -080062
63 git_clone $STEVEDORE_REPO $STEVEDORE_DIR $STEVEDORE_BRANCH
Sean Dague099e5e32014-03-31 10:35:43 -040064 setup_install $STEVEDORE_DIR
Doug Hellmann6b1cb102014-02-10 09:59:43 -080065
66 git_clone $TASKFLOW_REPO $TASKFLOW_DIR $TASKFLOW_BRANCH
Sean Dague099e5e32014-03-31 10:35:43 -040067 setup_install $TASKFLOW_DIR
Sean Daguedb5fadb2013-08-09 13:41:33 -040068}
69
Sean Dague59d9cec2014-04-02 18:43:42 -040070# cleanup_oslo() - purge possibly old versions of oslo
71function cleanup_oslo {
72 # this means we've got an old oslo installed, lets get rid of it
73 if ! python -c 'import oslo.config' 2>/dev/null; then
74 echo "Found old oslo.config... removing to ensure consistency"
75 local PIP_CMD=$(get_pip_command)
76 pip_install oslo.config
77 sudo $PIP_CMD uninstall -y oslo.config
78 fi
79}
80
Sean Dague1b6b5312013-07-31 06:46:34 -040081# Restore xtrace
82$XTRACE
83
Adam Spiers6a5aa7c2013-10-24 11:27:02 +010084# Tell emacs to use shell-script-mode
85## Local variables:
86## mode: shell-script
87## End: