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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6FE5A158010 for ; Thu, 16 Feb 2023 08:13:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4232DE0837; Thu, 16 Feb 2023 08:13:00 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 24E78E0837 for ; Thu, 16 Feb 2023 08:13:00 +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 0425D340E8B for ; Thu, 16 Feb 2023 08:12:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 971DC8AA for ; Thu, 16 Feb 2023 08:12:57 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1676535169.637be59d1c1060d9ad864931934af850a0167042.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/rofi/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/rofi/rofi-1.7.5.ebuild X-VCS-Directories: x11-misc/rofi/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 637be59d1c1060d9ad864931934af850a0167042 X-VCS-Branch: master Date: Thu, 16 Feb 2023 08:12:57 +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: 748eb2e2-630c-467a-87eb-dd0ca1f81211 X-Archives-Hash: 7812b78c2cdfecbd0c91a2882c745a86 commit: 637be59d1c1060d9ad864931934af850a0167042 Author: Florian Schmaus gentoo org> AuthorDate: Thu Feb 16 07:56:10 2023 +0000 Commit: Florian Schmaus gentoo 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 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 }