mirror of
https://github.com/xcat2/confluent.git
synced 2026-08-04 08:27:01 +00:00
a9d7b67929
Release tags do not live on master: 3.15.2 through 3.15.6 were tagged on branch 3.15, so git describe reaches only 3.15.1 and dev builds were stamped 3.15.2.dev<n>. Besides being confusing, rpm and dpkg both rank the released 3.15.6 above that, so a dev package will not install over a released one. Add a top-level VERSION file naming the release the branch is working toward (4.0.0 on master) and a mkversion helper that stamps packages from it, keeping the tag-derived value as a floor so a forgotten bump cannot go backwards. mkversion also replaces the block copy-pasted into seven build scripts, and makesetup no longer writes a per-package VERSION file, so the stale checked-in confluent_common/VERSION goes with it.
26 lines
888 B
Plaintext
Executable File
26 lines
888 B
Plaintext
Executable File
cd $(dirname $0)
|
|
VERSION=`../mkversion --tilde` || exit 1
|
|
mkdir -p dist/confluent_vtbufferd-$VERSION
|
|
cp ../LICENSE NOTICE *.c *.h Makefile dist/confluent_vtbufferd-$VERSION
|
|
cd dist
|
|
tar czf confluent_vtbufferd-$VERSION.tar.gz confluent_vtbufferd-$VERSION
|
|
cd -
|
|
mkdir -p ~/rpmbuild/SOURCES ~/rpmbuild/SPECS
|
|
cp dist/confluent_vtbufferd-$VERSION.tar.gz ~/rpmbuild/SOURCES
|
|
sed -e 's/#VERSION#/'$VERSION/ confluent_vtbufferd.spec.tmpl > ~/rpmbuild/SPECS/confluent_vtbufferd.spec
|
|
rpmbuild -ba ~/rpmbuild/SPECS/confluent_vtbufferd.spec 2> /dev/null |grep ^Wrote:
|
|
if [ $? -ne 0 ]; then
|
|
echo "[ERROR] rpmbuild returned non-zero, run: rpmbuild -ba ~/rpmbuild/SPECS/confluent_vtbufferd.spec"
|
|
exit 1
|
|
else
|
|
# Clean up the generated files in this directory
|
|
rm -rf dist
|
|
fi
|
|
ARCH=$(uname -m)
|
|
if [ ! -z "$1" ]; then
|
|
cp /root/rpmbuild/RPMS/$ARCH/confluent_vtbufferd-*.$ARCH.rpm $1
|
|
fi
|
|
|
|
|
|
|