This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository tomcat6.
commit a104b0cdfb1d381cb04f29af2a2b428b328a46a5 Author: Emmanuel Bourg <[email protected]> Date: Mon Feb 17 00:04:57 2014 +0100 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 28ae96c..ecfd47c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,7 @@ tomcat6 (6.0.37-2) UNRELEASED; urgency=medium * 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]> Mon, 17 Feb 2014 00:02:00 +0100 diff --git a/debian/orig-tar.sh b/debian/orig-tar.sh index 90a7e1b..22b8732 100755 --- a/debian/orig-tar.sh +++ b/debian/orig-tar.sh @@ -1,12 +1,12 @@ #!/bin/sh -e VERSION=$2 -TAR=../tomcat6_$VERSION.orig.tar.gz +TAR=../tomcat6_$VERSION.orig.tar.xz DIR=tomcat6-$VERSION TAG=$(echo TOMCAT_$VERSION | sed -e 's/\./_/g') svn export http://svn.apache.org/repos/asf/tomcat/tc6.0.x/tags/$TAG $DIR -tar -c -z -f $TAR --exclude 'standard.jar' --exclude 'jstl.jar' $DIR +tar -c -J -f $TAR --exclude 'standard.jar' --exclude 'jstl.jar' $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/tomcat6.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

