diff options
author | Florian Schmaus <flow@gentoo.org> | 2023-02-16 08:56:10 +0100 |
---|---|---|
committer | Florian Schmaus <flow@gentoo.org> | 2023-02-16 09:12:49 +0100 |
commit | 637be59d1c1060d9ad864931934af850a0167042 (patch) | |
tree | 318340ac7158d1cd4f72d5bf5277a5504c396416 /x11-misc/rofi | |
parent | x11-misc/rofi: drop 1.7.3-r1 (diff) | |
download | gentoo-637be59d1c1060d9ad864931934af850a0167042.tar.gz gentoo-637be59d1c1060d9ad864931934af850a0167042.tar.bz2 gentoo-637be59d1c1060d9ad864931934af850a0167042.zip |
x11-misc/rofi: remove log message and unset YACC
Closes: https://bugs.gentoo.org/894634
Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'x11-misc/rofi')
-rw-r--r-- | x11-misc/rofi/rofi-1.7.5.ebuild | 14 |
1 files 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 } |