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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8750F1581F3 for ; Sun, 1 Dec 2024 16:15:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DC895E0801; Sun, 1 Dec 2024 16:15:08 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 0029DE0805 for ; Sun, 1 Dec 2024 16:15:07 +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 303F133BE1D for ; Sun, 1 Dec 2024 16:15:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 624A51E15 for ; Sun, 1 Dec 2024 16:15:05 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1733069665.dc16a37cb65e40fc1e900ec2c27b1dfd14ee6e02.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/bees/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/bees/bees-9999.ebuild X-VCS-Directories: sys-fs/bees/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: dc16a37cb65e40fc1e900ec2c27b1dfd14ee6e02 X-VCS-Branch: master Date: Sun, 1 Dec 2024 16:15:05 +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: 63d744f9-b0eb-47b9-8b59-a18548def015 X-Archives-Hash: 9a14ceec30260606c50cdfe591d40af1 commit: dc16a37cb65e40fc1e900ec2c27b1dfd14ee6e02 Author: Kai Krakow kaishome de> AuthorDate: Sun Dec 1 16:01:09 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Dec 1 16:14:25 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc16a37c sys-fs/bees: update 9999 for latest features Signed-off-by: Kai Krakow kaishome.de> Closes: https://github.com/gentoo/gentoo/pull/39542 Signed-off-by: Sam James gentoo.org> sys-fs/bees/bees-9999.ebuild | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/sys-fs/bees/bees-9999.ebuild b/sys-fs/bees/bees-9999.ebuild index e1d5da90f548..193a07fc4468 100644 --- a/sys-fs/bees/bees-9999.ebuild +++ b/sys-fs/bees/bees-9999.ebuild @@ -30,7 +30,6 @@ ERROR_BTRFS_FS="CONFIG_BTRFS_FS: bees does currently only work with btrfs" PATCHES=( "${FILESDIR}/0001-context-demote-abandoned-toxic-match-to-debug-log-le.patch" - "${FILESDIR}/0002-HACK-crucible-Work-around-kernel-memory-fragmentatio_v2.patch" ) pkg_pretend() { @@ -80,9 +79,21 @@ pkg_pretend() { ewarn fi fi + if kernel_is -lt 5.7; then + ewarn "WARNING: Kernel versions lower than 5.7 are no longer really supported by" + ewarn "bees. While there should be no unexpected data loss, you may experience" + ewarn "severe slowdowns or even system lockups." + ewarn + fi elog "Bees recommends running the latest current kernel for performance and" elog "reliability reasons, see README.md." + elog + elog "NEWS: bees now defaults to a much improved extent-based scanner. It is compatible" + elog "with your existing state database in `\$BEESHOME` but it may start over from the" + elog "beginning. However, it will keep the state of the old scanner, so you can switch" + elog "back and forth. To actually use the new scanner, use scan mode 4 or remove the" + elog "scan mode parameter from your init script. Requires kernel 4.14 or higher!" fi }