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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
#! /bin/sh
#
# newversion - prepares the tree for a new version number in CVS
#
# Copyright (C) 2004 - 2006 Eggheads Development Team
#
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
# As a special exception to the GNU General Public License, if you
# distribute this file as part of a program that contains a
# configuration script generated by Autoconf, you may include it under
# the same distribution terms that you use for the rest of that program.
#
# $Id: newversion,v 1.5 2006-03-28 02:35:49 wcc Exp $
MOD_CONFIGURE_ACS="src/mod/compress.mod/configure.ac src/mod/dns.mod/configure.ac"
DOCS="doc/COMPILE-GUIDE doc/PATCH-HOWTO doc/tcl-commands.doc doc/TEXT-SUBSTITUTIONS \
doc/html/app-textsub.html doc/html/compiling.html doc/tcl-commands.html \
doc/html/patch-howto.html"
fix_main_c() {
sed -e 's:egg_numver = .*$:egg_numver = '${NEW_NUMVERSION}';:' \
-e 's:egg_version\[1024\] = ".*":egg_version[1024] = "'${NEW_EGGVERSION}'":' src/main.c > src/main.c_
mv src/main.c_ src/main.c
}
if test ! -f src/main.c; then
echo "You are not in the Eggdrop root directory."
exit 1
fi
umask 022
OLD_EGGVERSION=$(grep AC_INIT configure.ac | sed -e 's/AC_INIT(\[Eggdrop\],\[//g' -e 's/\],\[bugs@eggheads.org\])//g')
NEW_EGGVERSION=$(echo $OLD_EGGVERSION | cut -d. -f1-2).$(($(echo $OLD_EGGVERSION | cut -d. -f3) + 1))
NEW_NUMVERSION=$(($(grep 'egg_numver =' src/main.c | sed -e 's/.*= //' -e 's/;$//') + 100))
# Change the patch to 'none'.
echo -n "Adding patch 'none'..."
misc/addpatch none >/dev/null
echo " done."
# Fix main.c.
echo -n "Updating src/main.c..."
fix_main_c
echo " done."
# Fix configure.ac's.
echo -n "Fixing configure.ac files..."
for i in $MOD_CONFIGURE_ACS configure.ac; do
sed 's:'${OLD_EGGVERSION}':'${NEW_EGGVERSION}':g' $i > ${i}_
mv ${i}_ $i
done
echo " done."
echo -n "Fixing docs..."
for i in $DOCS; do
sed 's:'${OLD_EGGVERSION}':'${NEW_EGGVERSION}':g' $i > ${i}_
mv ${i}_ $i
done
echo " done."
echo Current patch: `misc/addpatch -s`
echo ""
echo "Complete."
echo ""
echo "Now, cvs commit, and then run the following, and commit again:"
echo " autoconf"
CURRENT_PWD=$PWD
for i in $MOD_CONFIGURE_ACS; do
echo " cd ${CURRENT_PWD}/`dirname $i` && autoconf"
done
echo " cd $PWD"
echo ""
echo "Don't forget to add $NEW_EGGVERSION to UPDATES."
echo ""
|