This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository activemq.
commit dbe702a8d474503d7b1aadfd0591d35ac38b542f Author: Emmanuel Bourg <[email protected]> Date: Mon Aug 4 14:42:25 2014 +0200 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 1af8a64..2d9553b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,6 +6,7 @@ activemq (5.6.0+dfsg-2) UNRELEASED; urgency=medium - Standards-Version updated to 3.9.5 (no changes) - Use canonical URLs for the Vcs-* fields - Replaced the dependency on openjdk-6-jre-headless by default-jre-headless + * Use XZ compression for the upstream tarball -- Emmanuel Bourg <[email protected]> Mon, 04 Aug 2014 12:59:36 +0200 diff --git a/debian/orig-tar.sh b/debian/orig-tar.sh index 99b111d..60f25e8 100755 --- a/debian/orig-tar.sh +++ b/debian/orig-tar.sh @@ -1,12 +1,12 @@ #!/bin/sh -e VERSION=$2 -TAR=../activemq_$VERSION.orig.tar.gz +TAR=../activemq_$VERSION.orig.tar.xz DIR=activemq-$VERSION TAG=$(echo "activemq-$VERSION" | sed -re's/~(alpha|beta)/-\1-/') svn export https://svn.apache.org/repos/asf/activemq/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/activemq.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

