From 24a94b5f819d8d88bb540de2f6e02cf5cbf5eaad Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Sun, 2 Jun 2002 18:01:30 +0000 Subject: [PATCH] r2099: Committing for 3.5.4 --- configure | 2 +- configure.ac | 2 +- debian/changelog | 2 +- make-upstream.sh | 8 ++++++++ 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/configure b/configure index 5cb7733..658cd91 100755 --- a/configure +++ b/configure @@ -1415,7 +1415,7 @@ fi PACKAGE=ctsim -VERSION=3.5.3 +VERSION=3.5.4 if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 diff --git a/configure.ac b/configure.ac index 93ea168..6632e39 100644 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,7 @@ dnl CDPATH= AC_INIT AC_CONFIG_SRCDIR([src/ctsim.cpp]) -AM_INIT_AUTOMAKE(ctsim,3.5.3) +AM_INIT_AUTOMAKE(ctsim,3.5.4) AM_CONFIG_HEADER(config.h) dnl Checks for programs. diff --git a/debian/changelog b/debian/changelog index a8bdd18..6968bbd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -ctsim (3.5.3-2) unstable; urgency=low +ctsim (3.5.4-1) unstable; urgency=low * New upstream version diff --git a/make-upstream.sh b/make-upstream.sh index aa72dac..edf3051 100755 --- a/make-upstream.sh +++ b/make-upstream.sh @@ -13,6 +13,7 @@ Usage: $progname [options] Creates upstream archives Options: -t Tag CVS tree with current version numbers + -c Commit all files to CVS server -h Print this brief help EOF } @@ -23,6 +24,7 @@ while [ $# != 0 ]; do case "$1" in -h) usage; exit 0 ;; -t) opt_tag=1 ;; + -c) opt_commit=1 ;; *) usage; exit 0 ;; esac shift @@ -50,6 +52,11 @@ if [ -f ${PACKAGE_DIR}/${DEBPKG}_${VERSION}.orig.tar.gz ]; then esac fi +if [ ! -z ${opt_commit} ]; then + echo "Committing to CVS server" + cvs commit -m "Committing for ${VERSION}" +fi + if [ ! -z ${opt_tag} ]; then UPSTREAM_TAG=upstream_version_`echo ${VERSION} | tr . _` echo "(Re-)tagging with Upstream tag '${UPSTREAM_TAG}'" @@ -57,6 +64,7 @@ if [ ! -z ${opt_tag} ]; then cvs -q tag -F $UPSTREAM_TAG > /dev/null fi + if [ ! -f docs/${PKG}.htb -o ! -f docs/html/${PKG}_contents.html -o ! -f docs/${PKG}.pdf ]; then echo "Making documentation" ../make-doc.sh -- 2.34.1