commit: 9bce8885b5c8de4c92578a1b2587e22b27ff60dd
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 3 06:30:10 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Apr 3 07:59:42 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bce8885
dev-python/tenacity: Bump to 9.1.2
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/tenacity/Manifest | 1 +
dev-python/tenacity/tenacity-9.1.2.ebuild | 39 +++++++++++++++++++++++++++++++
2 files changed, 40 insertions(+)
diff --git a/dev-python/tenacity/Manifest b/dev-python/tenacity/Manifest
index 462ea2468fa3..cf1696c56ec2 100644
--- a/dev-python/tenacity/Manifest
+++ b/dev-python/tenacity/Manifest
@@ -1 +1,2 @@
DIST tenacity-9.0.0.tar.gz 47421 BLAKE2B
f263af6be0c2d3f26969884d0f211111c68d28dc0cdeddc4ff03791cb5344e60a481a80321d6946bbc9982fac61d0b6084e299766e620893cc30fdc8dae39a8d
SHA512
c6236e7630d46048c7c8fb60213591b3489576b8a4413f0bc2d692751f456882c177bdbc425d5921d7679a019dd39371dfa5cd1210e68a3faefd5beb799961ea
+DIST tenacity-9.1.2.tar.gz 48036 BLAKE2B
5e91e0380d7cd5f3b94148f3817c3a296ab12a8ce4996ec9a917e5abb42575496c83dcbfa0034d1cff074add0a963c4b58ef9d5976fd412edf86196cc9a2e7a4
SHA512
35dff9ab9f1c2b9ab0d807bc790b92a3a3d4e133aecb9921a700af0e6dd9bf805f551a2409dc4341088a44b0693ec0b0fa6b703305b312a988da5e3dc1f61d11
diff --git a/dev-python/tenacity/tenacity-9.1.2.ebuild
b/dev-python/tenacity/tenacity-9.1.2.ebuild
new file mode 100644
index 000000000000..26de06b4fb72
--- /dev/null
+++ b/dev-python/tenacity/tenacity-9.1.2.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 pypy3_11 python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="General-purpose retrying library"
+HOMEPAGE="
+ https://github.com/jd/tenacity/
+ https://pypi.org/project/tenacity/
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~m68k ~ppc ~ppc64 ~riscv ~sparc ~x86"
+
+BDEPEND="
+ dev-python/setuptools-scm[${PYTHON_USEDEP}]
+ test? (
+ >=dev-python/tornado-6.4-r1[${PYTHON_USEDEP}]
+ dev-python/typeguard[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+ local EPYTEST_DESELECT=(
+ # fragile to timing
+ tests/test_asyncio.py::TestContextManager::test_sleeps
+ )
+
+ local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+ epytest
+}