barbican/rpmbuild/package_dependencies.sh
jfwood b9c0123e66 Install of a Barbican RPM fails due to missing keystonemiddleware
keystonemiddleware (a dependency added recently) is not yet in RDO but
is a dependency for Barbican, and therefore needs to be FPM-ed via the
rpmbuild/package_dependencies.sh script.

Closes-Bug: #1356574
Change-Id: Iab1879d5529b45ddcfdb28224cba55fdd06d0205
2014-08-18 12:57:38 -05:00

17 lines
313 B
Bash
Executable File

#!/bin/bash
# ---------------------
# Barbican Dependencies
# ---------------------
pushd $WORKSPACE/rpmbuild
export PYENV_VERSION=system
fpm -s python -t rpm uWSGI
fpm -s python -t rpm cryptography
#TODO(john-wood-w) Remove this dependency once RDO includes it.
fpm -s python -t rpm keystonemiddleware
popd