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: Fri, 05 Aug 2022 19:50:12
Message-Id: 1659728991.dd6144c384755d5b523bd6b096d5fffaf3a714bb.mgorny@gentoo
1 commit: dd6144c384755d5b523bd6b096d5fffaf3a714bb
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 5 19:48:33 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 5 19:49:51 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd6144c3
7
8 sys-devel/clang-common: Add 16.* live ebuilds
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../clang-common/clang-common-16.0.0.9999.ebuild | 24 ++++++++++++++++++++++
13 1 file changed, 24 insertions(+)
14
15 diff --git a/sys-devel/clang-common/clang-common-16.0.0.9999.ebuild b/sys-devel/clang-common/clang-common-16.0.0.9999.ebuild
16 new file mode 100644
17 index 000000000000..1285500128bb
18 --- /dev/null
19 +++ b/sys-devel/clang-common/clang-common-16.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=8
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 +
35 +PDEPEND="
36 + sys-devel/clang:*
37 +"
38 +
39 +LLVM_COMPONENTS=( clang/utils )
40 +llvm.org_set_globals
41 +
42 +src_install() {
43 + newbashcomp bash-autocomplete.sh clang
44 +}