Author: ebourg-guest Date: 2014-01-06 13:15:53 +0000 (Mon, 06 Jan 2014) New Revision: 17638
Modified: trunk/ant/debian/changelog trunk/ant/debian/orig-tar.sh Log: Use XZ compression for the upstream tarball Modified: trunk/ant/debian/changelog =================================================================== --- trunk/ant/debian/changelog 2014-01-06 13:11:54 UTC (rev 17637) +++ trunk/ant/debian/changelog 2014-01-06 13:15:53 UTC (rev 17638) @@ -4,6 +4,7 @@ * Switch to debhelper level 9 * Updated the description of 0008-junit4-replace-assumeFalse.patch * debian/rules: Improved the clean target to allow rebuilds + * Use XZ compression for the upstream tarball -- Emmanuel Bourg <[email protected]> Mon, 06 Jan 2014 09:47:00 +0100 Modified: trunk/ant/debian/orig-tar.sh =================================================================== --- trunk/ant/debian/orig-tar.sh 2014-01-06 13:11:54 UTC (rev 17637) +++ trunk/ant/debian/orig-tar.sh 2014-01-06 13:15:53 UTC (rev 17638) @@ -2,11 +2,12 @@ VERSION=$2 ORIG_TAR=$3 -TAR=../ant_$VERSION.orig.tar.gz +TAR=../ant_$VERSION.orig.tar.xz DIR=apache-ant-$VERSION tar xvzf $ORIG_TAR -tar -c -z -f $TAR --exclude '*.jar' --exclude '*.pdf' $DIR +rm $ORIG_TAR +XZ_OPT=--best tar -c -J -f $TAR --exclude '*.jar' --exclude '*.pdf' $DIR rm -rf $DIR # move to directory 'tarballs' _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

