1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
#! /bin/bash
VERSION=`grep AC_INIT < configure.ac | awk -F',' '{print $2}'`
FIRST=`echo $VERSION | awk -F'.' '{print $1}'`
SECOND=`echo $VERSION | awk -F'.' '{print $2}'`
THIRD=`echo $VERSION | awk -F'.' '{print $3}'`
NEXTTHIRD=`expr ${THIRD} + 1`
export DEBEMAIL=germant@miltenyibiotec.de
export DEBFULLNAME="German Tischler-Höhle"
function cleanup
{
if [ ! -z "${COMMITFILE}" ] ; then
if [ -f "${COMMITFILE}" ] ; then
rm -f "${COMMITFILE}"
fi
fi
}
COMMITFILE=commit_msg_$$.txt
trap cleanup EXIT SIGINT SIGTERM
# make sure we have the latest version
git checkout experimental
git pull -v
# create commit log message
joe "${COMMITFILE}"
if [ ! -s "${COMMITFILE}" ] ; then
echo "Empty commit log, aborting"
exit 1
fi
# update to next minor version
awk -v first=${FIRST} -v second=${SECOND} -v third=${THIRD} '/^AC_INIT/ {gsub(first"."second"."third,first"."second"."third+1);print} ; !/^AC_INIT/{print}' < configure.ac | \
awk -v first=${FIRST} -v second=${SECOND} -v third=${THIRD} '/^LIBRARY_VERSION=/ {gsub("="first"."third"."second,"="first":"third+1":"second);print} ; !/^LIBRARY_VERSION=/{print}' \
> configure.ac.tmp
mv configure.ac.tmp configure.ac
# update change log
CHANGELOG=ChangeLog dch --distribution unstable -v ${FIRST}.${SECOND}.${NEXTTHIRD}-1
# commit files
git add configure.ac ChangeLog
git commit -F "${COMMITFILE}"
git push -v
# back to experimental branch
git checkout experimental
TAG=libsecrecy_experimental_${FIRST}_${SECOND}_${NEXTTHIRD}
git tag -a ${TAG} -m "libsecrecy experimental version ${FIRST}_${SECOND}_${NEXTTHIRD}"
git push -v origin ${TAG}
exit 0
|