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: Sun, 06 Feb 2022 15:35:11
Message-Id: 1644161657.30f64b6f188e74c328f89d8c5b3f7c45ec7b3f76.mgorny@gentoo
1 commit: 30f64b6f188e74c328f89d8c5b3f7c45ec7b3f76
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 6 15:16:38 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 6 15:34:17 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30f64b6f
7
8 sys-devel/llvm-common: Add 15.x live ebuild
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../llvm-common/llvm-common-15.0.0.9999.ebuild | 27 ++++++++++++++++++++++
13 1 file changed, 27 insertions(+)
14
15 diff --git a/sys-devel/llvm-common/llvm-common-15.0.0.9999.ebuild b/sys-devel/llvm-common/llvm-common-15.0.0.9999.ebuild
16 new file mode 100644
17 index 000000000000..fdadac15eda6
18 --- /dev/null
19 +++ b/sys-devel/llvm-common/llvm-common-15.0.0.9999.ebuild
20 @@ -0,0 +1,27 @@
21 +# Copyright 1999-2022 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 +}