This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository maven-shared-jar.
commit 65df80bf956d9fa29d650af0e0150fdd3d2098bf Author: Emmanuel Bourg <[email protected]> Date: Fri Apr 25 08:57:36 2014 +0200 Use XZ compression for the upstream tarball --- debian/changelog | 7 +++++++ debian/orig-tar.sh | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index eec5db3..5d236c9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +maven-shared-jar (1.1-2) UNRELEASED; urgency=medium + + * Team upload. + * Use XZ compression for the upstream tarball + + -- Emmanuel Bourg <[email protected]> Fri, 25 Apr 2014 08:56:29 +0200 + maven-shared-jar (1.1-1) unstable; urgency=low * Initial release (Closes: #598433) diff --git a/debian/orig-tar.sh b/debian/orig-tar.sh index aa23605..ae091cc 100755 --- a/debian/orig-tar.sh +++ b/debian/orig-tar.sh @@ -1,12 +1,12 @@ #!/bin/sh -e VERSION=$2 -TAR=../maven-shared-jar_$VERSION.orig.tar.gz +TAR=../maven-shared-jar_$VERSION.orig.tar.xz DIR=maven-shared-jar-$VERSION TAG=$(echo "maven-shared-jar-$VERSION" | sed -re's/~(alpha|beta)/-\1-/') svn export http://svn.apache.org/repos/asf/maven/shared/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-shared-jar.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

