diff options
author | Simo Sorce <idra@samba.org> | 2009-05-05 09:50:19 -0400 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2009-05-05 09:51:00 -0400 |
commit | b58abb262c33dd5cd9cfb3397333c0c1f5e91592 (patch) | |
tree | da34fffb1de2871a4311d57198e6c10505307b29 /lib/talloc | |
parent | 290449aeae950d7490cdcf9d601052fc45bb84dd (diff) | |
download | samba-b58abb262c33dd5cd9cfb3397333c0c1f5e91592.tar.gz samba-b58abb262c33dd5cd9cfb3397333c0c1f5e91592.tar.bz2 samba-b58abb262c33dd5cd9cfb3397333c0c1f5e91592.zip |
Add release scripts for talloc and tdb
Diffstat (limited to 'lib/talloc')
-rwxr-xr-x | lib/talloc/release-script.sh | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/lib/talloc/release-script.sh b/lib/talloc/release-script.sh new file mode 100755 index 0000000000..7ec47b7ee1 --- /dev/null +++ b/lib/talloc/release-script.sh @@ -0,0 +1,45 @@ +#!/bin/bash + +if [ "$1" = "" ]; then + echo "Please provide version string, eg: 1.2.0" + exit 1 +fi + +if [ ! -d "lib/talloc" ]; then + echo "Run this script from the samba base directory." + exit 1 +fi + +curbranch=`git-branch |grep "^*" | tr -d "* "` + +version=$1 +strver=`echo ${version} | tr "." "-"` + +# Checkout the release tag +git branch -f talloc-release-script-${strver} talloc-${strver} +if [ ! "$?" = "0" ]; then + echo "Unable to checkout talloc-${strver} release" + exit 1 +fi + +git checkout talloc-release-script-${strver} + +# Test configure agrees with us +confver=`grep "^AC_INIT" lib/talloc/configure.ac | tr -d "AC_INIT(talloc, " | tr -d ")"` +if [ ! "$confver" = "$version" ]; then + echo "Wrong version, requested release for ${version}, found ${confver}" + exit 1 +fi + +# Now build tarball +cp -a lib/talloc talloc-${version} +cp -a lib/replace talloc-${version}/libreplace +pushd talloc-${version} +./autogen.sh +popd +tar cvzf talloc-${version}.tar.gz talloc-${version} +rm -fr talloc-${version} + +#Clean up +git checkout $curbranch +git branch -d talloc-release-script-${strver} |