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 75780158020 for ; Sun, 6 Nov 2022 12:17:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A3480E085A; Sun, 6 Nov 2022 12:17:44 +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 8632AE085A for ; Sun, 6 Nov 2022 12:17:44 +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 78A0F3411CD for ; Sun, 6 Nov 2022 12:17:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9DF48622 for ; Sun, 6 Nov 2022 12:17:41 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1667736990.4e63e475293ba270157d0ddc6e9e2adc40ec9b3b.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/teco/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/teco/teco-36_p19940820.ebuild X-VCS-Directories: app-editors/teco/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 4e63e475293ba270157d0ddc6e9e2adc40ec9b3b X-VCS-Branch: master Date: Sun, 6 Nov 2022 12:17:41 +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: a9be20c4-53d3-4e75-9702-a65ebed15a14 X-Archives-Hash: 20c5451a3ac091a2eb3e79093bd4597c commit: 4e63e475293ba270157d0ddc6e9e2adc40ec9b3b Author: Ulrich Müller gentoo org> AuthorDate: Sun Nov 6 12:13:04 2022 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sun Nov 6 12:16:30 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e63e475 app-editors/teco: Disable overzealous CFLAGS Feel free to submit a patch that updates all these declarations and appeases the clang gods. :) Closes: https://bugs.gentoo.org/879041 Signed-off-by: Ulrich Müller gentoo.org> app-editors/teco/teco-36_p19940820.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-editors/teco/teco-36_p19940820.ebuild b/app-editors/teco/teco-36_p19940820.ebuild index d37ed3f84e1f..b3e32b905ec3 100644 --- a/app-editors/teco/teco-36_p19940820.ebuild +++ b/app-editors/teco/teco-36_p19940820.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -37,7 +37,7 @@ src_prepare() { } src_compile() { - append-flags -ansi + append-flags -ansi -Wno-implicit-function-declaration -Wno-implicit-int append-cppflags -D_POSIX_SOURCE emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" }