X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=make-upstream.sh;h=aa72dacd3d6e73c916286b5d57a97adccd2bde85;hb=d42cf8bec8dd2d6ad23006fba288bfa6fa4d2d1f;hp=67011b8585cbf4e5696f4fbbf06c2e270a2d60aa;hpb=af830e9c2e469d8b6dba30040542930148249b80;p=ctsim.git diff --git a/make-upstream.sh b/make-upstream.sh index 67011b8..aa72dac 100755 --- a/make-upstream.sh +++ b/make-upstream.sh @@ -38,6 +38,18 @@ PACKAGE_DIR=/usr/local/src/Packages/${DEBPKG} DISTDIR=${PKG}-${VERSION} DEBDIR=${DEBPKG}-${VERSION} +if [ -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 + case $answer in + [Yy]*) nop= ;; + *) echo "Not building" + exit 1 + ;; + esac +fi + if [ ! -z ${opt_tag} ]; then UPSTREAM_TAG=upstream_version_`echo ${VERSION} | tr . _` echo "(Re-)tagging with Upstream tag '${UPSTREAM_TAG}'" @@ -60,11 +72,11 @@ echo "Cleaning distribution directory ${DISTDIR}" cd ${DISTDIR} rm -f upload.sh make-debian.sh make-upstream.sh cvsbp-prepare.sh make-doc.sh rm -f `find . -type f -name .cvsignore` -rm -rf `find . -type d -name CVS` -rm -f `find . -type f -name '*~' -or -name '.#*' -or -name '#*#' -or -name ".*~"` +rm -rf `find . -type d -name CVS -or -name .deps` +rm -f `find . -type f -name '*~' -or -name '.#*' -or -name '#*#' -or -name ".*~" -or -name "*.o" -or -name "*.a"` rm -f `find doc -type f -name \*.tex -or -name \*.aux -or \ -name \*.log -or -name \*.out -or -name \*.dvi` -rm -rf images doc stamp-h.in build-stamp configure-stamp autom4te.cache +rm -rf images doc stamp-h.in build-stamp stamp-h configure-stamp autom4te.cache do-autoconf config.log config.status config.h cd .. echo "Creating upstream archives"