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 4BD51158094 for ; Mon, 19 Sep 2022 10:40:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B62E2E08A2; Mon, 19 Sep 2022 10:40:09 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 5BC2BE08A0 for ; Mon, 19 Sep 2022 10:40:09 +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 7BBBE340DBD for ; Mon, 19 Sep 2022 10:40:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E5C505F6 for ; Mon, 19 Sep 2022 10:40:03 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1663583998.8b7236e6c17a74481583c476e4f031f09de6cf1c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/clang-runtime/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/clang-runtime/clang-runtime-15.0.0.9999.ebuild X-VCS-Directories: sys-devel/clang-runtime/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 8b7236e6c17a74481583c476e4f031f09de6cf1c X-VCS-Branch: master Date: Mon, 19 Sep 2022 10:40:03 +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: 0d862eec-5a70-4796-94bb-6bf288826cec X-Archives-Hash: 842fc2eb8df51d5b21496f461fecf43e commit: 8b7236e6c17a74481583c476e4f031f09de6cf1c Author: Michał Górny gentoo org> AuthorDate: Mon Sep 19 08:42:29 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Sep 19 10:39:58 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b7236e6 sys-devel/clang-runtime: Remove clang warning from 15.0.0.9999 Signed-off-by: Michał Górny gentoo.org> sys-devel/clang-runtime/clang-runtime-15.0.0.9999.ebuild | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/sys-devel/clang-runtime/clang-runtime-15.0.0.9999.ebuild b/sys-devel/clang-runtime/clang-runtime-15.0.0.9999.ebuild index c45769b02981..e4ff9326ddcb 100644 --- a/sys-devel/clang-runtime/clang-runtime-15.0.0.9999.ebuild +++ b/sys-devel/clang-runtime/clang-runtime-15.0.0.9999.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit multilib-build toolchain-funcs +inherit multilib-build DESCRIPTION="Meta-ebuild for clang runtime libraries" HOMEPAGE="https://clang.llvm.org/" @@ -25,17 +25,3 @@ RDEPEND=" libcxx? ( >=sys-libs/libcxx-${PV}[${MULTILIB_USEDEP}] ) openmp? ( >=sys-libs/libomp-${PV}[${MULTILIB_USEDEP}] ) " - -pkg_pretend() { - if tc-is-clang; then - ewarn "You seem to be using clang as a system compiler. As of clang-15," - ewarn "upstream has turned a few warnings that commonly occur during" - ewarn "configure script runs into errors by default. This causes some" - ewarn "configure tests to start failing, sometimes resulting in silent" - ewarn "breakage, missing functionality or runtime misbehavior. It is" - ewarn "not yet clear whether the change will remain or be reverted." - ewarn - ewarn "For more information, please see:" - ewarn "https://discourse.llvm.org/t/configure-script-breakage-with-the-new-werror-implicit-function-declaration/65213" - fi -}