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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1AA7E1382C5 for ; Mon, 4 Jan 2021 21:48:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 56796E08E8; Mon, 4 Jan 2021 21:48:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 39A5CE08E8 for ; Mon, 4 Jan 2021 21:48:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2ED4C341171 for ; Mon, 4 Jan 2021 21:48:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AF022332 for ; Mon, 4 Jan 2021 21:48:40 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1609796917.7e47fbe82f079526433889b021aded8d6c1e57a2.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/rofi/files/, x11-misc/rofi/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/rofi/files/rofi-1.6.1-autoconf-2.70.patch x11-misc/rofi/rofi-1.6.1.ebuild X-VCS-Directories: x11-misc/rofi/files/ x11-misc/rofi/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 7e47fbe82f079526433889b021aded8d6c1e57a2 X-VCS-Branch: master Date: Mon, 4 Jan 2021 21:48:40 +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: 3b5a7ec0-64d2-43c4-9a82-fab9bde184b7 X-Archives-Hash: e4bb9a6d462dc72206236a5d95efe799 commit: 7e47fbe82f079526433889b021aded8d6c1e57a2 Author: Lars Wendler gentoo org> AuthorDate: Mon Jan 4 21:48:18 2021 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon Jan 4 21:48:37 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e47fbe8 x11-misc/rofi: Fixed build with ~sys-devel/autoconf-2.70 Closes: https://bugs.gentoo.org/749864 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Lars Wendler gentoo.org> x11-misc/rofi/files/rofi-1.6.1-autoconf-2.70.patch | 30 ++++++++++++++++++++++ x11-misc/rofi/rofi-1.6.1.ebuild | 12 +++++---- 2 files changed, 37 insertions(+), 5 deletions(-) diff --git a/x11-misc/rofi/files/rofi-1.6.1-autoconf-2.70.patch b/x11-misc/rofi/files/rofi-1.6.1-autoconf-2.70.patch new file mode 100644 index 00000000000..d2ac9510d3c --- /dev/null +++ b/x11-misc/rofi/files/rofi-1.6.1-autoconf-2.70.patch @@ -0,0 +1,30 @@ +From 7e426c597539c1b6f33c34300b84d2074f94c9b6 Mon Sep 17 00:00:00 2001 +From: Lars Wendler +Date: Mon, 4 Jan 2021 22:27:37 +0100 +Subject: [PATCH] configure.ac: Remove argument from AC_PROG_LEX + +autoconf-2.70 only accepts "yywrap" and "noyywrap" as arguments to +AC_PROG_LEX. Calling it with no arguments will trigger the old behavior +from autoconf-2.69. + +Signed-off-by: Lars Wendler +--- + configure.ac | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/configure.ac b/configure.ac +index e0968b65..03dc1d2f 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -7,7 +7,7 @@ AH_BOTTOM([#include "gitconfig.h"]) + dnl --------------------------------------------------------------------- + dnl Lex & Bison language parser. + dnl --------------------------------------------------------------------- +-AC_PROG_LEX([flex]) ++AC_PROG_LEX + AC_PROG_YACC + + +-- +2.30.0 + diff --git a/x11-misc/rofi/rofi-1.6.1.ebuild b/x11-misc/rofi/rofi-1.6.1.ebuild index 44eda2ab0a9..297c2f078d6 100644 --- a/x11-misc/rofi/rofi-1.6.1.ebuild +++ b/x11-misc/rofi/rofi-1.6.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -41,19 +41,21 @@ DEPEND=" PATCHES=( "${FILESDIR}"/${PN}-0.15.12-Werror.patch "${FILESDIR}"/${PN}-1.5.0-gtk-settings-test.patch + "${FILESDIR}"/${PN}-1.6.1-autoconf-2.70.patch ) src_prepare() { default - eautoreconf } src_configure() { tc-export CC - econf \ - $(use_enable drun) \ - $(use_enable test check) \ + local myeconfargs=( + $(use_enable drun) + $(use_enable test check) $(use_enable windowmode) + ) + econf "${myeconfargs[@]}" }