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: Tue, 20 Sep 2022 11:12:20
Message-Id: 1663672124.0448d0d67a7f6466b36761a73b46e1c34970d910.mgorny@gentoo
1 commit: 0448d0d67a7f6466b36761a73b46e1c34970d910
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 20 11:08:44 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 20 11:08:44 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0448d0d6
7
8 dev-python/clang-python: Remove 16.0.0_pre20220915
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/clang-python/Manifest | 1 -
13 .../clang-python-16.0.0_pre20220915.ebuild | 47 ----------------------
14 2 files changed, 48 deletions(-)
15
16 diff --git a/dev-python/clang-python/Manifest b/dev-python/clang-python/Manifest
17 index 9aa50441e632..764cd411b7bf 100644
18 --- a/dev-python/clang-python/Manifest
19 +++ b/dev-python/clang-python/Manifest
20 @@ -1,4 +1,3 @@
21 -DIST llvm-project-02a27b38909edc46c41732f79a837c95c9992d5a.tar.gz 167414990 BLAKE2B cd9c4be6d3155a4cbf1abff9d8246b9d6fea98e29459c226bda36df250cc22883f08175514fce037d146866d521a56669678b5c35b5163b38532b8c2920b25a6 SHA512 e862e148b8f053d8f4d40de8db9a4db587cb0c7b4120fe433d769aa2772a1aabd697c3c3f8ee34f547ee12c4bc4355116d5694d5f451264f8719d4af0fb32cb0
22 DIST llvm-project-14.0.6.src.tar.xz 105618228 BLAKE2B ee67c5407df8cef493b9c0004f15e428f22a536a17e5f4e3eb29a003b8a8ec0abe0fa3e072591161d5f30ef7d8867c1ce34d1b341ad858e93c00263499941a99 SHA512 6fc6eeb60fac698702d1aac495fc0161eb7216a1f8db2020af8fccec5837831f7cc20dc2a169bf4f0b5f520748280b4a86621f3697d622aa58faaa45dbfaad13
23 DIST llvm-project-14.0.6.src.tar.xz.sig 566 BLAKE2B cb658ad43d8ab6c43a5773aedadf0569c97b5ee4b1bd58eceb10e1879a30880c741c3d66bedd462c892309b688fb7b2673115a62d1f74d71ee375a578de9547f SHA512 b4a7b368532a7a4a24376cfa7db8f6d3478f6d4446474342fc00b474ecf466330cd0f16783209263c4c72d5fc7ddedfb11b95578842e700cfb7ee0bb34cc95d6
24 DIST llvm-project-15.0.0.src.tar.xz 112062796 BLAKE2B 947917b6c75cbd8882133dc01f57013523274962371ac5ae4a22b010f8a7d5d31288c1d9847bf19ba919fa3110fe34a8ff937107fe19bd064ed87bf4d08d8a51 SHA512 e5aacbe7574dcec62017cc03c9fa2ee4cf075125a3d6c3975c38f06e91adcebb1ff92bcf40c6dd67db087813c60b15a04f1424c713d751199518b58025ce87fc
25
26 diff --git a/dev-python/clang-python/clang-python-16.0.0_pre20220915.ebuild b/dev-python/clang-python/clang-python-16.0.0_pre20220915.ebuild
27 deleted file mode 100644
28 index 2891edc42793..000000000000
29 --- a/dev-python/clang-python/clang-python-16.0.0_pre20220915.ebuild
30 +++ /dev/null
31 @@ -1,47 +0,0 @@
32 -# Copyright 1999-2022 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=8
36 -
37 -PYTHON_COMPAT=( python3_{8..11} )
38 -inherit llvm.org python-r1
39 -
40 -DESCRIPTION="Python bindings for sys-devel/clang"
41 -HOMEPAGE="https://llvm.org/"
42 -
43 -LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA"
44 -SLOT="0"
45 -KEYWORDS=""
46 -IUSE="test"
47 -RESTRICT="!test? ( test )"
48 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
49 -
50 -# The module is opening libclang.so directly, and doing some blasphemy
51 -# on top of it.
52 -DEPEND="
53 - >=sys-devel/clang-${PV}:*
54 - !sys-devel/llvm:0[clang(-),python(-)]
55 - !sys-devel/clang:0[python(-)]
56 -"
57 -RDEPEND="
58 - ${DEPEND}
59 - ${PYTHON_DEPS}
60 -"
61 -BDEPEND="
62 - ${PYTHON_DEPS}
63 -"
64 -
65 -LLVM_COMPONENTS=( clang/bindings/python )
66 -llvm.org_set_globals
67 -
68 -python_test() {
69 - "${EPYTHON}" -m unittest discover -v || die "Tests fail with ${EPYTHON}"
70 -}
71 -
72 -src_test() {
73 - python_foreach_impl python_test
74 -}
75 -
76 -src_install() {
77 - python_foreach_impl python_domodule clang
78 -}