From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 0AC551382BD for ; Thu, 16 Jun 2016 09:21:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 162E6E0995; Thu, 16 Jun 2016 09:21:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B467AE0995 for ; Thu, 16 Jun 2016 09:21:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 301173406AD for ; Thu, 16 Jun 2016 09:21:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2009F2416 for ; Thu, 16 Jun 2016 09:21:26 +0000 (UTC) From: "Marius Brehler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marius Brehler" Message-ID: <1466068113.921d77780352446a1821a4ba1f0027d1d7676cfa.marbre@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/qtconsole/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/qtconsole/qtconsole-9999.ebuild X-VCS-Directories: dev-python/qtconsole/ X-VCS-Committer: marbre X-VCS-Committer-Name: Marius Brehler X-VCS-Revision: 921d77780352446a1821a4ba1f0027d1d7676cfa X-VCS-Branch: master Date: Thu, 16 Jun 2016 09:21:26 +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: d90d6c88-f79b-4a87-a35f-4251581bc875 X-Archives-Hash: 23b9315b2b22670d8881a8a15e4c06dc commit: 921d77780352446a1821a4ba1f0027d1d7676cfa Author: Marius Brehler linux sungazer de> AuthorDate: Thu Jun 16 09:08:33 2016 +0000 Commit: Marius Brehler linux sungazer de> CommitDate: Thu Jun 16 09:08:33 2016 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=921d7778 dev-python/qtconsole: Bump to EAPI=6; adopt python_text() and deps from tree Package-Manager: portage-2.2.28 dev-python/qtconsole/qtconsole-9999.ebuild | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/dev-python/qtconsole/qtconsole-9999.ebuild b/dev-python/qtconsole/qtconsole-9999.ebuild index d9b9a4a..96b48a6 100644 --- a/dev-python/qtconsole/qtconsole-9999.ebuild +++ b/dev-python/qtconsole/qtconsole-9999.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 PYTHON_COMPAT=( python2_7 python3_{3,4,5} ) PYTHON_REQ_USE="threads(+)" @@ -20,12 +20,12 @@ IUSE="doc test" RDEPEND=" dev-python/ipykernel[${PYTHON_USEDEP}] - dev-python/jupyter_client[${PYTHON_USEDEP}] + >=dev-python/jupyter_client-4.1.1[${PYTHON_USEDEP}] " DEPEND="${RDEPEND} doc? ( - dev-python/ipython[${PYTHON_USEDEP}] - dev-python/sphinx[${PYTHON_USEDEP}] + >=dev-python/ipython-4.0.0-r2[${PYTHON_USEDEP}] + >=dev-python/sphinx-1.3.1-r1[${PYTHON_USEDEP}] ) test? ( >=dev-python/nose-0.10.1[${PYTHON_USEDEP}] @@ -54,7 +54,12 @@ python_compile_all() { } python_test() { - nosetests --with-coverage --cover-package qtconsole qtconsole || die + # 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 } python_install_all() {