commit: 1222cdb7d8870e94971b89d657616a351b4e6ac6
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 8 04:08:18 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Apr 8 04:44:59 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1222cdb7
dev-python/orderly-set: Bump to 5.3.1
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/orderly-set/Manifest | 1 +
dev-python/orderly-set/orderly-set-5.3.1.ebuild | 29 +++++++++++++++++++++++++
2 files changed, 30 insertions(+)
diff --git a/dev-python/orderly-set/Manifest b/dev-python/orderly-set/Manifest
index 205092518816..94b58a986681 100644
--- a/dev-python/orderly-set/Manifest
+++ b/dev-python/orderly-set/Manifest
@@ -1 +1,2 @@
DIST orderly_set-5.3.0.tar.gz 20026 BLAKE2B
fa5f2e190d9f2ed079e16c45cf60044ba57ddaca875ae70f71a98055bf36053410985db762fbdafb94d7d9faeff906a3e240462267363f15f2f334d96ff852a8
SHA512
b7520653bf23c99ab124bde8b9e34f0c9eb14192eb09b2bfc9736b281f1c5d511964849496fe74c8f35d1000ba5857578906dbf47b581007bdfb81c9bd88c81a
+DIST orderly_set-5.3.1.tar.gz 20826 BLAKE2B
e515531887b285f74c8a21f49c52063f120a60c91c1f7de9bf30479a0acf3d0a3322fbd2db0f353ced7d1c7c26f76c564074b73a942cc577321b3a1d36af05ec
SHA512
1dceadbdb5471111f2c91e319861490768d9bbe22350463a819c799950d8c29753df8e67916a7662edb4c3fb6f8eca9da1bbd6f01f63132b5d68e33ee23cd6ae
diff --git a/dev-python/orderly-set/orderly-set-5.3.1.ebuild
b/dev-python/orderly-set/orderly-set-5.3.1.ebuild
new file mode 100644
index 000000000000..527da2d7a8ca
--- /dev/null
+++ b/dev-python/orderly-set/orderly-set-5.3.1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 2024-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="A package containing multiple implementations of Ordered Set"
+HOMEPAGE="
+ https://github.com/seperman/orderly-set/
+ https://pypi.org/project/orderly-set/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+ distutils-r1_src_prepare
+
+ # unconditional mypy dep for a test that is not even run
+ # https://github.com/seperman/orderly-set/pull/5
+ sed -i -e '/mypy\.api/d' tests/*.py || die
+}