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 BC9B3138335 for ; Wed, 4 Dec 2019 17:15:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5D70CE0845; Wed, 4 Dec 2019 17:15:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 3FD80E0845 for ; Wed, 4 Dec 2019 17:15:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 2F6A034D7CA for ; Wed, 4 Dec 2019 17:15:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B7D518D0 for ; Wed, 4 Dec 2019 17:15:50 +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: <1575479571.f9b499bde2c819b20f190fe20e2e3aec1b731750.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/qtconsole/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/qtconsole/qtconsole-4.3.1-r1.ebuild X-VCS-Directories: dev-python/qtconsole/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: f9b499bde2c819b20f190fe20e2e3aec1b731750 X-VCS-Branch: master Date: Wed, 4 Dec 2019 17:15:50 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3ab83fb3-7ad6-414b-a624-f13bd4f3c674 X-Archives-Hash: 8e36890cba801cdde27935392541feaa commit: f9b499bde2c819b20f190fe20e2e3aec1b731750 Author: Michał Górny gentoo org> AuthorDate: Mon Dec 2 10:13:15 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Dec 4 17:12:51 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9b499bd dev-python/qtconsole: Remove redundant version Signed-off-by: Michał Górny gentoo.org> dev-python/qtconsole/qtconsole-4.3.1-r1.ebuild | 66 -------------------------- 1 file changed, 66 deletions(-) diff --git a/dev-python/qtconsole/qtconsole-4.3.1-r1.ebuild b/dev-python/qtconsole/qtconsole-4.3.1-r1.ebuild deleted file mode 100644 index 9739aa4e8f2..00000000000 --- a/dev-python/qtconsole/qtconsole-4.3.1-r1.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_{5,6,7} ) -PYTHON_REQ_USE="threads(+)" - -inherit distutils-r1 virtualx - -DESCRIPTION="Qt-based console for Jupyter with support for rich media output" -HOMEPAGE="http://jupyter.org" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" -IUSE="doc test" - -RDEPEND=" - dev-python/ipykernel[${PYTHON_USEDEP}] - dev-python/ipython_genutils[${PYTHON_USEDEP}] - dev-python/jupyter_core[${PYTHON_USEDEP}] - >=dev-python/jupyter_client-4.1.1[${PYTHON_USEDEP}] - dev-python/traitlets[${PYTHON_USEDEP}] - " -DEPEND="${RDEPEND} - doc? ( - >=dev-python/ipython-4.0.0-r2[${PYTHON_USEDEP}] - >=dev-python/sphinx-1.3.1-r1[${PYTHON_USEDEP}] - ) - test? ( - $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' 'python2*') - >=dev-python/nose-0.10.1[${PYTHON_USEDEP}] - dev-python/PyQt5[${PYTHON_USEDEP},svg,testlib] - ) - dev-python/PyQt5[${PYTHON_USEDEP},svg] - dev-python/pygments[${PYTHON_USEDEP}] - >=dev-python/pyzmq-13[${PYTHON_USEDEP}] - " -PDEPEND="dev-python/ipython[${PYTHON_USEDEP}]" - -python_prepare_all() { - # Prevent un-needed download during build - if use doc; then - sed -e "/^ 'sphinx.ext.intersphinx',/d" -i docs/source/conf.py || die - fi - - distutils-r1_python_prepare_all -} - -python_compile_all() { - if use doc; then - emake -C docs html - HTML_DOCS=( docs/build/html/. ) - fi -} - -python_test() { - # jupyter qtconsole --generate-config ... jupyter-qtconsole: cannot connect to X server - # ERROR - sed \ - -e 's:test_generate_config:_&:g' \ - -i qtconsole/tests/test_app.py || die - virtx nosetests --verbosity=2 qtconsole -}