[pkg-java] r17277 - trunk/maven-scm/debian
Emmanuel Bourg
ebourg-guest at alioth.debian.org
Tue Sep 24 14:41:03 UTC 2013
Author: ebourg-guest
Date: 2013-09-24 14:41:03 +0000 (Tue, 24 Sep 2013)
New Revision: 17277
Modified:
trunk/maven-scm/debian/changelog
trunk/maven-scm/debian/orig-tar.sh
Log:
Use XZ compression for the upstream tarball
Modified: trunk/maven-scm/debian/changelog
===================================================================
--- trunk/maven-scm/debian/changelog 2013-09-24 10:36:19 UTC (rev 17276)
+++ trunk/maven-scm/debian/changelog 2013-09-24 14:41:03 UTC (rev 17277)
@@ -1,3 +1,10 @@
+maven-scm (1.3-5) UNRELEASED; urgency=low
+
+ * Team upload.
+ * Use XZ compression for the upstream tarball
+
+ -- Emmanuel Bourg <ebourg at apache.org> Tue, 24 Sep 2013 16:34:21 +0200
+
maven-scm (1.3-4) unstable; urgency=low
* Team upload
Modified: trunk/maven-scm/debian/orig-tar.sh
===================================================================
--- trunk/maven-scm/debian/orig-tar.sh 2013-09-24 10:36:19 UTC (rev 17276)
+++ trunk/maven-scm/debian/orig-tar.sh 2013-09-24 14:41:03 UTC (rev 17277)
@@ -1,12 +1,12 @@
#!/bin/sh -e
VERSION=$2
-TAR=../maven-scm_$VERSION.orig.tar.gz
+TAR=../maven-scm_$VERSION.orig.tar.xz
DIR=maven-scm-$VERSION
TAG=maven-scm-$2
svn export https://svn.apache.org/repos/asf/maven/scm/tags/$TAG $DIR
-tar -c -z -f $TAR $DIR
+XZ_OPT=--best tar -c -J -f $TAR $DIR
rm -rf $DIR ../$TAG
# move to directory 'tarballs'
More information about the pkg-java-commits
mailing list