summaryrefslogtreecommitdiffstats
path: root/ctdb/lib/tdb/script/release-script.sh
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronniesahlberg@gmail.com>2012-04-26 08:09:34 +1000
committerRonnie Sahlberg <ronniesahlberg@gmail.com>2012-04-26 08:09:34 +1000
commit4426f9a5317d7eda10a43e6cf76f154c17e81f64 (patch)
treed6aa0ecdf87fe7e58a3754f86b5e7e9f2962f750 /ctdb/lib/tdb/script/release-script.sh
parentdb411aaada39593c80f92e46be31d3473bf4639f (diff)
parent8f643897bbd33ea0c120dc06586434b8a2592b1f (diff)
downloadsamba-4426f9a5317d7eda10a43e6cf76f154c17e81f64.tar.gz
samba-4426f9a5317d7eda10a43e6cf76f154c17e81f64.tar.xz
samba-4426f9a5317d7eda10a43e6cf76f154c17e81f64.zip
Merge remote branch 'amitay/tdb-sync'
(This used to be ctdb commit 8052ee0a6bda3fa88501d77b2d53315be2b75ec1)
Diffstat (limited to 'ctdb/lib/tdb/script/release-script.sh')
-rw-r--r--ctdb/lib/tdb/script/release-script.sh67
1 files changed, 0 insertions, 67 deletions
diff --git a/ctdb/lib/tdb/script/release-script.sh b/ctdb/lib/tdb/script/release-script.sh
deleted file mode 100644
index e9a023d7a5..0000000000
--- a/ctdb/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