X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=make-upstream.sh;h=edf3051474ce27c28c42dc0cdda7ba4515955475;hp=aa72dacd3d6e73c916286b5d57a97adccd2bde85;hb=24a94b5f819d8d88bb540de2f6e02cf5cbf5eaad;hpb=67e0b59f7b40b2c2f1d0587b24b4ecf4881b3824 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