[pkg-java] r17598 - trunk/maven-archiver/debian
Emmanuel Bourg
ebourg-guest at moszumanska.debian.org
Wed Dec 18 10:43:40 UTC 2013
Author: ebourg-guest
Date: 2013-12-18 10:43:39 +0000 (Wed, 18 Dec 2013)
New Revision: 17598
Modified:
trunk/maven-archiver/debian/changelog
trunk/maven-archiver/debian/orig-tar.sh
Log:
Use XZ compression for the upstream tarball
Modified: trunk/maven-archiver/debian/changelog
===================================================================
--- trunk/maven-archiver/debian/changelog 2013-12-18 10:37:50 UTC (rev 17597)
+++ trunk/maven-archiver/debian/changelog 2013-12-18 10:43:39 UTC (rev 17598)
@@ -6,6 +6,7 @@
- Standards-Version updated to 3.9.5 (no changes)
* Switch to debhelper level 9
* debian/copyright: Updated to the Copyright Format 1.0
+ * Use XZ compression for the upstream tarball
-- Emmanuel Bourg <ebourg at apache.org> Wed, 18 Dec 2013 11:14:51 +0100
Modified: trunk/maven-archiver/debian/orig-tar.sh
===================================================================
--- trunk/maven-archiver/debian/orig-tar.sh 2013-12-18 10:37:50 UTC (rev 17597)
+++ trunk/maven-archiver/debian/orig-tar.sh 2013-12-18 10:43:39 UTC (rev 17598)
@@ -1,12 +1,12 @@
#!/bin/sh -e
VERSION=$2
-TAR=../maven-archiver_$VERSION.orig.tar.gz
+TAR=../maven-archiver_$VERSION.orig.tar.xz
DIR=maven-archiver-$VERSION
TAG=$(echo "maven-archiver-$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'
More information about the pkg-java-commits
mailing list