commit: 637be59d1c1060d9ad864931934af850a0167042 Author: Florian Schmaus <flow <AT> gentoo <DOT> org> AuthorDate: Thu Feb 16 07:56:10 2023 +0000 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org> CommitDate: Thu Feb 16 08:12:49 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=637be59d
x11-misc/rofi: remove log message and unset YACC Closes: https://bugs.gentoo.org/894634 Signed-off-by: Florian Schmaus <flow <AT> gentoo.org> x11-misc/rofi/rofi-1.7.5.ebuild | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/x11-misc/rofi/rofi-1.7.5.ebuild b/x11-misc/rofi/rofi-1.7.5.ebuild index c51049b5e10e..7f25753ea807 100644 --- a/x11-misc/rofi/rofi-1.7.5.ebuild +++ b/x11-misc/rofi/rofi-1.7.5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -48,6 +48,9 @@ src_configure() { # Doesn't work with reflex, bug #887049 export LEX=flex + # Requires bison, see https://bugs.gentoo.org/894634. + unset YACC + tc-export CC local myeconfargs=( @@ -59,15 +62,6 @@ src_configure() { } pkg_postinst() { - for v in ${REPLACING_VERSIONS}; do - if ver_test "${v}" -lt 1.7.0; then - elog "Rofi 1.7.0 removed the (deprecated) xresources based configuration setup." - elog "If you are still using old configuration setup, please convert it to new format manually." - elog "The new format configuration can be generated by 'rofi -dump-config > ~/.config/rofi/config.rasi'." - elog "For more information, please see https://github.com/davatorium/rofi/releases/tag/1.7.0" - fi - done - xdg_icon_cache_update }
