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: Sat, 25 Sep 2021 07:45:59
Message-Id: 1632555927.a665bc554150c173d8dabf9560f1a7db6b49b38d.mgorny@gentoo
1 commit: a665bc554150c173d8dabf9560f1a7db6b49b38d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 25 07:01:58 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 25 07:45:27 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a665bc55
7
8 sys-devel/clang-common: Bump to 13.0.0_rc4
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 sys-devel/clang-common/Manifest | 1 +
13 .../clang-common/clang-common-13.0.0_rc4.ebuild | 24 ++++++++++++++++++++++
14 2 files changed, 25 insertions(+)
15
16 diff --git a/sys-devel/clang-common/Manifest b/sys-devel/clang-common/Manifest
17 index 1e33a420186..23bb7af47e1 100644
18 --- a/sys-devel/clang-common/Manifest
19 +++ b/sys-devel/clang-common/Manifest
20 @@ -3,3 +3,4 @@ DIST llvmorg-11.1.0.tar.gz 122776532 BLAKE2B ca842ff4afff8f44c82b5e7383962a9c45c
21 DIST llvmorg-12.0.1.tar.gz 134259748 BLAKE2B f41de787bc73ff2edfda1b22cc8602be6f65f37dd9e4c8888533cfa8c3ccdcf4f108aaab9de23ab0ab987966eb160f2a553a0bdff99461e71ddd5bfcd086090d SHA512 6eb0dc18e2c25935fabfdfc48b0114be0939158dfdef7b85b395fe2e71042672446af0e68750aae003c9847d10d1f63316fe95d3df738d18f249174292b1b9e1
22 DIST llvmorg-13.0.0-rc2.tar.gz 147267736 BLAKE2B 153bf7320f2aa911112d366ffc79f7110cb04f135c2a8b176c263f0a75eb768206d9bd462893d45504b0e58aa9e127fdcafb02300eab1666e4616aa654d457dd SHA512 a01baf3eaa02f02af42bfcf6dcf24f166351bf1c09601495617c81e41def23210573bad40a344270f40c5deb881d06863536abac2a6481930766a6a56335fb44
23 DIST llvmorg-13.0.0-rc3.tar.gz 147281901 BLAKE2B 640065a2f32dc48edf084d776cb6b950fae86c2a204999e2eec67f93b57615df40adec19785099b0ef2fe11837c3304794ec3585289a5b5051a557618c63c749 SHA512 1401d5a4d6bb5c930d74b9cfbc8e792872f721aab7d7f0c819e2ba5cf47fb818d160c1f71784fba69827f3c9b7414aa91a585d2b813c1851b4799f9d62cebc46
24 +DIST llvmorg-13.0.0-rc4.tar.gz 147286367 BLAKE2B a43c54b8bb379b0374f99ae07066d7ba4ae2a83dfdb61390101c736f91dc44aa07a88778551aaaf903033562b2a0a863ea6b27392b700c9cddc74e2c7899cad1 SHA512 8ccaaea21ec4fe3c4b4446d3a7cae36a47ed196f407d341da45824bcefefffd3c412c0c5c27670ceaba1458bc53107273f9d3aec2de261b6b82c6d209b45b14d
25
26 diff --git a/sys-devel/clang-common/clang-common-13.0.0_rc4.ebuild b/sys-devel/clang-common/clang-common-13.0.0_rc4.ebuild
27 new file mode 100644
28 index 00000000000..03e4441b91b
29 --- /dev/null
30 +++ b/sys-devel/clang-common/clang-common-13.0.0_rc4.ebuild
31 @@ -0,0 +1,24 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit bash-completion-r1 llvm.org
38 +
39 +DESCRIPTION="Common files shared between multiple slots of clang"
40 +HOMEPAGE="https://llvm.org/"
41 +
42 +LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA"
43 +SLOT="0"
44 +KEYWORDS=""
45 +IUSE=""
46 +
47 +PDEPEND="sys-devel/clang:*"
48 +
49 +LLVM_COMPONENTS=( clang/utils/bash-autocomplete.sh )
50 +llvm.org_set_globals
51 +S=${WORKDIR}/clang/utils
52 +
53 +src_install() {
54 + newbashcomp bash-autocomplete.sh clang
55 +}