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: Thu, 28 Jan 2021 09:04:07
Message-Id: 1611824542.ddd4e76a4a7e8491cab7798ec0cd4ef7dc8320c8.mgorny@gentoo
1 commit: ddd4e76a4a7e8491cab7798ec0cd4ef7dc8320c8
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 28 09:00:49 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 28 09:02:22 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddd4e76a
7
8 sys-devel/llvm-common: Add 13.x live ebuild
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../llvm-common/llvm-common-13.0.0.9999.ebuild | 27 ++++++++++++++++++++++
13 1 file changed, 27 insertions(+)
14
15 diff --git a/sys-devel/llvm-common/llvm-common-13.0.0.9999.ebuild b/sys-devel/llvm-common/llvm-common-13.0.0.9999.ebuild
16 new file mode 100644
17 index 00000000000..53511a0a20e
18 --- /dev/null
19 +++ b/sys-devel/llvm-common/llvm-common-13.0.0.9999.ebuild
20 @@ -0,0 +1,27 @@
21 +# Copyright 1999-2021 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=7
25 +
26 +inherit llvm.org
27 +
28 +DESCRIPTION="Common files shared between multiple slots of LLVM"
29 +HOMEPAGE="https://llvm.org/"
30 +
31 +LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA"
32 +SLOT="0"
33 +KEYWORDS=""
34 +IUSE=""
35 +
36 +RDEPEND="!sys-devel/llvm:0"
37 +
38 +LLVM_COMPONENTS=( llvm/utils/vim )
39 +llvm.org_set_globals
40 +
41 +src_install() {
42 + insinto /usr/share/vim/vimfiles
43 + doins -r */
44 + # some users may find it useful
45 + newdoc README README.vim
46 + dodoc vimrc
47 +}