From: Michael Tokarev Date: Mon, 4 Mar 2024 18:46:39 +0000 (+0300) Subject: make-release: switch to .xz format by default X-Git-Tag: v7.2.11~49 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f1efd85486a1427ee10ba0a82d246d99f1368632;p=thirdparty%2Fqemu.git make-release: switch to .xz format by default For a long time, we provide two compression formats in the download area, .bz2 and .xz. There's absolutely no reason to provide two in parallel, .xz compresses better, and all the links we use points to .xz. Downstream distributions mostly use .xz too. For the release maintenance providing two formats is definitely extra burden too. Signed-off-by: Michael Tokarev Reviewed-by: Daniel P. Berrangé Reviewed-by: Stefan Hajnoczi (cherry picked from commit 9bc9e95119445d7a430b0fc8b7daf22a3612bbd3) --- diff --git a/scripts/make-release b/scripts/make-release index 05b14ecc95e..43689064fb1 100755 --- a/scripts/make-release +++ b/scripts/make-release @@ -34,5 +34,5 @@ git submodule update --init CryptoPkg/Library/OpensslLib/openssl \ MdeModulePkg/Library/BrotliCustomDecompressLib/brotli) popd -tar --exclude=.git -cjf ${destination}.tar.bz2 ${destination} +tar --exclude=.git -cJf ${destination}.tar.xz ${destination} rm -rf ${destination}