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: Sun, 02 Jun 2019 07:20:24
Message-Id: 1559459954.b745fffd7ecde602cb330571970917f33707e870.mgorny@gentoo
1 commit: b745fffd7ecde602cb330571970917f33707e870
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 2 06:19:37 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 2 07:19:14 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b745fffd
7
8 dev-python/clang-python: Remove 4.0.1
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-4.0.1.ebuild | 37 -----------------------
14 2 files changed, 38 deletions(-)
15
16 diff --git a/dev-python/clang-python/Manifest b/dev-python/clang-python/Manifest
17 index 805f86472b1..76f6b681aeb 100644
18 --- a/dev-python/clang-python/Manifest
19 +++ b/dev-python/clang-python/Manifest
20 @@ -1,4 +1,3 @@
21 -DIST cfe-4.0.1.src.tar.xz 10933628 BLAKE2B bc1bb8875e83ccecd446a48cfa41f5c98a09d6ad24ff439a983f629711b4513b9c4bee4070f8df13b6b2a52d673b0706733a4c151ce5021a0233147debff14ac SHA512 936c9e1626b27e63a4fb11f3c0cb998eeaf9a520ad6e2bcd67cb4352e59e7781ecc700df79794f3fd70473d90b7e2ba418a39038eb0146b68e843f0705c1f964
22 DIST cfe-5.0.2.src.tar.xz 11459216 BLAKE2B 80d9b2ab70b00c0dfd5c5386a44e0c15d8252e6175c9da55a0519c4f9b8192e32e215110d7d3808225786e2c7f906f2dfbe11dd09bdf21574e99709ae237ed0b SHA512 9931afceb5569ad6caec85d506180c810f7fea94af8c997143b0a37cbf413fcea0d92520478610627eeee1efb65fde684066ace0dfcbbf7b61ecd709d22dd0b1
23 DIST cfe-6.0.1.src.tar.xz 11905772 BLAKE2B abb60e9f9827d1d8a24f0aaf8a1d1e32979293cc401258d230f93290e633645747fd0344af189ac7081b06be2cada503364e1e432b37110ade4b3578e40c7605 SHA512 f64ba9290059f6e36fee41c8f32bf483609d31c291fcd2f77d41fecfdf3c8233a5e23b93a1c73fed03683823bd6e72757ed993dd32527de3d5f2b7a64bb031b9
24 DIST cfe-7.1.0.src.tar.xz 12487872 BLAKE2B ca6ec9e45b94823de1dabf9e68f0c97cdd40b5d2a5e5e15d4b2393f6d7fbdee72a541b957cc22ce4cb726d8ee7190228320941d5713aeb59695673b9e9070ceb SHA512 1cd0b80f32aa4de1118c0c676ba96b1fc78b7ff929b01b6589dfe9b4669e599ac8cfb8f5a0abcd3487594193a7dec06b29530ec3fc03042c20a160f0477a79fd
25
26 diff --git a/dev-python/clang-python/clang-python-4.0.1.ebuild b/dev-python/clang-python/clang-python-4.0.1.ebuild
27 deleted file mode 100644
28 index c77ee951ec2..00000000000
29 --- a/dev-python/clang-python/clang-python-4.0.1.ebuild
30 +++ /dev/null
31 @@ -1,37 +0,0 @@
32 -# Copyright 1999-2017 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -
37 -PYTHON_COMPAT=( python2_7 )
38 -inherit python-r1
39 -
40 -DESCRIPTION="Python bindings for sys-devel/clang"
41 -HOMEPAGE="https://llvm.org/"
42 -SRC_URI="https://releases.llvm.org/${PV/_//}/cfe-${PV/_/}.src.tar.xz"
43 -
44 -LICENSE="UoI-NCSA"
45 -SLOT="0"
46 -KEYWORDS="~amd64 ~arm64 ~x86"
47 -IUSE="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 -RDEPEND="
53 - >=sys-devel/clang-${PV}:*
54 - !sys-devel/llvm:0[clang(-),python(-)]
55 - !sys-devel/clang:0[python(-)]
56 - ${PYTHON_DEPS}"
57 -DEPEND="${RDEPEND}
58 - test? ( dev-python/nose[${PYTHON_USEDEP}] )"
59 -
60 -S=${WORKDIR}/cfe-${PV/_/}.src/bindings/python
61 -
62 -src_test() {
63 - python_foreach_impl nosetests -v || die
64 -}
65 -
66 -src_install() {
67 - python_foreach_impl python_domodule clang
68 -}