X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=make-upstream.sh;h=adb660cf9387bbc19c6a5ce00a56080f3d98dd72;hb=0d52b379e86d878b9c0c7806701f939cfd661901;hp=2acb3ae5a6852b10977c11b8d35df1f67f6f4d86;hpb=8c8440d0681afef840611e93a905c49f7f8b172f;p=uffi.git diff --git a/make-upstream.sh b/make-upstream.sh index 2acb3ae..adb660c 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}'" @@ -68,7 +78,7 @@ echo "Cleaning distribution directory ${DISTDIR}" cd ${DISTDIR} rm -f upload.sh make-debian.sh make-upstream.sh cvsbp-prepare.sh rm -f `find . -type f -name .cvsignore` -rm -rf `find . -type d -name CVS` +rm -rf `find . -type d -name CVS -or -name .bin` rm -f `find . -type f -name '*~' -or -name '.#*' -or -name '#*#' -or -name ".*~"` rm -f `find doc -type f -name \*.tex -or -name \*.aux -or \ -name \*.log -or -name \*.out -or -name \*.dvi`