From 1432e085c8b15cc1394e500077f01833ad5c5ae7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Thu, 21 Aug 2025 06:53:18 +0200 Subject: [PATCH] dev-python/sphinx-prompt: Fix dependency unpinning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Upstream is now using PEP 621 metadata, so tool.poetry tables were a red herring. Signed-off-by: Michał Górny --- ...nx-prompt-1.10.1.ebuild => sphinx-prompt-1.10.1-r1.ebuild} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename dev-python/sphinx-prompt/{sphinx-prompt-1.10.1.ebuild => sphinx-prompt-1.10.1-r1.ebuild} (88%) diff --git a/dev-python/sphinx-prompt/sphinx-prompt-1.10.1.ebuild b/dev-python/sphinx-prompt/sphinx-prompt-1.10.1-r1.ebuild similarity index 88% rename from dev-python/sphinx-prompt/sphinx-prompt-1.10.1.ebuild rename to dev-python/sphinx-prompt/sphinx-prompt-1.10.1-r1.ebuild index c7037f8c69710..1115baf35e8e6 100644 --- a/dev-python/sphinx-prompt/sphinx-prompt-1.10.1.ebuild +++ b/dev-python/sphinx-prompt/sphinx-prompt-1.10.1-r1.ebuild @@ -32,11 +32,11 @@ distutils_enable_tests pytest python_prepare_all() { # version number relies on git repo, sigh - # also all dependencies are pinned to exact versions, sigh + # also unpin dependencies # also hack to install as "sphinx-prompt" sed -i \ -e "/^version =/s:[0-9.]\+:${PV}:" \ - -e '/^\[tool\.poetry\.dependencies\]$/,$s:"[0-9.]\+:"*:' \ + -e '/^dependencies/s:==:>=:g' \ -e '/include.*sphinx-prompt/d' \ pyproject.toml || die