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: Mon, 24 Jul 2017 19:04:09
Message-Id: 1500923030.89020e9c2a06947a298467a73b5a289cc6e8faae.mgorny@gentoo
1 commit: 89020e9c2a06947a298467a73b5a289cc6e8faae
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 23 16:51:48 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 24 19:03:50 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89020e9c
7
8 sys-devel/clang-runtime: Branch for 5.0.0 release
9
10 .../clang-runtime/clang-runtime-5.0.9999.ebuild | 26 ++++++++++++++++++++++
11 1 file changed, 26 insertions(+)
12
13 diff --git a/sys-devel/clang-runtime/clang-runtime-5.0.9999.ebuild b/sys-devel/clang-runtime/clang-runtime-5.0.9999.ebuild
14 new file mode 100644
15 index 00000000000..f95b5ba9313
16 --- /dev/null
17 +++ b/sys-devel/clang-runtime/clang-runtime-5.0.9999.ebuild
18 @@ -0,0 +1,26 @@
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 +# Note: keep it matching clang-9999 version
32 +SLOT="5.0.0"
33 +KEYWORDS=""
34 +IUSE="+compiler-rt libcxx openmp +sanitize"
35 +
36 +RDEPEND="
37 + compiler-rt? (
38 + ~sys-libs/compiler-rt-${PV}:${SLOT}
39 + sanitize? ( ~sys-libs/compiler-rt-sanitizers-${PV}:${SLOT} )
40 + )
41 + libcxx? ( >=sys-libs/libcxx-${PV}[${MULTILIB_USEDEP}] )
42 + openmp? ( >=sys-libs/libomp-${PV}[${MULTILIB_USEDEP}] )"
43 +
44 +REQUIRED_USE="sanitize? ( compiler-rt )"