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: Fri, 05 Aug 2022 19:50:11
Message-Id: 1659728988.fe181081d4b3c5a53dfd11dd35b21882b8b558c3.mgorny@gentoo
1 commit: fe181081d4b3c5a53dfd11dd35b21882b8b558c3
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 5 19:48:28 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 5 19:49:48 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe181081
7
8 sys-devel/llvm-common: Add 16.* live ebuilds
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../llvm-common/llvm-common-16.0.0.9999.ebuild | 28 ++++++++++++++++++++++
13 1 file changed, 28 insertions(+)
14
15 diff --git a/sys-devel/llvm-common/llvm-common-16.0.0.9999.ebuild b/sys-devel/llvm-common/llvm-common-16.0.0.9999.ebuild
16 new file mode 100644
17 index 000000000000..df37476f6fbc
18 --- /dev/null
19 +++ b/sys-devel/llvm-common/llvm-common-16.0.0.9999.ebuild
20 @@ -0,0 +1,28 @@
21 +# Copyright 1999-2022 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=8
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 +
35 +RDEPEND="
36 + !sys-devel/llvm:0
37 +"
38 +
39 +LLVM_COMPONENTS=( llvm/utils/vim )
40 +llvm.org_set_globals
41 +
42 +src_install() {
43 + insinto /usr/share/vim/vimfiles
44 + doins -r */
45 + # some users may find it useful
46 + newdoc README README.vim
47 + dodoc vimrc
48 +}