This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository bnd.
commit 24c197f09f7e55f08a20fb43b556493e016e9ae6 Author: Emmanuel Bourg <[email protected]> Date: Tue Dec 15 22:38:30 2015 +0100 Use XZ compression for the upstream tarball --- debian/changelog | 7 +++++++ debian/orig-tar.sh | 5 ++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index a8385af..b4b78be 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +bnd (2.1.0-3) UNRELEASED; urgency=medium + + * Team upload. + * Use XZ compression for the upstream tarball + + -- Emmanuel Bourg <[email protected]> Tue, 15 Dec 2015 22:34:41 +0100 + bnd (2.1.0-2) unstable; urgency=medium * Team upload. diff --git a/debian/orig-tar.sh b/debian/orig-tar.sh index a8fdd07..789a2f3 100755 --- a/debian/orig-tar.sh +++ b/debian/orig-tar.sh @@ -1,7 +1,7 @@ #!/bin/sh -e VERSION=$2 -TAR=../bnd_$VERSION.orig.tar.gz +TAR=../bnd_$VERSION.orig.tar.xz DIR=bnd-$VERSION GIT_DIR=bnd-git @@ -15,7 +15,6 @@ git clone git://github.com/bndtools/bnd.git $GIT_DIR chmod +x debian/git-transform.sh debian/git-transform.sh $GIT_DIR $DIR -tar -c -z -f $TAR $DIR +XZ_OPT=--best tar -c -J -f $TAR $DIR rm -rf $DIR rm -rf $GIT_DIR - -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/bnd.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

