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, 30 Nov 2021 10:01:41
Message-Id: 1638266484.be1a2f5ffa03322dcc62c80d951a5dbf14545efc.mgorny@gentoo
1 commit: be1a2f5ffa03322dcc62c80d951a5dbf14545efc
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 30 09:44:51 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 30 10:01:24 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be1a2f5f
7
8 sys-devel/clang-runtime: Bump to 13.0.1_rc1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../clang-runtime/clang-runtime-13.0.1_rc1.ebuild | 25 ++++++++++++++++++++++
13 1 file changed, 25 insertions(+)
14
15 diff --git a/sys-devel/clang-runtime/clang-runtime-13.0.1_rc1.ebuild b/sys-devel/clang-runtime/clang-runtime-13.0.1_rc1.ebuild
16 new file mode 100644
17 index 000000000000..218cdb1426f6
18 --- /dev/null
19 +++ b/sys-devel/clang-runtime/clang-runtime-13.0.1_rc1.ebuild
20 @@ -0,0 +1,25 @@
21 +# Copyright 1999-2021 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=7
25 +
26 +inherit multilib-build
27 +
28 +DESCRIPTION="Meta-ebuild for clang runtime libraries"
29 +HOMEPAGE="https://clang.llvm.org/"
30 +SRC_URI=""
31 +
32 +LICENSE="metapackage"
33 +SLOT="$(ver_cut 1-3)"
34 +KEYWORDS=""
35 +IUSE="+compiler-rt libcxx openmp +sanitize"
36 +REQUIRED_USE="sanitize? ( compiler-rt )"
37 +PROPERTIES="live"
38 +
39 +RDEPEND="
40 + compiler-rt? (
41 + ~sys-libs/compiler-rt-${PV}:${SLOT}
42 + sanitize? ( ~sys-libs/compiler-rt-sanitizers-${PV}:${SLOT} )
43 + )
44 + libcxx? ( >=sys-libs/libcxx-${PV}[${MULTILIB_USEDEP}] )
45 + openmp? ( >=sys-libs/libomp-${PV}[${MULTILIB_USEDEP}] )"