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: Sat, 30 Apr 2022 07:35:14
Message-Id: 1651304091.22556541f91333560578ac7523f89c7fdd85ee8f.mgorny@gentoo
1 commit: 22556541f91333560578ac7523f89c7fdd85ee8f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 27 08:47:06 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 30 07:34:51 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22556541
7
8 sys-devel/clang-runtime: Bump to 14.0.3
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../clang-runtime/clang-runtime-14.0.3.ebuild | 26 ++++++++++++++++++++++
13 1 file changed, 26 insertions(+)
14
15 diff --git a/sys-devel/clang-runtime/clang-runtime-14.0.3.ebuild b/sys-devel/clang-runtime/clang-runtime-14.0.3.ebuild
16 new file mode 100644
17 index 000000000000..f0ec98510540
18 --- /dev/null
19 +++ b/sys-devel/clang-runtime/clang-runtime-14.0.3.ebuild
20 @@ -0,0 +1,26 @@
21 +# Copyright 1999-2022 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=8
25 +
26 +inherit multilib-build
27 +
28 +DESCRIPTION="Meta-ebuild for clang runtime libraries"
29 +HOMEPAGE="https://clang.llvm.org/"
30 +
31 +LICENSE="metapackage"
32 +SLOT="$(ver_cut 1-3)"
33 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~ppc-macos ~x64-macos"
34 +IUSE="+compiler-rt libcxx openmp +sanitize"
35 +REQUIRED_USE="sanitize? ( compiler-rt )"
36 +
37 +RDEPEND="
38 + compiler-rt? (
39 + ~sys-libs/compiler-rt-${PV}:${SLOT}[abi_x86_32(+)?,abi_x86_64(+)?]
40 + sanitize? (
41 + ~sys-libs/compiler-rt-sanitizers-${PV}:${SLOT}[abi_x86_32(+)?,abi_x86_64(+)?]
42 + )
43 + )
44 + libcxx? ( >=sys-libs/libcxx-${PV}[${MULTILIB_USEDEP}] )
45 + openmp? ( >=sys-libs/libomp-${PV}[${MULTILIB_USEDEP}] )
46 +"