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/clang-common/
Date: Sun, 06 Feb 2022 15:35:12
Message-Id: 1644161660.18f280c97a9d90141ea69391788ca04f0623b9d5.mgorny@gentoo
1 commit: 18f280c97a9d90141ea69391788ca04f0623b9d5
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 6 15:16:41 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 6 15:34:20 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18f280c9
7
8 sys-devel/clang-common: Add 15.x live ebuild
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../clang-common/clang-common-15.0.0.9999.ebuild | 24 ++++++++++++++++++++++
13 1 file changed, 24 insertions(+)
14
15 diff --git a/sys-devel/clang-common/clang-common-15.0.0.9999.ebuild b/sys-devel/clang-common/clang-common-15.0.0.9999.ebuild
16 new file mode 100644
17 index 000000000000..71768ae561e5
18 --- /dev/null
19 +++ b/sys-devel/clang-common/clang-common-15.0.0.9999.ebuild
20 @@ -0,0 +1,24 @@
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 bash-completion-r1 llvm.org
27 +
28 +DESCRIPTION="Common files shared between multiple slots of clang"
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 +PDEPEND="sys-devel/clang:*"
37 +
38 +LLVM_COMPONENTS=( clang/utils/bash-autocomplete.sh )
39 +llvm.org_set_globals
40 +S=${WORKDIR}/clang/utils
41 +
42 +src_install() {
43 + newbashcomp bash-autocomplete.sh clang
44 +}