X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=make-upstream.sh;h=a42794e32b6a32f17eee0533265bced72865435a;hb=ace1cb9084e3e8fd4773625fc413c039ebd3b1f4;hp=c02895c5a69178c12588987ebea87769f748479a;hpb=f3e9d8187206adfe55a8d26b5fb0d43c64bf3fe1;p=clsql.git diff --git a/make-upstream.sh b/make-upstream.sh index c02895c..a42794e 100755 --- a/make-upstream.sh +++ b/make-upstream.sh @@ -12,17 +12,23 @@ usage () { Usage: $progname [options] Creates upstream archives Options: + -c Commit and tag CVS tree with current version numbers -t Tag CVS tree with current version numbers + -f Force creation of upstream archive, even if exists' -h Print this brief help EOF } +opt_force=0 + # Command line while [ $# != 0 ]; do value="`echo x\"$1\" | sed -e 's/^x-.//'`" case "$1" in -h) usage; exit 0 ;; + -c) opt_commit=1; opt_tag=1 ;; -t) opt_tag=1 ;; + -f) opt_force=1 ;; *) usage; exit 0 ;; esac shift @@ -38,6 +44,10 @@ PACKAGE_DIR=/usr/local/src/Packages/${DEBPKG} DISTDIR=${PKG}-${VERSION} DEBDIR=${DEBPKG}-${VERSION} +if [ ! -z ${opt_commit} ]; then + cvs commit -m 'Debian build' +fi + if [ ! -z ${opt_tag} ]; then UPSTREAM_TAG=upstream_version_`echo ${VERSION} | tr . _` echo "(Re-)tagging with Upstream tag '${UPSTREAM_TAG}'" @@ -46,7 +56,7 @@ if [ ! -z ${opt_tag} ]; then fi -if [ -f ${PACKAGE_DIR}/${DEBPKG}_${VERSION}.orig.tar.gz ]; then +if [ -z ${opt_force} -a -f ${PACKAGE_DIR}/${DEBPKG}_${VERSION}.orig.tar.gz ]; then echo "File ${PACKAGE_DIR}/${DEBPKG}_${VERSION}.orig.tar.gz already exists." echo -n "Are you sure that you want to create a new upstream archive? (y/N): " read answer