commit: 014f8c2ebf04222af9e63d4add80a38a9c131205
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 18 05:20:11 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Nov 18 05:20:11 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=014f8c2e
dev-python/immutabledict: Bump to 4.2.1
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/immutabledict/Manifest | 1 +
.../immutabledict/immutabledict-4.2.1.ebuild | 27 ++++++++++++++++++++++
2 files changed, 28 insertions(+)
diff --git a/dev-python/immutabledict/Manifest
b/dev-python/immutabledict/Manifest
index 8d959079bcca..989bd619b8b1 100644
--- a/dev-python/immutabledict/Manifest
+++ b/dev-python/immutabledict/Manifest
@@ -1 +1,2 @@
DIST immutabledict-4.2.0.tar.gz 6165 BLAKE2B
6176a186e8108134f3e54e8d98712f2f825f3750685da72bb654b0eb2a1c75e87f6c8bf95dc6c4c06b2da68b4fa541fde32f2988735bf93cf57f772a29c8368b
SHA512
56be1239ea8161e54744a7bf5d17c0cc29410d7a7327fe97b3290f9e566dd19f662bac0e4e9f3c060cceece0df5d39638bf4258f3edfcf693f7f9b2bddc1d6b7
+DIST immutabledict-4.2.1.tar.gz 6228 BLAKE2B
55c97af9d906567f8ba9096d4bc30734012f72b9d7d6cf3a6268ba1219b5b64eb985d2665b131be1ad017e93fc05d66250df3e0826d02f24eaacaf8daf13df89
SHA512
bf09067a371abe4caa829b9ad08000f244a8ed8cbbc6f25c118f555a9f281c2b7e26f66f112a5188e80b49e826a76953040f45eb64f3ce9d258dc66c911a5200
diff --git a/dev-python/immutabledict/immutabledict-4.2.1.ebuild
b/dev-python/immutabledict/immutabledict-4.2.1.ebuild
new file mode 100644
index 000000000000..21ceea8ead0f
--- /dev/null
+++ b/dev-python/immutabledict/immutabledict-4.2.1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=poetry
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="An immutable wrapper around dictionaries"
+HOMEPAGE="
+ https://github.com/corenting/immutabledict/
+ https://pypi.org/project/immutabledict/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+ # performance test which fails occasionally under heavy load,
+ # see bug 924831
+ tests/test_immutabledict.py::TestImmutableDict::test_performance
+)