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-common/
Date: Wed, 01 Aug 2018 20:53:38
Message-Id: 1533156799.9d365f880dcfb1909fced669fb3b3141f804a431.mgorny@gentoo
1 commit: 9d365f880dcfb1909fced669fb3b3141f804a431
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 1 16:40:11 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 1 20:53:19 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d365f88
7
8 sys-devel/clang-common: Branch out LLVM 7.0
9
10 .../clang-common/clang-common-7.0.9999.ebuild | 33 ++++++++++++++++++++++
11 1 file changed, 33 insertions(+)
12
13 diff --git a/sys-devel/clang-common/clang-common-7.0.9999.ebuild b/sys-devel/clang-common/clang-common-7.0.9999.ebuild
14 new file mode 100644
15 index 00000000000..da74c699fbb
16 --- /dev/null
17 +++ b/sys-devel/clang-common/clang-common-7.0.9999.ebuild
18 @@ -0,0 +1,33 @@
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 bash-completion-r1 git-r3
25 +
26 +DESCRIPTION="Common files shared between multiple slots of clang"
27 +HOMEPAGE="https://llvm.org/"
28 +SRC_URI=""
29 +EGIT_REPO_URI="https://git.llvm.org/git/clang.git
30 + https://github.com/llvm-mirror/clang.git"
31 +EGIT_BRANCH="release_70"
32 +
33 +LICENSE="UoI-NCSA"
34 +SLOT="0"
35 +KEYWORDS=""
36 +IUSE=""
37 +
38 +PDEPEND="sys-devel/clang:*"
39 +
40 +src_unpack() {
41 + git-r3_fetch
42 + git-r3_checkout '' '' '' utils/bash-autocomplete.sh
43 +}
44 +
45 +src_configure() { :; }
46 +src_compile() { :; }
47 +src_test() { :; }
48 +
49 +src_install() {
50 + newbashcomp utils/bash-autocomplete.sh clang
51 +}