Part of blueprint adopt-futurist
Change-Id: I17e27a085c7c509bad6018016e90d0114543b073
| ... | ... |
@@ -25,6 +25,7 @@ set +o xtrace |
| 25 | 25 |
GITDIR["automaton"]=$DEST/automaton |
| 26 | 26 |
GITDIR["cliff"]=$DEST/cliff |
| 27 | 27 |
GITDIR["debtcollector"]=$DEST/debtcollector |
| 28 |
+GITDIR["futurist"]=$DEST/futurist |
|
| 28 | 29 |
GITDIR["oslo.concurrency"]=$DEST/oslo.concurrency |
| 29 | 30 |
GITDIR["oslo.config"]=$DEST/oslo.config |
| 30 | 31 |
GITDIR["oslo.context"]=$DEST/oslo.context |
| ... | ... |
@@ -63,6 +64,7 @@ function _do_install_oslo_lib {
|
| 63 | 63 |
function install_oslo {
|
| 64 | 64 |
_do_install_oslo_lib "cliff" |
| 65 | 65 |
_do_install_oslo_lib "debtcollector" |
| 66 |
+ _do_install_oslo_lib "futurist" |
|
| 66 | 67 |
_do_install_oslo_lib "oslo.concurrency" |
| 67 | 68 |
_do_install_oslo_lib "oslo.config" |
| 68 | 69 |
_do_install_oslo_lib "oslo.context" |
| ... | ... |
@@ -326,6 +326,10 @@ GITDIR["python-openstackclient"]=$DEST/python-openstackclient |
| 326 | 326 |
GITREPO["cliff"]=${CLIFF_REPO:-${GIT_BASE}/openstack/cliff.git}
|
| 327 | 327 |
GITBRANCH["cliff"]=${CLIFF_BRANCH:-master}
|
| 328 | 328 |
|
| 329 |
+# async framework/helpers |
|
| 330 |
+GITREPO["futurist"]=${FUTURIST_REPO:-${GIT_BASE}/openstack/futurist.git}
|
|
| 331 |
+GITBRANCH["futurist"]=${FUTURIST_BRANCH:-master}
|
|
| 332 |
+ |
|
| 329 | 333 |
# debtcollector deprecation framework/helpers |
| 330 | 334 |
GITREPO["debtcollector"]=${DEBTCOLLECTOR_REPO:-${GIT_BASE}/openstack/debtcollector.git}
|
| 331 | 335 |
GITBRANCH["debtcollector"]=${DEBTCOLLECTOR_BRANCH:-master}
|
| ... | ... |
@@ -39,7 +39,7 @@ ALL_LIBS+=" oslo.serialization python-saharaclient django_openstack_auth" |
| 39 | 39 |
ALL_LIBS+=" python-openstackclient oslo.rootwrap oslo.i18n" |
| 40 | 40 |
ALL_LIBS+=" python-ceilometerclient oslo.utils python-swiftclient" |
| 41 | 41 |
ALL_LIBS+=" python-neutronclient tooz ceilometermiddleware oslo.policy" |
| 42 |
-ALL_LIBS+=" debtcollector os-brick automaton" |
|
| 42 |
+ALL_LIBS+=" debtcollector os-brick automaton futurist" |
|
| 43 | 43 |
|
| 44 | 44 |
# Generate the above list with |
| 45 | 45 |
# echo ${!GITREPO[@]}
|