Add new oslo libraries

Full list for liberty is as follows:
* oslo.service
* oslo.reports
* automaton
* futurist

oslo.cache was already added in the earlier review

Some of the entries are already there, though automaton was
missing in one spot. Made sure all references have all five
libraries.

Change-Id: Iffb720d46058424924469695a3ae1e4f20655f99
This commit is contained in:
Davanum Srinivas 2015-06-22 16:44:13 -04:00 committed by Davanum Srinivas (dims)
parent 7bc1f3c15f
commit 77a7d11dfa
3 changed files with 8 additions and 1 deletions

View File

@ -36,6 +36,7 @@ GITDIR["oslo.log"]=$DEST/oslo.log
GITDIR["oslo.messaging"]=$DEST/oslo.messaging GITDIR["oslo.messaging"]=$DEST/oslo.messaging
GITDIR["oslo.middleware"]=$DEST/oslo.middleware GITDIR["oslo.middleware"]=$DEST/oslo.middleware
GITDIR["oslo.policy"]=$DEST/oslo.policy GITDIR["oslo.policy"]=$DEST/oslo.policy
GITDIR["oslo.reports"]=$DEST/oslo.reports
GITDIR["oslo.rootwrap"]=$DEST/oslo.rootwrap GITDIR["oslo.rootwrap"]=$DEST/oslo.rootwrap
GITDIR["oslo.serialization"]=$DEST/oslo.serialization GITDIR["oslo.serialization"]=$DEST/oslo.serialization
GITDIR["oslo.service"]=$DEST/oslo.service GITDIR["oslo.service"]=$DEST/oslo.service
@ -64,6 +65,7 @@ function _do_install_oslo_lib {
# install_oslo() - Collect source and prepare # install_oslo() - Collect source and prepare
function install_oslo { function install_oslo {
_do_install_oslo_lib "automaton"
_do_install_oslo_lib "cliff" _do_install_oslo_lib "cliff"
_do_install_oslo_lib "debtcollector" _do_install_oslo_lib "debtcollector"
_do_install_oslo_lib "futurist" _do_install_oslo_lib "futurist"
@ -77,6 +79,7 @@ function install_oslo {
_do_install_oslo_lib "oslo.messaging" _do_install_oslo_lib "oslo.messaging"
_do_install_oslo_lib "oslo.middleware" _do_install_oslo_lib "oslo.middleware"
_do_install_oslo_lib "oslo.policy" _do_install_oslo_lib "oslo.policy"
_do_install_oslo_lib "oslo.reports"
_do_install_oslo_lib "oslo.rootwrap" _do_install_oslo_lib "oslo.rootwrap"
_do_install_oslo_lib "oslo.serialization" _do_install_oslo_lib "oslo.serialization"
_do_install_oslo_lib "oslo.service" _do_install_oslo_lib "oslo.service"

View File

@ -367,6 +367,10 @@ GITBRANCH["oslo.middleware"]=${OSLOMID_BRANCH:-master}
GITREPO["oslo.policy"]=${OSLOPOLICY_REPO:-${GIT_BASE}/openstack/oslo.policy.git} GITREPO["oslo.policy"]=${OSLOPOLICY_REPO:-${GIT_BASE}/openstack/oslo.policy.git}
GITBRANCH["oslo.policy"]=${OSLOPOLICY_BRANCH:-master} GITBRANCH["oslo.policy"]=${OSLOPOLICY_BRANCH:-master}
# oslo.reports
GITREPO["oslo.reports"]=${OSLOREPORTS_REPO:-${GIT_BASE}/openstack/oslo.reports.git}
GITBRANCH["oslo.reports"]=${OSLOREPORTS_BRANCH:-master}
# oslo.rootwrap # oslo.rootwrap
GITREPO["oslo.rootwrap"]=${OSLORWRAP_REPO:-${GIT_BASE}/openstack/oslo.rootwrap.git} GITREPO["oslo.rootwrap"]=${OSLORWRAP_REPO:-${GIT_BASE}/openstack/oslo.rootwrap.git}
GITBRANCH["oslo.rootwrap"]=${OSLORWRAP_BRANCH:-master} GITBRANCH["oslo.rootwrap"]=${OSLORWRAP_BRANCH:-master}

View File

@ -40,7 +40,7 @@ ALL_LIBS+=" python-openstackclient oslo.rootwrap oslo.i18n"
ALL_LIBS+=" python-ceilometerclient oslo.utils python-swiftclient" ALL_LIBS+=" python-ceilometerclient oslo.utils python-swiftclient"
ALL_LIBS+=" python-neutronclient tooz ceilometermiddleware oslo.policy" ALL_LIBS+=" python-neutronclient tooz ceilometermiddleware oslo.policy"
ALL_LIBS+=" debtcollector os-brick automaton futurist oslo.service" ALL_LIBS+=" debtcollector os-brick automaton futurist oslo.service"
ALL_LIBS+=" oslo.cache" ALL_LIBS+=" oslo.cache oslo.reports"
# Generate the above list with # Generate the above list with
# echo ${!GITREPO[@]} # echo ${!GITREPO[@]}