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 F1320158041 for ; Sat, 30 Mar 2024 18:44:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2CB03E2A3B; Sat, 30 Mar 2024 18:44:40 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 0DA7CE2A3B for ; Sat, 30 Mar 2024 18:44:40 +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 3E561343170 for ; Sat, 30 Mar 2024 18:44:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8D99A15E6 for ; Sat, 30 Mar 2024 18:44:37 +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: <1711824193.f61f449ad80c27e5ccaba5c8baa7ff1ee524b235.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: f61f449ad80c27e5ccaba5c8baa7ff1ee524b235 X-VCS-Branch: master Date: Sat, 30 Mar 2024 18:44:37 +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: 1894ce8c-1eaf-44a1-9ad7-6d0f0adf468d X-Archives-Hash: 3872c8a31cd46adb6530af16815de9ba commit: f61f449ad80c27e5ccaba5c8baa7ff1ee524b235 Author: Fabian Groffen gentoo org> AuthorDate: Sat Mar 30 18:43:13 2024 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Sat Mar 30 18:43:13 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=f61f449a scripts/rsync-generation/mksnapshot: also compress using lzip lzip seems to reach a better compression ratio than xz, let's see if we can use it Signed-off-by: Fabian Groffen gentoo.org> scripts/rsync-generation/mksnapshot.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/rsync-generation/mksnapshot.sh b/scripts/rsync-generation/mksnapshot.sh index f932102daa..6fad8b895d 100755 --- a/scripts/rsync-generation/mksnapshot.sh +++ b/scripts/rsync-generation/mksnapshot.sh @@ -48,6 +48,7 @@ COMPRS=( "gz:gzip -c -9" "bz2:bzip2 -c -9" "xz:xz -c -9" + "lz:lzip -c -9" "zstd:zstd -k -f -9" )