Less verbose id-mk-deb-src.sh
[git-tools-moved-to-github.git] / id-deb-build / id-mk-deb-src.sh
index 84814e4..3fe1759 100755 (executable)
@@ -8,28 +8,22 @@ if test ! -f $DEBCHANGELOG; then
        echo "The current directory should be base source of package"
        exit 1
 fi
-if test -d deb-src; then
-       echo "deb-src exist. You might remove it"
-       exit 1
+if test -f debian/.gitignore; then
+       cd debian; for i in `cat .gitignore`; do rm -fr $i; done; cd ..
 fi
 l=`head -1 $DEBCHANGELOG`
 PROD=`echo $l|sed 's/ .*//g'`
 VERSION=`echo $l|sed 's/.*(//g'|sed 's/).*//g'`
-echo "VERSION=$VERSION"
 MAJOR=`echo $VERSION|sed 's/-.*//g'`
-echo "MAJOR=$MAJOR"
 MINOR=`echo $VERSION|sed 's/.*-//g'`
-echo "MINOR=$MINOR"
 TAR=${PROD}-${MAJOR}.tar.gz
 if test ! -f ${TAR}; then
        echo "$0: ${TAR} missing"
        exit 1
 fi
 set -e
-mkdir deb-src
+mkdir -p deb-src
 ORIG=${PROD}_${MAJOR}.orig.tar.gz
-echo "TAR=$TAR"
-echo "ORIG=$ORIG"
 cp ${TAR} deb-src/${ORIG}
 cd deb-src
 tar xf ${ORIG}