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