gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnurl] 59/208: maketgz: switch to xz instead of lzma


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 59/208: maketgz: switch to xz instead of lzma
Date: Wed, 09 Aug 2017 17:34:16 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to annotated tag gnurl-7.55.0
in repository gnurl.

commit 0537238cbf9e731a1dcb864bbf4b2093e2c51703
Author: Daniel Stenberg <address@hidden>
AuthorDate: Wed Jun 21 22:40:55 2017 +0200

    maketgz: switch to xz instead of lzma
    
    The compressed output size seems to be a tad bit smaller, but generally
    xz seems more preferred these days and is used directly by for example
    gentoo instead of bz2.
    
    "Users of LZMA Utils should move to XZ Utils" =>
    https://tukaani.org/lzma/
    
    Closes #1604
---
 maketgz | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/maketgz b/maketgz
index f655ea365..119ba8372 100755
--- a/maketgz
+++ b/maketgz
@@ -171,12 +171,12 @@ gzip -dc $targz | bzip2 --best > $bzip2
 
 ############################################################################
 #
-# Now make an lzma archive from the tar.gz original
+# Now make an xz archive from the tar.gz original
 #
 
-lzma="curl-$version.tar.lzma"
-echo "Generating $lzma"
-gzip -dc $targz | lzma --best - > $lzma
+xz="curl-$version.tar.xz"
+echo "Generating $xz"
+gzip -dc $targz | xz -9e - > $xz
 
 ############################################################################
 #
@@ -202,7 +202,7 @@ makezip
 echo "------------------"
 echo "maketgz report:"
 echo ""
-ls -l $targz $bzip2 $zip $lzma
+ls -l $targz $bzip2 $zip $xz
 
 echo "Run this:"
-echo "gpg -b -a $targz && gpg -b -a $bzip2 && gpg -b -a $zip && gpg -b -a 
$lzma"
+echo "gpg -b -a $targz && gpg -b -a $bzip2 && gpg -b -a $zip && gpg -b -a $xz"

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]