4 echo "Please provide version string, eg: 1.2.0"
8 if [ ! -d "lib/talloc" ]; then
9 echo "Run this script from the samba base directory."
13 # Check exports and signatures are up to date
15 .
/script
/abi_checks.sh talloc talloc.h
18 if [ ! "$abicheck" = "0" ]; then
19 echo "ERROR: ABI Checks produced warnings!"
23 git clean
-f -x -d lib
/talloc
24 git clean
-f -x -d lib
/replace
26 curbranch
=`git branch |grep "^*" | tr -d "* "`
29 strver
=`echo ${version} | tr "." "-"`
31 # Checkout the release tag
32 git branch
-f talloc-release-script-
${strver} talloc-
${strver}
33 if [ ! "$?" = "0" ]; then
34 echo "Unable to checkout talloc-${strver} release"
38 git checkout talloc-release-script-
${strver}
40 # Test configure agrees with us
41 confver
=`grep "^AC_INIT" lib/talloc/configure.ac | tr -d "AC_INIT(talloc, " | tr -d ")"`
42 if [ ! "$confver" = "$version" ]; then
43 echo "Wrong version, requested release for ${version}, found ${confver}"
48 cp -a lib
/talloc talloc-
${version}
49 cp -a lib
/replace talloc-
${version}/libreplace
50 pushd talloc-
${version}
53 tar cvzf talloc-
${version}.
tar.gz talloc-
${version}
54 rm -fr talloc-
${version}
57 git checkout
$curbranch
58 git branch
-d talloc-release-script-
${strver}