This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository maven-javadoc-plugin.
commit 5e7434c23fc57f1f8f7068efe1fc2b1699aafc91 Author: Emmanuel Bourg <[email protected]> Date: Fri Oct 18 07:28:32 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 a132ef9..82b3e22 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,6 +7,7 @@ maven-javadoc-plugin (2.6.1-3) UNRELEASED; urgency=low - Removed Michael Koch from the uploaders (Closes: #654112) * debian/copyright: Updated to the Copyright Format 1.0 * Build depend on debhelper >= 9 + * Use XZ compression for the upstream tarball -- Emmanuel Bourg <[email protected]> Fri, 18 Oct 2013 01:46:27 +0200 diff --git a/debian/orig-tar.sh b/debian/orig-tar.sh index d136f6b..5d1b212 100755 --- a/debian/orig-tar.sh +++ b/debian/orig-tar.sh @@ -1,12 +1,12 @@ #!/bin/sh -e VERSION=$2 -TAR=../maven-javadoc-plugin_$VERSION.orig.tar.gz +TAR=../maven-javadoc-plugin_$VERSION.orig.tar.xz DIR=maven-javadoc-plugin-$VERSION TAG=$(echo "maven-javadoc-plugin-$VERSION" | sed -re's/~(alpha|beta)/-\1-/') svn export http://svn.apache.org/repos/asf/maven/plugins/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-javadoc-plugin.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

