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 09B9A15800F for ; Wed, 22 Feb 2023 07:42:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 46882E0794; Wed, 22 Feb 2023 07:42:48 +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 2D745E0794 for ; Wed, 22 Feb 2023 07:42:48 +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 4656E340861 for ; Wed, 22 Feb 2023 07:42:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 552CA8C6 for ; Wed, 22 Feb 2023 07:42:44 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1677051743.edd281e5cb0e65dd6cb2cd64ff7236f057e2120f.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinx-prompt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sphinx-prompt/sphinx-prompt-1.6.0-r1.ebuild dev-python/sphinx-prompt/sphinx-prompt-1.6.0.ebuild X-VCS-Directories: dev-python/sphinx-prompt/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: edd281e5cb0e65dd6cb2cd64ff7236f057e2120f X-VCS-Branch: master Date: Wed, 22 Feb 2023 07:42:44 +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: 23e40465-2090-4ef7-b45b-da318edca458 X-Archives-Hash: 0192aea4a3c25212efc000e29f186028 commit: edd281e5cb0e65dd6cb2cd64ff7236f057e2120f Author: Sam James gentoo org> AuthorDate: Wed Feb 22 07:25:36 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed Feb 22 07:42:23 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edd281e5 dev-python/sphinx-prompt: lift sphinx restriction in requirements Signed-off-by: Sam James gentoo.org> ...phinx-prompt-1.6.0.ebuild => sphinx-prompt-1.6.0-r1.ebuild} | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/dev-python/sphinx-prompt/sphinx-prompt-1.6.0.ebuild b/dev-python/sphinx-prompt/sphinx-prompt-1.6.0-r1.ebuild similarity index 69% rename from dev-python/sphinx-prompt/sphinx-prompt-1.6.0.ebuild rename to dev-python/sphinx-prompt/sphinx-prompt-1.6.0-r1.ebuild index 68cf7b066edc..36ba1e1af0e6 100644 --- a/dev-python/sphinx-prompt/sphinx-prompt-1.6.0.ebuild +++ b/dev-python/sphinx-prompt/sphinx-prompt-1.6.0-r1.ebuild @@ -23,7 +23,13 @@ RDEPEND=" distutils_enable_tests pytest python_prepare_all() { - # https://github.com/sbrunner/sphinx-prompt/pull/330 - sed -E -i -e "/^version =/s:([0-9.]+):${PV}:" pyproject.toml || die + # for Version: https://github.com/sbrunner/sphinx-prompt/pull/330 + # for Sphinx dep: https://github.com/sbrunner/sphinx-prompt/issues/174 + # and poetry-plugin-tweak-dependencies-version usage. + sed -E -i \ + -e "/^version =/s:([0-9.]+):${PV}:" \ + -e "/^Sphinx =/s:([0-9.]+):>=5:" \ + pyproject.toml || die + distutils-r1_python_prepare_all }