mirror of
https://github.com/samba-team/samba.git
synced 2024-12-28 07:21:54 +03:00
42d131d951
metze Signed-off-by: Stefan Metzmacher <metze@samba.org> (This used to be ctdb commit 1d5c5a221c28f1dc652a80ed516a0f18ba588d9f)
49 lines
1.1 KiB
Bash
Executable File
49 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$1" = "" ]; then
|
|
echo "Please provide version string, eg: 1.2.0"
|
|
exit 1
|
|
fi
|
|
|
|
if [ ! -d "lib/tdb" ]; then
|
|
echo "Run this script from the samba base directory."
|
|
exit 1
|
|
fi
|
|
|
|
git clean -f -x -d lib/tdb
|
|
git clean -f -x -d lib/replace
|
|
|
|
curbranch=`git-branch |grep "^*" | tr -d "* "`
|
|
|
|
version=$1
|
|
strver=`echo ${version} | tr "." "-"`
|
|
|
|
# Checkout the release tag
|
|
git branch -f tdb-release-script-${strver} tdb-${strver}
|
|
if [ ! "$?" = "0" ]; then
|
|
echo "Unable to checkout tdb-${strver} release"
|
|
exit 1
|
|
fi
|
|
|
|
git checkout tdb-release-script-${strver}
|
|
|
|
# Test configure agrees with us
|
|
confver=`grep "^AC_INIT" lib/tdb/configure.ac | tr -d "AC_INIT(tdb, " | tr -d ")"`
|
|
if [ ! "$confver" = "$version" ]; then
|
|
echo "Wrong version, requested release for ${version}, found ${confver}"
|
|
exit 1
|
|
fi
|
|
|
|
# Now build tarball
|
|
cp -a lib/tdb tdb-${version}
|
|
cp -a lib/replace tdb-${version}/libreplace
|
|
pushd tdb-${version}
|
|
./autogen.sh
|
|
popd
|
|
tar cvzf tdb-${version}.tar.gz tdb-${version}
|
|
rm -fr tdb-${version}
|
|
|
|
#Clean up
|
|
git checkout $curbranch
|
|
git branch -d tdb-release-script-${strver}
|