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, 03 Jan 2018 22:22:20
Message-Id: 1515018094.30941b64416340b5188c2aab7eed7a99b48ea1e2.mgorny@gentoo
1 commit: 30941b64416340b5188c2aab7eed7a99b48ea1e2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 3 20:16:19 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 3 22:21:34 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30941b64
7
8 sys-devel/llvm-common: Add a live ebuild for 6.0 branch
9
10 sys-devel/llvm-common/llvm-common-6.0.9999.ebuild | 37 +++++++++++++++++++++++
11 1 file changed, 37 insertions(+)
12
13 diff --git a/sys-devel/llvm-common/llvm-common-6.0.9999.ebuild b/sys-devel/llvm-common/llvm-common-6.0.9999.ebuild
14 new file mode 100644
15 index 00000000000..e1149b77043
16 --- /dev/null
17 +++ b/sys-devel/llvm-common/llvm-common-6.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_60"
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 +}