[pkg-java] r17352 - trunk/maven-dependency-plugin/debian
Emmanuel Bourg
ebourg-guest at alioth.debian.org
Fri Oct 18 12:09:18 UTC 2013
Author: ebourg-guest
Date: 2013-10-18 12:09:18 +0000 (Fri, 18 Oct 2013)
New Revision: 17352
Modified:
trunk/maven-dependency-plugin/debian/changelog
trunk/maven-dependency-plugin/debian/orig-tar.sh
Log:
Use XZ compression for the upstream tarball
Modified: trunk/maven-dependency-plugin/debian/changelog
===================================================================
--- trunk/maven-dependency-plugin/debian/changelog 2013-10-18 12:05:05 UTC (rev 17351)
+++ trunk/maven-dependency-plugin/debian/changelog 2013-10-18 12:09:18 UTC (rev 17352)
@@ -6,6 +6,7 @@
- Updated Standards-Version to 3.9.4 (no changes)
* debian/copyright: Updated the Format URI
* Build depend on debhelper >= 9
+ * Use XZ compression for the upstream tarball
-- Emmanuel Bourg <ebourg at apache.org> Fri, 18 Oct 2013 13:55:45 +0200
Modified: trunk/maven-dependency-plugin/debian/orig-tar.sh
===================================================================
--- trunk/maven-dependency-plugin/debian/orig-tar.sh 2013-10-18 12:05:05 UTC (rev 17351)
+++ trunk/maven-dependency-plugin/debian/orig-tar.sh 2013-10-18 12:09:18 UTC (rev 17352)
@@ -1,12 +1,12 @@
#!/bin/sh -e
VERSION=$2
-TAR=../maven-dependency-plugin_$VERSION.orig.tar.gz
+TAR=../maven-dependency-plugin_$VERSION.orig.tar.xz
DIR=maven-dependency-plugin-$VERSION
TAG=$(echo "maven-dependency-plugin-$VERSION" | sed -re's/~(alpha|beta)/-\1-/')
svn export http://svn.apache.org/repos/asf/maven/plugins/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'
More information about the pkg-java-commits
mailing list