From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5A46E139084 for ; Thu, 21 Dec 2017 21:01:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9FD76E0F58; Thu, 21 Dec 2017 21:01:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7F039E0F81 for ; Thu, 21 Dec 2017 21:01:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8785333FE60 for ; Thu, 21 Dec 2017 21:01:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 643C6AE90 for ; Thu, 21 Dec 2017 21:01:11 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1513890057.cd0f3b29e1c78b06056320c04b67e47c55bb9ae5.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/clang-python/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/clang-python/clang-python-5.0.9999.ebuild X-VCS-Directories: dev-python/clang-python/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: cd0f3b29e1c78b06056320c04b67e47c55bb9ae5 X-VCS-Branch: master Date: Thu, 21 Dec 2017 21:01:11 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: bad6abaf-e285-4f0d-b914-b55048c38ba0 X-Archives-Hash: c0b81f4a5c4a56cf2fdf4e7a784e52ff commit: cd0f3b29e1c78b06056320c04b67e47c55bb9ae5 Author: Michał Górny gentoo org> AuthorDate: Thu Dec 21 17:59:52 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Dec 21 21:00:57 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd0f3b29 dev-python/clang-python: Remove live ebuild for obsolete 5.0 branch .../clang-python/clang-python-5.0.9999.ebuild | 46 ---------------------- 1 file changed, 46 deletions(-) diff --git a/dev-python/clang-python/clang-python-5.0.9999.ebuild b/dev-python/clang-python/clang-python-5.0.9999.ebuild deleted file mode 100644 index f82f870388c..00000000000 --- a/dev-python/clang-python/clang-python-5.0.9999.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) -inherit git-r3 python-r1 - -DESCRIPTION="Python bindings for sys-devel/clang" -HOMEPAGE="https://llvm.org/" -SRC_URI="" -EGIT_REPO_URI="https://git.llvm.org/git/clang.git - https://github.com/llvm-mirror/clang.git" -EGIT_BRANCH="release_50" - -LICENSE="UoI-NCSA" -SLOT="0" -KEYWORDS="" -IUSE="test" -RESTRICT="!test? ( 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}/${P}/bindings/python - -src_unpack() { - git-r3_fetch - git-r3_checkout '' '' '' bindings/python -} - -src_test() { - python_foreach_impl nosetests -v || die -} - -src_install() { - python_foreach_impl python_domodule clang -}