Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/clang-runtime/
Date: Wed, 14 Sep 2022 13:16:13
Message-Id: 1663161367.27079b739b5139451fa3d50dc2624485a6b830f7.mgorny@gentoo
1 commit: 27079b739b5139451fa3d50dc2624485a6b830f7
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 14 13:15:26 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 14 13:16:07 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27079b73
7
8 sys-devel/clang-runtime: Remove obsolete warning
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 sys-devel/clang-runtime/clang-runtime-15.0.0-r1.ebuild | 16 +---------------
13 1 file changed, 1 insertion(+), 15 deletions(-)
14
15 diff --git a/sys-devel/clang-runtime/clang-runtime-15.0.0-r1.ebuild b/sys-devel/clang-runtime/clang-runtime-15.0.0-r1.ebuild
16 index 0540473519b1..f0ec98510540 100644
17 --- a/sys-devel/clang-runtime/clang-runtime-15.0.0-r1.ebuild
18 +++ b/sys-devel/clang-runtime/clang-runtime-15.0.0-r1.ebuild
19 @@ -3,7 +3,7 @@
20
21 EAPI=8
22
23 -inherit multilib-build toolchain-funcs
24 +inherit multilib-build
25
26 DESCRIPTION="Meta-ebuild for clang runtime libraries"
27 HOMEPAGE="https://clang.llvm.org/"
28 @@ -24,17 +24,3 @@ RDEPEND="
29 libcxx? ( >=sys-libs/libcxx-${PV}[${MULTILIB_USEDEP}] )
30 openmp? ( >=sys-libs/libomp-${PV}[${MULTILIB_USEDEP}] )
31 "
32 -
33 -pkg_pretend() {
34 - if tc-is-clang; then
35 - ewarn "You seem to be using clang as a system compiler. As of clang-15,"
36 - ewarn "upstream has turned a few warnings that commonly occur during"
37 - ewarn "configure script runs into errors by default. This causes some"
38 - ewarn "configure tests to start failing, sometimes resulting in silent"
39 - ewarn "breakage, missing functionality or runtime misbehavior. It is"
40 - ewarn "not yet clear whether the change will remain or be reverted."
41 - ewarn
42 - ewarn "For more information, please see:"
43 - ewarn "https://discourse.llvm.org/t/configure-script-breakage-with-the-new-werror-implicit-function-declaration/65213"
44 - fi
45 -}