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/llvm-common/
Date: Wed, 01 Aug 2018 20:53:36
Message-Id: 1533156797.d202fe46c2e75a3f93d44deab3787d16824d5fc2.mgorny@gentoo
1 commit: d202fe46c2e75a3f93d44deab3787d16824d5fc2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 1 16:35:51 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 1 20:53:17 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d202fe46
7
8 sys-devel/llvm-common: Branch out LLVM 7.0
9
10 sys-devel/llvm-common/llvm-common-7.0.9999.ebuild | 37 +++++++++++++++++++++++
11 1 file changed, 37 insertions(+)
12
13 diff --git a/sys-devel/llvm-common/llvm-common-7.0.9999.ebuild b/sys-devel/llvm-common/llvm-common-7.0.9999.ebuild
14 new file mode 100644
15 index 00000000000..8d23d53951c
16 --- /dev/null
17 +++ b/sys-devel/llvm-common/llvm-common-7.0.9999.ebuild
18 @@ -0,0 +1,37 @@
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 git-r3
25 +
26 +DESCRIPTION="Common files shared between multiple slots of LLVM"
27 +HOMEPAGE="https://llvm.org/"
28 +SRC_URI=""
29 +EGIT_REPO_URI="https://git.llvm.org/git/llvm.git
30 + https://github.com/llvm-mirror/llvm.git"
31 +EGIT_BRANCH="release_70"
32 +
33 +LICENSE="UoI-NCSA"
34 +SLOT="0"
35 +KEYWORDS=""
36 +IUSE=""
37 +
38 +RDEPEND="!sys-devel/llvm:0"
39 +
40 +src_unpack() {
41 + git-r3_fetch
42 + git-r3_checkout '' '' '' utils/vim
43 +}
44 +
45 +src_configure() { :; }
46 +src_compile() { :; }
47 +src_test() { :; }
48 +
49 +src_install() {
50 + insinto /usr/share/vim/vimfiles
51 + doins -r utils/vim/*/
52 + # some users may find it useful
53 + newdoc utils/vim/README README.vim
54 + dodoc utils/vim/vimrc
55 +}