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 6B5BB15813A for ; Mon, 20 Jan 2025 03:36:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 69FECE0794; Mon, 20 Jan 2025 03:36:36 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F21F7E0794 for ; Mon, 20 Jan 2025 03:36:35 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AC54F33BF29 for ; Mon, 20 Jan 2025 03:36:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2BEF8E65 for ; Mon, 20 Jan 2025 03:36:33 +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: <1737344149.9d14dc9181a49e1989f875777a4d5fad92dae15c.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: 9d14dc9181a49e1989f875777a4d5fad92dae15c X-VCS-Branch: master Date: Mon, 20 Jan 2025 03:36:33 +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: 8a3926f8-9643-4780-8231-20f38ecdf44b X-Archives-Hash: 936117aad821944fba823c9e224ff2f3 commit: 9d14dc9181a49e1989f875777a4d5fad92dae15c Author: Kai Krakow kaishome de> AuthorDate: Wed Dec 18 20:02:35 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Jan 20 03:35:49 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d14dc91 sys-fs/bees: update 9999 Fixes an issue with messages generated for the user and moves the recommendations to pkg_postinst. Signed-off-by: Kai Krakow kaishome.de> Signed-off-by: Sam James gentoo.org> sys-fs/bees/bees-9999.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sys-fs/bees/bees-9999.ebuild b/sys-fs/bees/bees-9999.ebuild index 193a07fc4468..88f0faef9827 100644 --- a/sys-fs/bees/bees-9999.ebuild +++ b/sys-fs/bees/bees-9999.ebuild @@ -85,12 +85,16 @@ pkg_pretend() { ewarn "severe slowdowns or even system lockups." ewarn fi + fi +} +pkg_postinst() { + if [[ ${MERGE_TYPE} != buildonly ]]; then 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 "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!"