From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 944E3158041 for ; Sun, 31 Mar 2024 08:53:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D4F92E2ACD; Sun, 31 Mar 2024 08:53:23 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AA1A1E2ACD for ; Sun, 31 Mar 2024 08:53:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 91E61343103 for ; Sun, 31 Mar 2024 08:53:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E80051618 for ; Sun, 31 Mar 2024 08:53:20 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1711875095.29055666a0ad23b72e20081f40811b5202b445c7.grobian@gentoo> Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/rsync-generation/ X-VCS-Repository: repo/proj/prefix X-VCS-Files: scripts/rsync-generation/mksnapshot.sh X-VCS-Directories: scripts/rsync-generation/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 29055666a0ad23b72e20081f40811b5202b445c7 X-VCS-Branch: master Date: Sun, 31 Mar 2024 08:53:20 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 351287d1-46e2-464f-9e80-232d2594551b X-Archives-Hash: 148e8961fab80862f0f99d7fcfd6be90 commit: 29055666a0ad23b72e20081f40811b5202b445c7 Author: Fabian Groffen gentoo org> AuthorDate: Sun Mar 31 08:51:35 2024 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Sun Mar 31 08:51:35 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=29055666 scripts/rsync-generation/mksnapshot: drop gzip snapshot gzip compresses to around 75MB which is much higher than bzip2's 57MB The gzip snapshot was historically never used ever by the bootstrap script, it always used and hardcoded bz2. So don't bother creating a gzip variant. Signed-off-by: Fabian Groffen gentoo.org> scripts/rsync-generation/mksnapshot.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/rsync-generation/mksnapshot.sh b/scripts/rsync-generation/mksnapshot.sh index 66ad8a91ed..2fbdcfae0f 100755 --- a/scripts/rsync-generation/mksnapshot.sh +++ b/scripts/rsync-generation/mksnapshot.sh @@ -45,7 +45,6 @@ popd > /dev/null || exit 1 rm -Rf "${TMPDIR}" COMPRS=( - "gz:gzip -c -9" "bz2:bzip2 -c -9" "xz:xz -c -9" "lz:lzip -c -9"