This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository mina2.
commit 14718ff2d8509105d07d2c6d1ce07e706575e98d Author: Emmanuel Bourg <[email protected]> Date: Tue May 12 12:44:56 2015 +0200 Use XZ compression for the upstream tarball --- debian/changelog | 4 +++- debian/orig-tar.sh | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index f5f4d86..1fbb4af 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,8 @@ mina2 (2.0.7+dfsg-3) UNRELEASED; urgency=medium - * debian/orig-tar.sh: No longer filter out the MD4 classes (removed upstream) + * debian/orig-tar.sh: + - No longer filter out the MD4 classes (removed upstream) + - Use XZ compression for the upstream tarball * debian/watch: Updated to detect the latest releases * Moved the package to Git diff --git a/debian/orig-tar.sh b/debian/orig-tar.sh index 158b67b..d4d2fd4 100755 --- a/debian/orig-tar.sh +++ b/debian/orig-tar.sh @@ -9,12 +9,12 @@ # $2 = version # $3 = file DIR=mina2-$2.orig -TAR=../mina2_$2+dfsg.orig.tar.gz +TAR=../mina2_$2+dfsg.orig.tar.xz # clean up the upstream tarball tar zxf $3 mv apache-mina-* $DIR -GZIP=--best tar czf $TAR -X debian/orig-tar.exclude $DIR +XZ_OPT=--best tar cJvf $TAR -X debian/orig-tar.exclude $DIR rm -rf $DIR rm $3 -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/mina2.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

