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: Mon, 09 Sep 2019 19:02:50
Message-Id: 1568055750.665a58172e31dd0cb4368fe0728a6eaf7519b936.mgorny@gentoo
1 commit: 665a58172e31dd0cb4368fe0728a6eaf7519b936
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 2 07:28:19 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 9 19:02:30 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=665a5817
7
8 dev-python/clang-python: Remove 5.0.2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/clang-python/Manifest | 1 -
13 dev-python/clang-python/clang-python-5.0.2.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 27911ec11fb..10c0e709453 100644
18 --- a/dev-python/clang-python/Manifest
19 +++ b/dev-python/clang-python/Manifest
20 @@ -1,4 +1,3 @@
21 -DIST cfe-5.0.2.src.tar.xz 11459216 BLAKE2B 80d9b2ab70b00c0dfd5c5386a44e0c15d8252e6175c9da55a0519c4f9b8192e32e215110d7d3808225786e2c7f906f2dfbe11dd09bdf21574e99709ae237ed0b SHA512 9931afceb5569ad6caec85d506180c810f7fea94af8c997143b0a37cbf413fcea0d92520478610627eeee1efb65fde684066ace0dfcbbf7b61ecd709d22dd0b1
22 DIST cfe-6.0.1.src.tar.xz 11905772 BLAKE2B abb60e9f9827d1d8a24f0aaf8a1d1e32979293cc401258d230f93290e633645747fd0344af189ac7081b06be2cada503364e1e432b37110ade4b3578e40c7605 SHA512 f64ba9290059f6e36fee41c8f32bf483609d31c291fcd2f77d41fecfdf3c8233a5e23b93a1c73fed03683823bd6e72757ed993dd32527de3d5f2b7a64bb031b9
23 DIST cfe-7.1.0.src.tar.xz 12487872 BLAKE2B ca6ec9e45b94823de1dabf9e68f0c97cdd40b5d2a5e5e15d4b2393f6d7fbdee72a541b957cc22ce4cb726d8ee7190228320941d5713aeb59695673b9e9070ceb SHA512 1cd0b80f32aa4de1118c0c676ba96b1fc78b7ff929b01b6589dfe9b4669e599ac8cfb8f5a0abcd3487594193a7dec06b29530ec3fc03042c20a160f0477a79fd
24 DIST cfe-8.0.0.src.tar.xz 12868468 BLAKE2B 3cb96c95c4d9713feb7011e4f1ca24be3e7f6c9b458f6cd9e6905f99737312ca44cb701ed5871e47dd583145e5898d53a65c4cda6456af3d4ca31b670ed84409 SHA512 98e540222719716985e5d8439116e47469cb01201ea91d1da7e46cb6633da099688d9352c3b65e5c5f660cbbae353b3d79bb803fc66b3be663f2b04b1feed1c3
25
26 diff --git a/dev-python/clang-python/clang-python-5.0.2.ebuild b/dev-python/clang-python/clang-python-5.0.2.ebuild
27 deleted file mode 100644
28 index c7b8804e71f..00000000000
29 --- a/dev-python/clang-python/clang-python-5.0.2.ebuild
30 +++ /dev/null
31 @@ -1,47 +0,0 @@
32 -# Copyright 1999-2019 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -
37 -PYTHON_COMPAT=( python{2_7,3_5,3_6} )
38 -inherit python-r1
39 -
40 -MY_P=cfe-${PV/_/}.src
41 -DESCRIPTION="Python bindings for sys-devel/clang"
42 -HOMEPAGE="https://llvm.org/"
43 -SRC_URI="https://releases.llvm.org/${PV/_//}/${MY_P}.tar.xz"
44 -
45 -LICENSE="UoI-NCSA"
46 -SLOT="0"
47 -KEYWORDS="~amd64 ~arm64 ~x86"
48 -IUSE="test"
49 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
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 - test? ( dev-python/nose[${PYTHON_USEDEP}] )"
60 -
61 -S=${WORKDIR}/${MY_P}/bindings/python
62 -
63 -src_unpack() {
64 - einfo "Unpacking parts of ${MY_P}.tar.xz ..."
65 - tar -xJf "${DISTDIR}/${MY_P}.tar.xz" "${MY_P}/bindings/python" || die
66 -}
67 -
68 -python_test() {
69 - nosetests -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 -}