diff options
author | Eli Schwartz <eschwartz93@gmail.com> | 2024-06-27 20:14:17 -0400 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-06-28 01:59:44 +0100 |
commit | f1df6368043cabffb9eb5cf97cc852ff0331db45 (patch) | |
tree | d956c43deb08dd0dc19361453687de13ef2411c4 /net-analyzer | |
parent | dev-libs/tree-sitter-julia: Stabilize 0.22.0 amd64, #935040 (diff) | |
download | gentoo-f1df6368043cabffb9eb5cf97cc852ff0331db45.tar.gz gentoo-f1df6368043cabffb9eb5cf97cc852ff0331db45.tar.bz2 gentoo-f1df6368043cabffb9eb5cf97cc852ff0331db45.zip |
net-analyzer/notus-scanner: fix overdependency on tomli
Since 22.5.0, it has supported using the stdlib tomllib when available:
https://github.com/greenbone/notus-scanner/commit/73f429133f0f07855d4d0731b6547bc8d672b482
The versioned dependency is poetry semver paranoia. tomli is a stdlib
backport and will remain compatible with the stdlib (presumably by never
bumping to "semver major 3"). But don't argue since it was already in
the ebuild.
In principle, this overdependency could be fixed for 22.6.2 as well, but
going through stabilization for that isn't worth it. This version is
upcoming anyway.
Signed-off-by: Eli Schwartz <eschwartz93@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/notus-scanner/notus-scanner-22.6.3-r1.ebuild (renamed from net-analyzer/notus-scanner/notus-scanner-22.6.3.ebuild) | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net-analyzer/notus-scanner/notus-scanner-22.6.3.ebuild b/net-analyzer/notus-scanner/notus-scanner-22.6.3-r1.ebuild index c14414c68226..9ac39d6372b9 100644 --- a/net-analyzer/notus-scanner/notus-scanner-22.6.3.ebuild +++ b/net-analyzer/notus-scanner/notus-scanner-22.6.3-r1.ebuild @@ -22,7 +22,9 @@ DEPEND=" >=dev-python/python-gnupg-0.5.1[${PYTHON_USEDEP}] <dev-python/packaging-24.1[${PYTHON_USEDEP}] >=dev-python/paho-mqtt-1.5.1[${PYTHON_USEDEP}] - <dev-python/tomli-3[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + <dev-python/tomli-3[${PYTHON_USEDEP}] + ' 3.10) " RDEPEND=" |