This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository maven-common-artifact-filters.
commit fd290108a93b87df856e734ab7c8629042daa990 Author: Emmanuel Bourg <[email protected]> Date: Wed Dec 4 13:18:38 2013 +0000 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 900ff8c..d85c202 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +maven-common-artifact-filters (1.2-2) UNRELEASED; urgency=low + + * Team upload. + * Use XZ compression for the upstream tarball + + -- Emmanuel Bourg <[email protected]> Wed, 04 Dec 2013 14:17:16 +0100 + maven-common-artifact-filters (1.2-1) unstable; urgency=low * Team upload diff --git a/debian/orig-tar.sh b/debian/orig-tar.sh index c159f64..1eeceb3 100755 --- a/debian/orig-tar.sh +++ b/debian/orig-tar.sh @@ -1,12 +1,12 @@ #!/bin/sh -e VERSION=$2 -TAR=../maven-common-artifact-filters_$VERSION.orig.tar.gz +TAR=../maven-common-artifact-filters_$VERSION.orig.tar.xz DIR=maven-common-artifact-filters-$VERSION TAG=$(echo "maven-common-artifact-filters-$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-common-artifact-filters.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

