blob: 8d9feb9777bc7869761eae0eda17da7de601641e [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 {
Doug Hellmann6b1cb102014-02-10 09:59:43 -080041 git_clone $CLIFF_REPO $CLIFF_DIR $CLIFF_BRANCH
Sean Dague099e5e32014-03-31 10:35:43 -040042 setup_install $CLIFF_DIR
Doug Hellmann6b1cb102014-02-10 09:59:43 -080043
Sean Dague1b6b5312013-07-31 06:46:34 -040044 git_clone $OSLOCFG_REPO $OSLOCFG_DIR $OSLOCFG_BRANCH
Sean Dague099e5e32014-03-31 10:35:43 -040045 setup_install $OSLOCFG_DIR
Sean Dague1b6b5312013-07-31 06:46:34 -040046
47 git_clone $OSLOMSG_REPO $OSLOMSG_DIR $OSLOMSG_BRANCH
Sean Dague099e5e32014-03-31 10:35:43 -040048 setup_install $OSLOMSG_DIR
Thierry Carrez0915e0c2014-01-02 15:05:41 +010049
50 git_clone $OSLORWRAP_REPO $OSLORWRAP_DIR $OSLORWRAP_BRANCH
Sean Dague099e5e32014-03-31 10:35:43 -040051 setup_install $OSLORWRAP_DIR
Doug Hellmann6b1cb102014-02-10 09:59:43 -080052
Doug Hellmannc7297942014-06-18 11:39:52 -070053 git_clone $OSLODB_REPO $OSLODB_DIR $OSLODB_BRANCH
54 setup_install $OSLODB_DIR
55
Davanum Srinivasf5aa05c2014-02-21 22:03:59 -050056 git_clone $OSLOVMWARE_REPO $OSLOVMWARE_DIR $OSLOVMWARE_BRANCH
Sean Dague099e5e32014-03-31 10:35:43 -040057 setup_install $OSLOVMWARE_DIR
Davanum Srinivasf5aa05c2014-02-21 22:03:59 -050058
Doug Hellmann6b1cb102014-02-10 09:59:43 -080059 git_clone $PYCADF_REPO $PYCADF_DIR $PYCADF_BRANCH
Sean Dague099e5e32014-03-31 10:35:43 -040060 setup_install $PYCADF_DIR
Doug Hellmann6b1cb102014-02-10 09:59:43 -080061
62 git_clone $STEVEDORE_REPO $STEVEDORE_DIR $STEVEDORE_BRANCH
Sean Dague099e5e32014-03-31 10:35:43 -040063 setup_install $STEVEDORE_DIR
Doug Hellmann6b1cb102014-02-10 09:59:43 -080064
65 git_clone $TASKFLOW_REPO $TASKFLOW_DIR $TASKFLOW_BRANCH
Sean Dague099e5e32014-03-31 10:35:43 -040066 setup_install $TASKFLOW_DIR
Sean Daguedb5fadb2013-08-09 13:41:33 -040067}
68
Sean Dague1b6b5312013-07-31 06:46:34 -040069# Restore xtrace
70$XTRACE
71
Adam Spiers6a5aa7c2013-10-24 11:27:02 +010072# Tell emacs to use shell-script-mode
73## Local variables:
74## mode: shell-script
75## End: