[findbugs] 02/03: correct orig-tar.sh for xz compression
Tony Mancill
tmancill at moszumanska.debian.org
Sun Jan 10 06:46:44 UTC 2016
This is an automated email from the git hooks/post-receive script.
tmancill pushed a commit to branch master
in repository findbugs.
commit 6af16e92c8d0802a768655a873fbe930794cd24d
Author: tony mancill <tmancill at debian.org>
Date: Mon Jan 4 22:04:47 2016 -0800
correct orig-tar.sh for xz compression
---
debian/orig-tar.sh | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/debian/orig-tar.sh b/debian/orig-tar.sh
index 16f0008..7faaa22 100755
--- a/debian/orig-tar.sh
+++ b/debian/orig-tar.sh
@@ -2,16 +2,17 @@
VERSION=$2
DIR=findbugs-$VERSION
-TAR=findbugs_$VERSION.orig.tar.bz2
+TAR=findbugs_$VERSION.orig.tar.xz
# clean up the upstream tarball
-unzip -x $3
+#unzip -x $3
+tar xzvf $3
cd $DIR
#Remove shipped jar + doc without sources
rm -rf lib/*.jar lib/*.zip lib/*.txt
rm -rf src/doc/pressRelease.pdf doc/pressRelease.pdf build-lib/
cd ..
-tar jcvf ../$TAR $DIR
+tar Jcvf ../$TAR $DIR
rm -rf $DIR $3
# move to directory 'tarballs'
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/findbugs.git
More information about the pkg-java-commits
mailing list