4 echo "Please provide version string, eg: 1.2.0"
8 if [ ! -d "lib/tdb" ]; then
9 echo "Run this script from the samba base directory."
13 git clean
-f -x -d lib
/tdb
14 git clean
-f -x -d lib
/replace
16 curbranch
=`git-branch |grep "^*" | tr -d "* "`
19 strver
=`echo ${version} | tr "." "-"`
21 # Checkout the release tag
22 git branch
-f tdb-release-script-
${strver} tdb-
${strver}
23 if [ ! "$?" = "0" ]; then
24 echo "Unable to checkout tdb-${strver} release"
28 git checkout tdb-release-script-
${strver}
30 # Test configure agrees with us
31 confver
=`grep "^AC_INIT" lib/tdb/configure.ac | tr -d "AC_INIT(tdb, " | tr -d ")"`
32 if [ ! "$confver" = "$version" ]; then
33 echo "Wrong version, requested release for ${version}, found ${confver}"
38 cp -a lib
/tdb tdb-
${version}
39 cp -a lib
/replace tdb-
${version}/libreplace
43 tar cvzf tdb-
${version}.
tar.gz tdb-
${version}
47 git checkout
$curbranch
48 git branch
-d tdb-release-script-
${strver}