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: Tue, 29 Nov 2022 19:56:24
Message-Id: 1669751771.110a565b9a8bcd4a0af92d97ef43921ebe91a8e5.mgorny@gentoo
1 commit: 110a565b9a8bcd4a0af92d97ef43921ebe91a8e5
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 29 14:03:44 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 29 19:56:11 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=110a565b
7
8 sys-devel/clang-runtime: Bump to 15.0.6
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../clang-runtime/clang-runtime-15.0.6.ebuild | 26 ++++++++++++++++++++++
13 1 file changed, 26 insertions(+)
14
15 diff --git a/sys-devel/clang-runtime/clang-runtime-15.0.6.ebuild b/sys-devel/clang-runtime/clang-runtime-15.0.6.ebuild
16 new file mode 100644
17 index 000000000000..f0ec98510540
18 --- /dev/null
19 +++ b/sys-devel/clang-runtime/clang-runtime-15.0.6.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 +"