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 4D4D4158009 for ; Wed, 28 Jun 2023 12:39:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 29D5FE08F5; Wed, 28 Jun 2023 12:39:22 +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 02DA0E08A6 for ; Wed, 28 Jun 2023 12:39:21 +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 BD09234100E for ; Wed, 28 Jun 2023 12:39:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 02CBFA9C for ; Wed, 28 Jun 2023 12:39:19 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1687955945.79e74f958fe51c004a3dd3a2d35dc82fa21fc415.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/R/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/R/R-4.3.0.ebuild X-VCS-Directories: dev-lang/R/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 79e74f958fe51c004a3dd3a2d35dc82fa21fc415 X-VCS-Branch: master Date: Wed, 28 Jun 2023 12:39:19 +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: 15da46d8-ef26-488e-a875-4c5f4921afa3 X-Archives-Hash: f474ed78242c92d30ebe4cded5a7183e commit: 79e74f958fe51c004a3dd3a2d35dc82fa21fc415 Author: David Seifert gentoo org> AuthorDate: Wed Jun 28 12:39:05 2023 +0000 Commit: David Seifert gentoo org> CommitDate: Wed Jun 28 12:39:05 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79e74f95 dev-lang/R: ignore false positive '-Wimplicit-function-declaration' Signed-off-by: David Seifert gentoo.org> dev-lang/R/R-4.3.0.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-lang/R/R-4.3.0.ebuild b/dev-lang/R/R-4.3.0.ebuild index e061cc99a441..54725bb77495 100644 --- a/dev-lang/R/R-4.3.0.ebuild +++ b/dev-lang/R/R-4.3.0.ebuild @@ -76,6 +76,9 @@ PATCHES=( "${FILESDIR}"/R-4.3.0-no-gzip-doc.patch ) +# false positive, the linking step fails (as it should) +QA_CONFIG_IMPL_DECL_SKIP=( iconvlist ) + pkg_pretend() { [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp }