Allow python-barbicanclient to be installed from git instead of pip.
Change-Id: I99cd72724e11bab362bcaaeb773f33b2abfe815c
| ... | ... |
@@ -121,6 +121,9 @@ function install_libs {
|
| 121 | 121 |
# os-traits for nova |
| 122 | 122 |
_install_lib_from_source "os-brick" |
| 123 | 123 |
_install_lib_from_source "os-traits" |
| 124 |
+ # |
|
| 125 |
+ # python client libraries we might need from git can go here |
|
| 126 |
+ _install_lib_from_source "python-barbicanclient" |
|
| 124 | 127 |
|
| 125 | 128 |
|
| 126 | 129 |
# etcd (because tooz does not have a hard dependency on these) |
| ... | ... |
@@ -341,6 +341,11 @@ GITBRANCH["python-cinderclient"]=${CINDERCLIENT_BRANCH:-master}
|
| 341 | 341 |
GITREPO["python-brick-cinderclient-ext"]=${BRICK_CINDERCLIENT_REPO:-${GIT_BASE}/openstack/python-brick-cinderclient-ext.git}
|
| 342 | 342 |
GITBRANCH["python-brick-cinderclient-ext"]=${BRICK_CINDERCLIENT_BRANCH:-master}
|
| 343 | 343 |
|
| 344 |
+# python barbican client library |
|
| 345 |
+GITREPO["python-barbicanclient"]=${BARBICANCLIENT_REPO:-${GIT_BASE}/openstack/python-barbicanclient.git}
|
|
| 346 |
+GITBRANCH["python-barbicanclient"]=${BARBICANCLIENT_BRANCH:-master}
|
|
| 347 |
+GITDIR["python-barbicanclient"]=$DEST/python-barbicanclient |
|
| 348 |
+ |
|
| 344 | 349 |
# python glance client library |
| 345 | 350 |
GITREPO["python-glanceclient"]=${GLANCECLIENT_REPO:-${GIT_BASE}/openstack/python-glanceclient.git}
|
| 346 | 351 |
GITBRANCH["python-glanceclient"]=${GLANCECLIENT_BRANCH:-master}
|
| ... | ... |
@@ -43,7 +43,7 @@ ALL_LIBS+=" debtcollector os-brick os-traits automaton futurist oslo.service" |
| 43 | 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 |
-ALL_LIBS+=" castellan" |
|
| 46 |
+ALL_LIBS+=" castellan python-barbicanclient" |
|
| 47 | 47 |
|
| 48 | 48 |
# Generate the above list with |
| 49 | 49 |
# echo ${!GITREPO[@]}
|