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, 28 Aug 2018 16:00:54
Message-Id: 1535472038.82ad74063afea6c189725cf551fbdec506d86fa2.mgorny@gentoo
1 commit: 82ad74063afea6c189725cf551fbdec506d86fa2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 28 15:41:04 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 28 16:00:38 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82ad7406
7
8 sys-devel/clang-runtime: Bump to 7.0.0rc2
9
10 .../clang-runtime/clang-runtime-7.0.0_rc2.ebuild | 31 ++++++++++++++++++++++
11 1 file changed, 31 insertions(+)
12
13 diff --git a/sys-devel/clang-runtime/clang-runtime-7.0.0_rc2.ebuild b/sys-devel/clang-runtime/clang-runtime-7.0.0_rc2.ebuild
14 new file mode 100644
15 index 00000000000..0a2d24887e0
16 --- /dev/null
17 +++ b/sys-devel/clang-runtime/clang-runtime-7.0.0_rc2.ebuild
18 @@ -0,0 +1,31 @@
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 +SLOT="${PV%_*}"
32 +KEYWORDS=""
33 +IUSE="+compiler-rt crt 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 + crt? (
41 + || (
42 + sys-libs/netbsd-csu[${MULTILIB_USEDEP}]
43 + sys-freebsd/freebsd-lib[${MULTILIB_USEDEP}]
44 + )
45 + )
46 + libcxx? ( >=sys-libs/libcxx-${PV}[${MULTILIB_USEDEP}] )
47 + openmp? ( >=sys-libs/libomp-${PV}[${MULTILIB_USEDEP}] )"
48 +
49 +REQUIRED_USE="sanitize? ( compiler-rt )"