diff options
author | 2024-12-18 21:02:35 +0100 | |
---|---|---|
committer | 2025-01-20 03:35:49 +0000 | |
commit | 9d14dc9181a49e1989f875777a4d5fad92dae15c (patch) | |
tree | 116219ae50a4ffb69c5da18df1267bf90a9a53b9 /sys-fs | |
parent | sys-auth/pam_u2f: Stabilize 1.3.2 amd64, #948423 (diff) | |
download | gentoo-9d14dc9181a49e1989f875777a4d5fad92dae15c.tar.gz gentoo-9d14dc9181a49e1989f875777a4d5fad92dae15c.tar.bz2 gentoo-9d14dc9181a49e1989f875777a4d5fad92dae15c.zip |
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 <kai@kaishome.de>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-fs')
-rw-r--r-- | sys-fs/bees/bees-9999.ebuild | 6 |
1 files changed, 5 insertions, 1 deletions
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!" |