commit: 1432e085c8b15cc1394e500077f01833ad5c5ae7
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 21 04:53:18 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Aug 21 04:53:18 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1432e085
dev-python/sphinx-prompt: Fix dependency unpinning
Upstream is now using PEP 621 metadata, so tool.poetry tables were
a red herring.
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
.../{sphinx-prompt-1.10.1.ebuild => sphinx-prompt-1.10.1-r1.ebuild} | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
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 c7037f8c6971..1115baf35e8e 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