This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository wss4j.
commit b75f981f03780cec91108957b3f176b602a89b3e Author: Emmanuel Bourg <[email protected]> Date: Mon Sep 23 07:25:49 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 d5aef5b..e066b4a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,7 @@ wss4j (1.5.8+svntag-2.1) UNRELEASED; urgency=low * Updated Standards-Version to 3.9.4 (no changes) * Removed the deprecated DM-Upload-Allowed flag * Removed the dependency on the JRE for the binary package (not needed) + * Use XZ compression for the upstream tarball -- Emmanuel Bourg <[email protected]> Mon, 23 Sep 2013 09:18:49 +0200 diff --git a/debian/orig-tar.sh b/debian/orig-tar.sh index 5a2d086..399727b 100755 --- a/debian/orig-tar.sh +++ b/debian/orig-tar.sh @@ -18,7 +18,7 @@ echo "Creating orig.tar.gz in '$origDir'." # $2 = version SUFFIX="+svntag" -TAR=$origDir/wss4j_$2${SUFFIX}.orig.tar.gz +TAR=$origDir/wss4j_$2${SUFFIX}.orig.tar.xz # See Developers Reference ยง 6.7.8.2.4 DIR=wss4j-$2${SUFFIX}.orig @@ -30,5 +30,5 @@ fi # clean up the upstream tarball svn export http://svn.apache.org/repos/asf/webservices/wss4j/tags/${2//\./\_}/ $DIR -GZIP="--best --no-name" tar --exclude-vcs --exclude-from=debian/exclude -c -z -f $TAR $DIR +XZ_OPT="--best" tar --exclude-vcs --exclude-from=debian/exclude -c -J -f $TAR $DIR rm -rf $DIR -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/wss4j.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

