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 D87F8158095 for ; Wed, 28 Sep 2022 20:17:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2ADF0E0903; Wed, 28 Sep 2022 20:17:55 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0D11CE0903 for ; Wed, 28 Sep 2022 20:17:55 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 090C23410EE for ; Wed, 28 Sep 2022 20:17:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 61F025C0 for ; Wed, 28 Sep 2022 20:17:52 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1664396260.00787a48517bca5dbf90d8b7be3289802f3cfe65.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/ncurses/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/ncurses/ncurses-6.3_p20220924-r1.ebuild sys-libs/ncurses/ncurses-6.3_p20220924.ebuild X-VCS-Directories: sys-libs/ncurses/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 00787a48517bca5dbf90d8b7be3289802f3cfe65 X-VCS-Branch: master Date: Wed, 28 Sep 2022 20:17:52 +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: d53b41a5-c308-4282-b977-054ab0b16d25 X-Archives-Hash: a3ed7851cfd46ecfa27cb98a94755a3b commit: 00787a48517bca5dbf90d8b7be3289802f3cfe65 Author: Sam James gentoo org> AuthorDate: Wed Sep 28 20:16:36 2022 +0000 Commit: Sam James gentoo org> CommitDate: Wed Sep 28 20:17:40 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00787a48 sys-libs/ncurses: avoid egrep/fgrep deprecation warnings Export EGREP & FGREP to avoid large configure noise (as we run it repeatedly). Bug: https://lists.gnu.org/archive/html/bug-ncurses/2022-09/msg00024.html Signed-off-by: Sam James gentoo.org> sys-libs/ncurses/ncurses-6.3_p20220924-r1.ebuild | 4 ++++ sys-libs/ncurses/ncurses-6.3_p20220924.ebuild | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/sys-libs/ncurses/ncurses-6.3_p20220924-r1.ebuild b/sys-libs/ncurses/ncurses-6.3_p20220924-r1.ebuild index 3f93d46bd575..f9e5093a7eb1 100644 --- a/sys-libs/ncurses/ncurses-6.3_p20220924-r1.ebuild +++ b/sys-libs/ncurses/ncurses-6.3_p20220924-r1.ebuild @@ -250,6 +250,10 @@ do_configure() { mkdir "${BUILD_DIR}/${target}" || die cd "${BUILD_DIR}/${target}" || die + # https://lists.gnu.org/archive/html/bug-ncurses/2022-09/msg00024.html + export EGREP="grep -E" + export FGREP="grep -F" + local conf=( # We need the basic terminfo files in /etc, bug #37026. We will # add '--with-terminfo-dirs' and then populate /etc/terminfo in diff --git a/sys-libs/ncurses/ncurses-6.3_p20220924.ebuild b/sys-libs/ncurses/ncurses-6.3_p20220924.ebuild index 4fcb647e26d7..9a7f05e0fcb6 100644 --- a/sys-libs/ncurses/ncurses-6.3_p20220924.ebuild +++ b/sys-libs/ncurses/ncurses-6.3_p20220924.ebuild @@ -250,6 +250,10 @@ do_configure() { mkdir "${BUILD_DIR}/${target}" || die cd "${BUILD_DIR}/${target}" || die + # https://lists.gnu.org/archive/html/bug-ncurses/2022-09/msg00024.html + export EGREP="grep -E" + export FGREP="grep -F" + local conf=( # We need the basic terminfo files in /etc, bug #37026. We will # add '--with-terminfo-dirs' and then populate /etc/terminfo in