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 3742F138359 for ; Mon, 17 Aug 2020 20:36:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F104AE088C; Mon, 17 Aug 2020 20:36:48 +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 D715BE088C for ; Mon, 17 Aug 2020 20:36:48 +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 315E934F4B1 for ; Mon, 17 Aug 2020 20:36:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9340A313 for ; Mon, 17 Aug 2020 20:36:45 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1597696578.16ddeaabbaa6c1c51f46659abfadc0b033f6a0f8.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jupyter_core/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jupyter_core/jupyter_core-4.6.3.ebuild X-VCS-Directories: dev-python/jupyter_core/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 16ddeaabbaa6c1c51f46659abfadc0b033f6a0f8 X-VCS-Branch: master Date: Mon, 17 Aug 2020 20:36:45 +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: c43eb4a3-9a05-4ab5-9742-5b547dc00439 X-Archives-Hash: 5df4b8d9a87c5323db3f5b7385643f59 commit: 16ddeaabbaa6c1c51f46659abfadc0b033f6a0f8 Author: David Seifert gentoo org> AuthorDate: Mon Aug 17 20:36:18 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Aug 17 20:36:18 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16ddeaab dev-python/jupyter_core: Add missing test dep on dev-python/nose Closes: https://bugs.gentoo.org/731716 Package-Manager: Portage-3.0.3, Repoman-3.0.0 Signed-off-by: David Seifert gentoo.org> dev-python/jupyter_core/jupyter_core-4.6.3.ebuild | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/dev-python/jupyter_core/jupyter_core-4.6.3.ebuild b/dev-python/jupyter_core/jupyter_core-4.6.3.ebuild index 400c9ac6d2d..2a9d58b8c6d 100644 --- a/dev-python/jupyter_core/jupyter_core-4.6.3.ebuild +++ b/dev-python/jupyter_core/jupyter_core-4.6.3.ebuild @@ -18,17 +18,20 @@ KEYWORDS="amd64 arm64 x86" RDEPEND="dev-python/traitlets[${PYTHON_USEDEP}]" BDEPEND=" - test? ( >=dev-python/ipython-4.0.1[${PYTHON_USEDEP}] )" + test? ( + >=dev-python/ipython-4.0.1[${PYTHON_USEDEP}] + dev-python/nose[${PYTHON_USEDEP}] + )" distutils_enable_sphinx docs \ dev-python/sphinxcontrib-github-alt distutils_enable_tests pytest -src_prepare() { +python_prepare_all() { # rely on imports working without PYTHONPATH sed -e 's:test_not_on_path:_&:' \ -e 's:test_path_priority:_&:' \ -i jupyter_core/tests/test_command.py || die - distutils-r1_src_prepare + distutils-r1_python_prepare_all }