diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-05-29 18:56:36 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-05-30 04:15:11 +0200 |
commit | c8877d8f63ea367401fae4377cd28ee91b58d9e3 (patch) | |
tree | c81aca0df508350fb33717218c5a76db045e657f /lib/tdb/script/release-script.sh | |
parent | ccb7642e5bc128c201bc7cff4f2a09fce3fd0c7d (diff) | |
download | samba-c8877d8f63ea367401fae4377cd28ee91b58d9e3.tar.gz samba-c8877d8f63ea367401fae4377cd28ee91b58d9e3.tar.bz2 samba-c8877d8f63ea367401fae4377cd28ee91b58d9e3.zip |
build: Remove unused release scripts for tdb
These now use waf dist, and the script/librelease.sh script as a wrapper.
The mksyms.sh call in the source3/Makefile uses the copy in source3/script
Andrew Bartlett
Diffstat (limited to 'lib/tdb/script/release-script.sh')
-rwxr-xr-x | lib/tdb/script/release-script.sh | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/lib/tdb/script/release-script.sh b/lib/tdb/script/release-script.sh deleted file mode 100755 index e9a023d7a5..0000000000 --- a/lib/tdb/script/release-script.sh +++ /dev/null @@ -1,67 +0,0 @@ -#!/bin/bash - -LNAME=tdb -LINCLUDE=include/tdb.h - -if [ "$1" = "" ]; then - echo "Please provide version string, eg: 1.2.0" - exit 1 -fi - -if [ ! -d "lib/${LNAME}" ]; 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 ${LNAME}-release-script-${strver} ${LNAME}-${strver} -if [ ! "$?" = "0" ]; then - echo "Unable to checkout ${LNAME}-${strver} release" - exit 1 -fi - -function cleanquit { - #Clean up - git checkout $curbranch - git branch -d ${LNAME}-release-script-${strver} - exit $1 -} - -# NOTE: use cleanquit after this point -git checkout ${LNAME}-release-script-${strver} - -# Test configure agrees with us -confver=`grep "^AC_INIT" lib/${LNAME}/configure.ac | tr -d "AC_INIT(${LNAME}, " | tr -d ")"` -if [ ! "$confver" = "$version" ]; then - echo "Wrong version, requested release for ${version}, found ${confver}" - exit 1 -fi - -# Check exports and signatures are up to date -pushd lib/${LNAME} -./script/abi_checks.sh ${LNAME} ${LINCLUDE} -abicheck=$? -popd -if [ ! "$abicheck" = "0" ]; then - echo "ERROR: ABI Checks produced warnings!" - cleanquit 1 -fi - -git clean -f -x -d lib/${LNAME} -git clean -f -x -d lib/replace - -# Now build tarball -cp -a lib/${LNAME} ${LNAME}-${version} -cp -a lib/replace ${LNAME}-${version}/libreplace -pushd ${LNAME}-${version} -./autogen.sh -popd -tar cvzf ${LNAME}-${version}.tar.gz ${LNAME}-${version} -rm -fr ${LNAME}-${version} - -cleanquit 0 |