From bdec46e4aaf121700b2889ff827efbfe36416bae7dd66f507bbaa478a5b4780f Mon Sep 17 00:00:00 2001 From: Thomas Schraitle Date: Tue, 10 Jan 2012 08:24:27 +0000 Subject: [PATCH] Renew archive, make fetch_source be more verbose OBS-URL: https://build.opensuse.org/package/show/Documentation:Tools/daps?expand=0&rev=76 --- daps-0.9.2.tar.bz2 | 4 ++-- fetch_source | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/daps-0.9.2.tar.bz2 b/daps-0.9.2.tar.bz2 index 15f6108..0475b2a 100644 --- a/daps-0.9.2.tar.bz2 +++ b/daps-0.9.2.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2ea867ec79c18bf369255876a687a4e5dd7172618c13d5c420548e798a67dd15 -size 788878 +oid sha256:f6a58f0e23580830cb05e1ba756e7f2dc1b6d7f057bed22196dc05f5c01b5894 +size 788519 diff --git a/fetch_source b/fetch_source index 3933c86..16c5735 100644 --- a/fetch_source +++ b/fetch_source @@ -9,6 +9,8 @@ # Frank Sundermeyer # +set -x + NAME=daps VERSION= SPECFILE=${NAME}.spec @@ -45,7 +47,7 @@ fi # # Export daps from SVN # -svn export -q $SVNPATH ${TMPDIR}/${NAME} || exit_on_error "SVN export failed" +svn export $SVNPATH ${TMPDIR}/${NAME} || exit_on_error "SVN export failed" # # Get the version number @@ -60,7 +62,7 @@ fi # Create the tarball # export BZIP2=--best -tar cjhf ${NAME}-${VERSION}.tar.bz2 -C ${TMPDIR} \ +tar cvjhf ${NAME}-${VERSION}.tar.bz2 -C ${TMPDIR} \ --exclude-from=$EXCLUDES ${NAME} || exit_on_error "Failed to create the tarball." echo "Successfully created ${NAME}-${VERSION}.tar.bz2"