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: dev-python/clang-python/
Date: Sat, 11 Sep 2021 07:26:04
Message-Id: 1631345121.344a49cb3786c11c5963bfcfd058362899b3ccb2.mgorny@gentoo
1 commit: 344a49cb3786c11c5963bfcfd058362899b3ccb2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 11 07:25:21 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 11 07:25:21 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=344a49cb
7
8 dev-python/clang-python: Remove 13.0.0_rc1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/clang-python/Manifest | 1 -
13 .../clang-python/clang-python-13.0.0_rc1.ebuild | 41 ----------------------
14 2 files changed, 42 deletions(-)
15
16 diff --git a/dev-python/clang-python/Manifest b/dev-python/clang-python/Manifest
17 index e8e78e47c69..3b45de6a465 100644
18 --- a/dev-python/clang-python/Manifest
19 +++ b/dev-python/clang-python/Manifest
20 @@ -1,5 +1,4 @@
21 DIST llvmorg-10.0.1.tar.gz 120880730 BLAKE2B 30f19f56c4d1f6abcda5fec76256219d1e3c8a6ff1a1f152f94bfe362c07884339fe571ff7fe903ed3b3deb150b2fa868c387887a0dea2930dc08b81db71a5b1 SHA512 48078fff9293a87f1a973f3348f79506f04c3da774295f5eb67d74dd2d1aa94f0973f8ced3f4ab9e8339902071f82c603b43d5608ad7227046c4da769c5d2151
22 DIST llvmorg-11.1.0.tar.gz 122776532 BLAKE2B ca842ff4afff8f44c82b5e7383962a9c45ca1c93b64fa4c6ebcd70a1d3849dbad2b8e4e24fba02d144c6266d7fab3607ebc6999b28c229cb35256cf40f26a985 SHA512 9a8ce022a935eed42fa71a224f2a207122aadcbef58ee855fdb4825f879e7d028e4dcff22c19b9d336db1c8bf63fb84372d44981acf84615f757e54306c92b81
23 DIST llvmorg-12.0.1.tar.gz 134259748 BLAKE2B f41de787bc73ff2edfda1b22cc8602be6f65f37dd9e4c8888533cfa8c3ccdcf4f108aaab9de23ab0ab987966eb160f2a553a0bdff99461e71ddd5bfcd086090d SHA512 6eb0dc18e2c25935fabfdfc48b0114be0939158dfdef7b85b395fe2e71042672446af0e68750aae003c9847d10d1f63316fe95d3df738d18f249174292b1b9e1
24 -DIST llvmorg-13.0.0-rc1.tar.gz 147235597 BLAKE2B 089fed119dee8a16f278cebb13808bd5a95629cc87ebee3050225cc041b78fee51acacc5bcc913d4a99e830bfe5774b19a04a845293c5087dd2a8c9d94d2fde9 SHA512 6e307e2c2dcb7ff41d11ee29d69f41c0ef55f200999847a3a924a2e773fc9c2160015746789af8b723c628bd232f97fce63370209bd0065491d80b0cc0017e85
25 DIST llvmorg-13.0.0-rc2.tar.gz 147267736 BLAKE2B 153bf7320f2aa911112d366ffc79f7110cb04f135c2a8b176c263f0a75eb768206d9bd462893d45504b0e58aa9e127fdcafb02300eab1666e4616aa654d457dd SHA512 a01baf3eaa02f02af42bfcf6dcf24f166351bf1c09601495617c81e41def23210573bad40a344270f40c5deb881d06863536abac2a6481930766a6a56335fb44
26
27 diff --git a/dev-python/clang-python/clang-python-13.0.0_rc1.ebuild b/dev-python/clang-python/clang-python-13.0.0_rc1.ebuild
28 deleted file mode 100644
29 index 921f7735340..00000000000
30 --- a/dev-python/clang-python/clang-python-13.0.0_rc1.ebuild
31 +++ /dev/null
32 @@ -1,41 +0,0 @@
33 -# Copyright 1999-2021 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -
38 -PYTHON_COMPAT=( python3_{7..10} )
39 -inherit llvm.org python-r1
40 -
41 -DESCRIPTION="Python bindings for sys-devel/clang"
42 -HOMEPAGE="https://llvm.org/"
43 -
44 -LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA"
45 -SLOT="0"
46 -KEYWORDS=""
47 -IUSE="test"
48 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
49 -RESTRICT="!test? ( test )"
50 -
51 -# The module is opening libclang.so directly, and doing some blasphemy
52 -# on top of it.
53 -RDEPEND="
54 - >=sys-devel/clang-${PV}:*
55 - !sys-devel/llvm:0[clang(-),python(-)]
56 - !sys-devel/clang:0[python(-)]
57 - ${PYTHON_DEPS}"
58 -DEPEND="${RDEPEND}"
59 -
60 -LLVM_COMPONENTS=( clang/bindings/python )
61 -llvm.org_set_globals
62 -
63 -python_test() {
64 - "${EPYTHON}" -m unittest discover -v || die "Tests fail with ${EPYTHON}"
65 -}
66 -
67 -src_test() {
68 - python_foreach_impl python_test
69 -}
70 -
71 -src_install() {
72 - python_foreach_impl python_domodule clang
73 -}