summaryrefslogtreecommitdiff
path: root/dev-python/immutabledict
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-10-13 08:49:58 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-10-13 08:49:58 +0000
commit3087c7476a05c19267b31b20359dd59bad5a86bb (patch)
treee5bbbd854b9465b6e743fc8b6694884c0bcb2c22 /dev-python/immutabledict
parent990e232a39a4645aa993dd440c997f1a01304379 (diff)
downloadbaldeagleos-repo-3087c7476a05c19267b31b20359dd59bad5a86bb.tar.gz
baldeagleos-repo-3087c7476a05c19267b31b20359dd59bad5a86bb.tar.xz
baldeagleos-repo-3087c7476a05c19267b31b20359dd59bad5a86bb.zip
Adding metadata
Diffstat (limited to 'dev-python/immutabledict')
-rw-r--r--dev-python/immutabledict/Manifest1
-rw-r--r--dev-python/immutabledict/immutabledict-4.2.1.ebuild2
-rw-r--r--dev-python/immutabledict/immutabledict-4.2.2.ebuild27
3 files changed, 29 insertions, 1 deletions
diff --git a/dev-python/immutabledict/Manifest b/dev-python/immutabledict/Manifest
index ffb3dd8b4740..be9cabad7b34 100644
--- a/dev-python/immutabledict/Manifest
+++ b/dev-python/immutabledict/Manifest
@@ -1 +1,2 @@
DIST immutabledict-4.2.1.tar.gz 6228 BLAKE2B 55c97af9d906567f8ba9096d4bc30734012f72b9d7d6cf3a6268ba1219b5b64eb985d2665b131be1ad017e93fc05d66250df3e0826d02f24eaacaf8daf13df89 SHA512 bf09067a371abe4caa829b9ad08000f244a8ed8cbbc6f25c118f555a9f281c2b7e26f66f112a5188e80b49e826a76953040f45eb64f3ce9d258dc66c911a5200
+DIST immutabledict-4.2.2.tar.gz 6099 BLAKE2B 34f31b0d5a75d7565f0bce04a98e34afe7932a532bf407b72d097567c4f49c52ae32905ce5b30103c809f0adce2cb530679ce90e8fcce5f602befe15fcdd0263 SHA512 86a50d5327292bc58b1c22bfd8d2863f8aa674e4a8f54f03704969a9ca682a4728cfe5141abc05104f6b065b7b67ddb3bae39c9c20a4c01824a9565f9ccd5b6f
diff --git a/dev-python/immutabledict/immutabledict-4.2.1.ebuild b/dev-python/immutabledict/immutabledict-4.2.1.ebuild
index 611d8005d06d..53a964007714 100644
--- a/dev-python/immutabledict/immutabledict-4.2.1.ebuild
+++ b/dev-python/immutabledict/immutabledict-4.2.1.ebuild
@@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=poetry
-PYTHON_COMPAT=( python3_{11..14} )
+PYTHON_COMPAT=( python3_{10..14} )
inherit distutils-r1 pypi
diff --git a/dev-python/immutabledict/immutabledict-4.2.2.ebuild b/dev-python/immutabledict/immutabledict-4.2.2.ebuild
new file mode 100644
index 000000000000..3d0ddabdb586
--- /dev/null
+++ b/dev-python/immutabledict/immutabledict-4.2.2.ebuild
@@ -0,0 +1,27 @@
+# Copyright 2023-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=poetry
+PYTHON_COMPAT=( python3_{10..14} )
+
+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
+)