commit: 4b58be87e36d805c68c2f35371e3e85830720c8d Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org> AuthorDate: Fri Jul 24 21:00:29 2020 +0000 Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org> CommitDate: Fri Jul 24 21:15:23 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b58be87
dev-python/moto: Fix idna dep requirement bug 733728 installed requires.txt was limiting the idna dep outside of the ebuild DEPEND. Remove the upper limit and tested with idna-2.10 OK. Fixes a test failure bug in dev-util/buildbot. Closes: https://bugs.gentoo.org/733728 Package-Manager: Portage-3.0.0, Repoman-2.3.23 Signed-off-by: Brian Dolbec <dolsen <AT> gentoo.org> dev-python/moto/{moto-1.3.14-r2.ebuild => moto-1.3.14-r3.ebuild} | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-python/moto/moto-1.3.14-r2.ebuild b/dev-python/moto/moto-1.3.14-r3.ebuild similarity index 96% rename from dev-python/moto/moto-1.3.14-r2.ebuild rename to dev-python/moto/moto-1.3.14-r3.ebuild index 89915445bd5..f28e5d50579 100644 --- a/dev-python/moto/moto-1.3.14-r2.ebuild +++ b/dev-python/moto/moto-1.3.14-r3.ebuild @@ -69,6 +69,9 @@ python_prepare_all() { -e '/cfn-lint/ d' \ -i setup.py moto.egg-info/requires.txt || die + sed -e 's|idna<2.9,>=2.5|idna>=2.5|' \ + -i setup.py moto.egg-info/requires.txt || die + # Disable tests that fail with network-sandbox. sed -e 's|^\(def \)\(test_context_manager()\)|\1_\2|' \ -e 's|^\(def \)\(test_decorator_start_and_stop()\)|\1_\2|' \
