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: Wed, 15 Aug 2018 20:44:30
Message-Id: 1534365150.e889241a361ad07f0efd7a0b962efa902470684d.mgorny@gentoo
1 commit: e889241a361ad07f0efd7a0b962efa902470684d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 15 20:32:30 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 15 20:32:30 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e889241a
7
8 dev-python/clang-python: Drop 6.0.9999
9
10 .../clang-python/clang-python-6.0.9999.ebuild | 49 ----------------------
11 1 file changed, 49 deletions(-)
12
13 diff --git a/dev-python/clang-python/clang-python-6.0.9999.ebuild b/dev-python/clang-python/clang-python-6.0.9999.ebuild
14 deleted file mode 100644
15 index 89b1f72d475..00000000000
16 --- a/dev-python/clang-python/clang-python-6.0.9999.ebuild
17 +++ /dev/null
18 @@ -1,49 +0,0 @@
19 -# Copyright 1999-2018 Gentoo Foundation
20 -# Distributed under the terms of the GNU General Public License v2
21 -
22 -EAPI=6
23 -
24 -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
25 -inherit git-r3 python-r1
26 -
27 -DESCRIPTION="Python bindings for sys-devel/clang"
28 -HOMEPAGE="https://llvm.org/"
29 -SRC_URI=""
30 -EGIT_REPO_URI="https://git.llvm.org/git/clang.git
31 - https://github.com/llvm-mirror/clang.git"
32 -EGIT_BRANCH="release_60"
33 -
34 -LICENSE="UoI-NCSA"
35 -SLOT="0"
36 -KEYWORDS=""
37 -IUSE="test"
38 -RESTRICT="!test? ( test )"
39 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
40 -
41 -# The module is opening libclang.so directly, and doing some blasphemy
42 -# on top of it.
43 -RDEPEND="
44 - >=sys-devel/clang-${PV}:*
45 - !sys-devel/llvm:0[clang(-),python(-)]
46 - !sys-devel/clang:0[python(-)]
47 - ${PYTHON_DEPS}"
48 -DEPEND="${RDEPEND}"
49 -
50 -S=${WORKDIR}/${P}/bindings/python
51 -
52 -src_unpack() {
53 - git-r3_fetch
54 - git-r3_checkout '' '' '' bindings/python
55 -}
56 -
57 -python_test() {
58 - "${EPYTHON}" -m unittest discover -v || die "Tests fail with ${EPYTHON}"
59 -}
60 -
61 -src_test() {
62 - python_foreach_impl python_test
63 -}
64 -
65 -src_install() {
66 - python_foreach_impl python_domodule clang
67 -}