[kupfer: 4/6] wscript: Use .xz for distribution tarball



commit 003397dc1bdb951174bcde3b1472bcbfa069e8a2
Author: Ulrik Sverdrup <ulrik sverdrup gmail com>
Date:   Sun Feb 26 18:46:02 2012 +0100

    wscript: Use .xz for distribution tarball

 wscript |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/wscript b/wscript
index f44237f..2cb27bc 100644
--- a/wscript
+++ b/wscript
@@ -93,8 +93,8 @@ def gitdist(ctx):
 	os.close(fd)
 	for distfile in EXTRA_DIST:
 		_tarfile_append_as(outname, distfile, os.path.join(basename, distfile))
-	subprocess.call(["gzip", outname])
-	subprocess.call(["sha1sum", outname + ".gz"])
+	subprocess.call(["xz", "-6e", outname])
+	subprocess.call(["sha1sum", outname + ".xz"])
 
 def dist(ctx):
 	"The standard waf dist process"



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]