Files
barbican/rpmbuild/build_rpm.sh
John Vrbanac 74b86804bc Updating RPM build version
* Making sure the sed call captures the versions that pbr outputs

Change-Id: Idfdf8394e1920f73688e547a5bd8bcf3e591d675
2014-01-02 20:36:45 -06:00

14 lines
389 B
Bash
Executable File

#!/bin/bash
pushd $PWD
mkdir -p rpmbuild/{BUILD,RPMS,S{OURCE,PEC,RPM}S}
BUILD_VERSION=$(ls dist | sed 's/^barbican-\(.*\)\.tar\.gz/\1/g')
export BUILD_VERSION
echo "Building RPM version $BUILD_VERSION"
cp "dist/barbican-$BUILD_VERSION.tar.gz" rpmbuild/SOURCES
sed -e s/BUILD_VERSION/$BUILD_VERSION/g -i rpmbuild/SPECS/barbican.spec
rpmbuild -ba --sign rpmbuild/SPECS/barbican.spec
popd