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: Thu, 28 Feb 2019 17:41:56
Message-Id: 1551375697.9018eb731cdb33f71ef2bcff99f2c655cc5e0abd.mgorny@gentoo
1 commit: 9018eb731cdb33f71ef2bcff99f2c655cc5e0abd
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 28 17:11:54 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 28 17:41:37 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9018eb73
7
8 sys-devel/clang-runtime: Bump to 8.0.0rc3
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../clang-runtime/clang-runtime-8.0.0_rc3.ebuild | 31 ++++++++++++++++++++++
13 1 file changed, 31 insertions(+)
14
15 diff --git a/sys-devel/clang-runtime/clang-runtime-8.0.0_rc3.ebuild b/sys-devel/clang-runtime/clang-runtime-8.0.0_rc3.ebuild
16 new file mode 100644
17 index 00000000000..97c0d55cf2a
18 --- /dev/null
19 +++ b/sys-devel/clang-runtime/clang-runtime-8.0.0_rc3.ebuild
20 @@ -0,0 +1,31 @@
21 +# Copyright 1999-2019 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
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="${PV%_*}"
34 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos"
35 +IUSE="+compiler-rt crt libcxx openmp +sanitize"
36 +
37 +RDEPEND="
38 + compiler-rt? (
39 + ~sys-libs/compiler-rt-${PV}:${SLOT}
40 + sanitize? ( ~sys-libs/compiler-rt-sanitizers-${PV}:${SLOT} )
41 + )
42 + crt? (
43 + || (
44 + sys-libs/netbsd-csu[${MULTILIB_USEDEP}]
45 + sys-freebsd/freebsd-lib[${MULTILIB_USEDEP}]
46 + )
47 + )
48 + libcxx? ( >=sys-libs/libcxx-${PV}[${MULTILIB_USEDEP}] )
49 + openmp? ( >=sys-libs/libomp-${PV}[${MULTILIB_USEDEP}] )"
50 +
51 +REQUIRED_USE="sanitize? ( compiler-rt )"