
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
17 lines
313 B
Bash
Executable File
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
|