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: Thu, 28 Feb 2019 17:42:01
Message-Id: 1551375692.439a6963f58c0a8e4c1d4aa6e3d18105629ee708.mgorny@gentoo
1 commit: 439a6963f58c0a8e4c1d4aa6e3d18105629ee708
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 28 17:11:43 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 28 17:41:32 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=439a6963
7
8 sys-devel/clang-common: Bump to 8.0.0rc3
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-8.0.0_rc3.ebuild | 33 ++++++++++++++++++++++
14 2 files changed, 34 insertions(+)
15
16 diff --git a/sys-devel/clang-common/Manifest b/sys-devel/clang-common/Manifest
17 index af310fec7bf..f69e57268a2 100644
18 --- a/sys-devel/clang-common/Manifest
19 +++ b/sys-devel/clang-common/Manifest
20 @@ -1,3 +1,4 @@
21 DIST cfe-6.0.1.src.tar.xz 11905772 BLAKE2B abb60e9f9827d1d8a24f0aaf8a1d1e32979293cc401258d230f93290e633645747fd0344af189ac7081b06be2cada503364e1e432b37110ade4b3578e40c7605 SHA512 f64ba9290059f6e36fee41c8f32bf483609d31c291fcd2f77d41fecfdf3c8233a5e23b93a1c73fed03683823bd6e72757ed993dd32527de3d5f2b7a64bb031b9
22 DIST cfe-7.0.1.src.tar.xz 12488668 BLAKE2B b80247b5caf81661dfa715d9bf454b8023221bd27ce49b6bd8cd66f40ffe01448e40fb828fbcc64e49f059af7a7c5a95a0737b0b998454ac5c1dd39388150fa6 SHA512 df2f38153ebdc261bcfa6a569567f759bbb1a803192882a9d4eca55a47878166ac9057151a94ad341dc1281136547e4faa783a68070dfde2307b48cacd4b9194
23 DIST cfe-8.0.0rc2.src.tar.xz 12861448 BLAKE2B b4f671b6597b46cb84b241bf602d7e1b12c896b9d3d5857c61a731c9ea0d94dc850c79cbbcb4a56cf2b54f2ffbc81e04f2062c59d4c5b800841e60eccd0dcfe9 SHA512 2bf1e39f5fc7842039b8e20913b3c71fea46b541825c703ce329f3fa01e45cf66c2cd39d9a0f92cf2c38eeb856e42023b087da0765baa0377226534a554c0d9a
24 +DIST cfe-8.0.0rc3.src.tar.xz 12863708 BLAKE2B 1a05ee86b305de0d1e2cda1f89f22405e3c7826214e83b2275d14682374c31d72fd984a2b5d8da7fc906fb95003aee6a00e6e1700f7938f3042df2229fee9c50 SHA512 afc9d7bce817a9d8faf12efb273934539b18471fb4ece8fed56249628b17a302427c4e7ecbfa096287547e01f3823b9b7a1be4bf18417cc1c942776057b90db1
25
26 diff --git a/sys-devel/clang-common/clang-common-8.0.0_rc3.ebuild b/sys-devel/clang-common/clang-common-8.0.0_rc3.ebuild
27 new file mode 100644
28 index 00000000000..cdd11c2dce8
29 --- /dev/null
30 +++ b/sys-devel/clang-common/clang-common-8.0.0_rc3.ebuild
31 @@ -0,0 +1,33 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +inherit bash-completion-r1
38 +
39 +MY_P=cfe-${PV/_/}.src
40 +DESCRIPTION="Common files shared between multiple slots of clang"
41 +HOMEPAGE="https://llvm.org/"
42 +SRC_URI="https://prereleases.llvm.org/${PV/_//}/${MY_P}.tar.xz"
43 +
44 +LICENSE="UoI-NCSA"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos"
47 +IUSE=""
48 +
49 +PDEPEND="sys-devel/clang:*"
50 +
51 +S=${WORKDIR}/${MY_P}
52 +
53 +src_unpack() {
54 + einfo "Unpacking parts of ${MY_P}.tar.xz ..."
55 + tar -xJf "${DISTDIR}/${MY_P}.tar.xz" "${MY_P}/utils/bash-autocomplete.sh" || die
56 +}
57 +
58 +src_configure() { :; }
59 +src_compile() { :; }
60 +src_test() { :; }
61 +
62 +src_install() {
63 + newbashcomp utils/bash-autocomplete.sh clang
64 +}