summaryrefslogtreecommitdiff
path: root/dev-python/clang-python/clang-python-4.0.1.ebuild
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2019-06-02 08:19:37 +0200
committerMichał Górny <mgorny@gentoo.org>2019-06-02 09:19:14 +0200
commitb745fffd7ecde602cb330571970917f33707e870 (patch)
treee803041e3aac44cd7f3d7bf1cca9d4b2a23f569e /dev-python/clang-python/clang-python-4.0.1.ebuild
parent53c2aaed46d7192bdeba07799fa76d5b0c5ce8b1 (diff)
downloadgentoo-b745fffd7ecde602cb330571970917f33707e870.tar.gz
gentoo-b745fffd7ecde602cb330571970917f33707e870.tar.bz2
gentoo-b745fffd7ecde602cb330571970917f33707e870.zip
dev-python/clang-python: Remove 4.0.1
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/clang-python/clang-python-4.0.1.ebuild')
-rw-r--r--dev-python/clang-python/clang-python-4.0.1.ebuild37
1 files changed, 0 insertions, 37 deletions
diff --git a/dev-python/clang-python/clang-python-4.0.1.ebuild b/dev-python/clang-python/clang-python-4.0.1.ebuild
deleted file mode 100644
index c77ee951ec2f..000000000000
--- a/dev-python/clang-python/clang-python-4.0.1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-inherit python-r1
-
-DESCRIPTION="Python bindings for sys-devel/clang"
-HOMEPAGE="https://llvm.org/"
-SRC_URI="https://releases.llvm.org/${PV/_//}/cfe-${PV/_/}.src.tar.xz"
-
-LICENSE="UoI-NCSA"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="test"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-# The module is opening libclang.so directly, and doing some blasphemy
-# on top of it.
-RDEPEND="
- >=sys-devel/clang-${PV}:*
- !sys-devel/llvm:0[clang(-),python(-)]
- !sys-devel/clang:0[python(-)]
- ${PYTHON_DEPS}"
-DEPEND="${RDEPEND}
- test? ( dev-python/nose[${PYTHON_USEDEP}] )"
-
-S=${WORKDIR}/cfe-${PV/_/}.src/bindings/python
-
-src_test() {
- python_foreach_impl nosetests -v || die
-}
-
-src_install() {
- python_foreach_impl python_domodule clang
-}