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: Wed, 01 Aug 2018 20:53:44
Message-Id: 1533156804.229b4a263e6cdb036cc4738d1e4cd934d7050b86.mgorny@gentoo
1 commit: 229b4a263e6cdb036cc4738d1e4cd934d7050b86
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 1 16:45:44 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 1 20:53:24 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=229b4a26
7
8 sys-devel/clang-runtime: Branch out LLVM 7.0
9
10 .../clang-runtime/clang-runtime-7.0.9999.ebuild | 32 ++++++++++++++++++++++
11 1 file changed, 32 insertions(+)
12
13 diff --git a/sys-devel/clang-runtime/clang-runtime-7.0.9999.ebuild b/sys-devel/clang-runtime/clang-runtime-7.0.9999.ebuild
14 new file mode 100644
15 index 00000000000..dcd22734f00
16 --- /dev/null
17 +++ b/sys-devel/clang-runtime/clang-runtime-7.0.9999.ebuild
18 @@ -0,0 +1,32 @@
19 +# Copyright 1999-2018 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="7.0.0"
33 +KEYWORDS=""
34 +IUSE="+compiler-rt crt 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 + crt? (
42 + || (
43 + sys-libs/netbsd-csu[${MULTILIB_USEDEP}]
44 + sys-freebsd/freebsd-lib[${MULTILIB_USEDEP}]
45 + )
46 + )
47 + libcxx? ( >=sys-libs/libcxx-${PV}[${MULTILIB_USEDEP}] )
48 + openmp? ( >=sys-libs/libomp-${PV}[${MULTILIB_USEDEP}] )"
49 +
50 +REQUIRED_USE="sanitize? ( compiler-rt )"