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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9F711158094 for ; Mon, 10 Oct 2022 18:24:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EB719E0917; Mon, 10 Oct 2022 18:24:51 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D2860E0917 for ; Mon, 10 Oct 2022 18:24:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DBF233411C0 for ; Mon, 10 Oct 2022 18:24:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7E3755D6 for ; Mon, 10 Oct 2022 18:24:49 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1665426279.3c8a1b0571b239eacbb953f51a7b8075a465c975.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/notebook/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/notebook/notebook-6.4.12.ebuild X-VCS-Directories: dev-python/notebook/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 3c8a1b0571b239eacbb953f51a7b8075a465c975 X-VCS-Branch: master Date: Mon, 10 Oct 2022 18:24:49 +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: 7c593742-fdb9-4213-bdd9-ecd9dbbb6c4f X-Archives-Hash: 2562c839bed8078af6edea1dbee0cbfb commit: 3c8a1b0571b239eacbb953f51a7b8075a465c975 Author: Andrew Ammerlaan gentoo org> AuthorDate: Mon Oct 10 18:24:03 2022 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Mon Oct 10 18:24:39 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c8a1b05 dev-python/notebook: break circular dependency Closes: https://bugs.gentoo.org/876526 Signed-off-by: Andrew Ammerlaan gentoo.org> dev-python/notebook/notebook-6.4.12.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-python/notebook/notebook-6.4.12.ebuild b/dev-python/notebook/notebook-6.4.12.ebuild index 98ff3257518f..d18523f960a5 100644 --- a/dev-python/notebook/notebook-6.4.12.ebuild +++ b/dev-python/notebook/notebook-6.4.12.ebuild @@ -29,7 +29,6 @@ RDEPEND=" >=dev-python/pyzmq-17[${PYTHON_USEDEP}] >=dev-python/jupyter_client-5.3.4[${PYTHON_USEDEP}] dev-python/nbformat[${PYTHON_USEDEP}] - >=dev-python/nbconvert-4.2.0[${PYTHON_USEDEP}] >=dev-python/nest_asyncio-1.5[${PYTHON_USEDEP}] dev-python/ipykernel[${PYTHON_USEDEP}] >=dev-python/send2trash-1.8.0[${PYTHON_USEDEP}] @@ -43,6 +42,8 @@ BDEPEND=" ) " +PDEPEND=">=dev-python/nbconvert-4.2.0[${PYTHON_USEDEP}]" + PATCHES=( "${FILESDIR}"/notebook-6.4.11-no-mathjax.patch )