This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository maven-plugin-testing.
commit 6df70922fee18d4a1dee39a084c70143229c06de Author: Emmanuel Bourg <[email protected]> Date: Fri Nov 22 14:27:59 2013 +0000 Use XZ compression for the upstream tarball --- debian/changelog | 1 + debian/orig-tar.sh | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index f27f869..5847c8c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,7 @@ maven-plugin-testing (1.2-4) UNRELEASED; urgency=low * Team upload. * Standards-Version updated to 3.9.5 (no changes) * Switch to debhelper level 9 + * Use XZ compression for the upstream tarball -- Emmanuel Bourg <[email protected]> Fri, 22 Nov 2013 15:14:38 +0100 diff --git a/debian/orig-tar.sh b/debian/orig-tar.sh index f57ceb2..b97c4d8 100755 --- a/debian/orig-tar.sh +++ b/debian/orig-tar.sh @@ -1,12 +1,12 @@ #!/bin/sh -e VERSION=$2 -TAR=../maven-plugin-testing_$VERSION.orig.tar.gz +TAR=../maven-plugin-testing_$VERSION.orig.tar.xz DIR=maven-plugin-testing-$VERSION TAG=$(echo "maven-plugin-testing-$VERSION" | sed -re's/~(alpha|beta)/-\1-/') svn export http://svn.apache.org/repos/asf/maven/plugin-testing/tags/${TAG}/ $DIR -GZIP=--best tar -c -z -f $TAR --exclude '*.jar' --exclude '*.class' $DIR +XZ_OPT=--best tar -c -J -f $TAR --exclude '*.jar' --exclude '*.class' $DIR rm -rf $DIR ../$TAG # move to directory 'tarballs' -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/maven-plugin-testing.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

