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: Fri, 01 Dec 2017 23:41:02
Message-Id: 1512171643.f85e0b731e93ce29b78880c5927920b8f177addf.mgorny@gentoo
1 commit: f85e0b731e93ce29b78880c5927920b8f177addf
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 1 10:55:08 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 1 23:40:43 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f85e0b73
7
8 sys-devel/clang-runtime: Bump to 5.0.1_rc2
9
10 .../clang-runtime/clang-runtime-5.0.1_rc2.ebuild | 25 ++++++++++++++++++++++
11 1 file changed, 25 insertions(+)
12
13 diff --git a/sys-devel/clang-runtime/clang-runtime-5.0.1_rc2.ebuild b/sys-devel/clang-runtime/clang-runtime-5.0.1_rc2.ebuild
14 new file mode 100644
15 index 00000000000..013e661624c
16 --- /dev/null
17 +++ b/sys-devel/clang-runtime/clang-runtime-5.0.1_rc2.ebuild
18 @@ -0,0 +1,25 @@
19 +# Copyright 1999-2017 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +
22 +EAPI=6
23 +
24 +inherit multilib-build
25 +
26 +DESCRIPTION="Meta-ebuild for clang runtime libraries"
27 +HOMEPAGE="https://clang.llvm.org/"
28 +SRC_URI=""
29 +
30 +LICENSE="metapackage"
31 +SLOT="${PV%_*}"
32 +KEYWORDS=""
33 +IUSE="+compiler-rt libcxx openmp +sanitize"
34 +
35 +RDEPEND="
36 + compiler-rt? (
37 + ~sys-libs/compiler-rt-${PV}:${SLOT}
38 + sanitize? ( ~sys-libs/compiler-rt-sanitizers-${PV}:${SLOT} )
39 + )
40 + libcxx? ( >=sys-libs/libcxx-${PV}[${MULTILIB_USEDEP}] )
41 + openmp? ( >=sys-libs/libomp-${PV}[${MULTILIB_USEDEP}] )"
42 +
43 +REQUIRED_USE="sanitize? ( compiler-rt )"