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: Thu, 03 Feb 2022 15:45:59
Message-Id: 1643903049.aebc276fd50aef3e335cb1529fe9a306d8c21647.mgorny@gentoo
1 commit: aebc276fd50aef3e335cb1529fe9a306d8c21647
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 3 15:39:22 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 3 15:44:09 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aebc276f
7
8 dev-python/clang-python: Remove 13.0.1.9999
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../clang-python/clang-python-13.0.1.9999.ebuild | 41 ----------------------
13 1 file changed, 41 deletions(-)
14
15 diff --git a/dev-python/clang-python/clang-python-13.0.1.9999.ebuild b/dev-python/clang-python/clang-python-13.0.1.9999.ebuild
16 deleted file mode 100644
17 index fb6456619641..000000000000
18 --- a/dev-python/clang-python/clang-python-13.0.1.9999.ebuild
19 +++ /dev/null
20 @@ -1,41 +0,0 @@
21 -# Copyright 1999-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -PYTHON_COMPAT=( python3_{8..10} )
27 -inherit llvm.org python-r1
28 -
29 -DESCRIPTION="Python bindings for sys-devel/clang"
30 -HOMEPAGE="https://llvm.org/"
31 -
32 -LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA"
33 -SLOT="0"
34 -KEYWORDS=""
35 -IUSE="test"
36 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
37 -RESTRICT="!test? ( test )"
38 -
39 -# The module is opening libclang.so directly, and doing some blasphemy
40 -# on top of it.
41 -RDEPEND="
42 - >=sys-devel/clang-${PV}:*
43 - !sys-devel/llvm:0[clang(-),python(-)]
44 - !sys-devel/clang:0[python(-)]
45 - ${PYTHON_DEPS}"
46 -DEPEND="${RDEPEND}"
47 -
48 -LLVM_COMPONENTS=( clang/bindings/python )
49 -llvm.org_set_globals
50 -
51 -python_test() {
52 - "${EPYTHON}" -m unittest discover -v || die "Tests fail with ${EPYTHON}"
53 -}
54 -
55 -src_test() {
56 - python_foreach_impl python_test
57 -}
58 -
59 -src_install() {
60 - python_foreach_impl python_domodule clang
61 -}