Renew archive, make fetch_source be more verbose

OBS-URL: https://build.opensuse.org/package/show/Documentation:Tools/daps?expand=0&rev=76
This commit is contained in:
Thomas Schraitle 2012-01-10 08:24:27 +00:00 committed by Git OBS Bridge
parent 2972d440fd
commit bdec46e4aa
2 changed files with 6 additions and 4 deletions

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:2ea867ec79c18bf369255876a687a4e5dd7172618c13d5c420548e798a67dd15 oid sha256:f6a58f0e23580830cb05e1ba756e7f2dc1b6d7f057bed22196dc05f5c01b5894
size 788878 size 788519

View File

@ -9,6 +9,8 @@
# Frank Sundermeyer <fsundermeyer at opensuse dot org> # Frank Sundermeyer <fsundermeyer at opensuse dot org>
# #
set -x
NAME=daps NAME=daps
VERSION= VERSION=
SPECFILE=${NAME}.spec SPECFILE=${NAME}.spec
@ -45,7 +47,7 @@ fi
# #
# Export daps from SVN # 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 # Get the version number
@ -60,7 +62,7 @@ fi
# Create the tarball # Create the tarball
# #
export BZIP2=--best 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." --exclude-from=$EXCLUDES ${NAME} || exit_on_error "Failed to create the tarball."
echo "Successfully created ${NAME}-${VERSION}.tar.bz2" echo "Successfully created ${NAME}-${VERSION}.tar.bz2"