Browse code

Add cursive to LIBS_FROM_GIT

Allow cursive to be installed from git instead of pip.

The barbican-tempest-plugin, which uses cursive indirectly
through nova and glance, would benefit from the ability to
use cursive from git instead of pip.

Change-Id: Icae7d310f1ee392d080e7c8e421a26d7c0ef4727

Brianna Poulos authored on 2017/04/15 02:00:19
Showing 3 changed files
... ...
@@ -24,6 +24,7 @@ set +o xtrace
24 24
 # --------
25 25
 GITDIR["automaton"]=$DEST/automaton
26 26
 GITDIR["cliff"]=$DEST/cliff
27
+GITDIR["cursive"]=$DEST/cursive
27 28
 GITDIR["debtcollector"]=$DEST/debtcollector
28 29
 GITDIR["futurist"]=$DEST/futurist
29 30
 GITDIR["os-client-config"]=$DEST/os-client-config
... ...
@@ -72,6 +73,7 @@ function _do_install_oslo_lib {
72 72
 function install_oslo {
73 73
     _do_install_oslo_lib "automaton"
74 74
     _do_install_oslo_lib "cliff"
75
+    _do_install_oslo_lib "cursive"
75 76
     _do_install_oslo_lib "debtcollector"
76 77
     _do_install_oslo_lib "futurist"
77 78
     _do_install_oslo_lib "osc-lib"
... ...
@@ -483,6 +483,10 @@ GITBRANCH["pbr"]=${PBR_BRANCH:-master}
483 483
 #
484 484
 ##################
485 485
 
486
+# cursive library
487
+GITREPO["cursive"]=${CURSIVE_REPO:-${GIT_BASE}/openstack/cursive.git}
488
+GITBRANCH["cursive"]=${CURSIVE_BRANCH:-master}
489
+
486 490
 # glance store library
487 491
 GITREPO["glance_store"]=${GLANCE_STORE_REPO:-${GIT_BASE}/openstack/glance_store.git}
488 492
 GITBRANCH["glance_store"]=${GLANCE_STORE_BRANCH:-master}
... ...
@@ -40,7 +40,7 @@ ALL_LIBS+=" python-openstackclient osc-lib os-client-config oslo.rootwrap"
40 40
 ALL_LIBS+=" oslo.i18n oslo.utils python-openstacksdk python-swiftclient"
41 41
 ALL_LIBS+=" python-neutronclient tooz ceilometermiddleware oslo.policy"
42 42
 ALL_LIBS+=" debtcollector os-brick automaton futurist oslo.service"
43
-ALL_LIBS+=" oslo.cache oslo.reports osprofiler"
43
+ALL_LIBS+=" oslo.cache oslo.reports osprofiler cursive"
44 44
 ALL_LIBS+=" keystoneauth ironic-lib neutron-lib oslo.privsep"
45 45
 ALL_LIBS+=" diskimage-builder os-vif python-brick-cinderclient-ext"
46 46