commit: b2da2639f3b2e06406110fc4d47e6bb098f63799
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 12 04:29:54 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Apr 12 04:29:54 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2da2639
dev-python/orderly-set: Bump to 5.4.0
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/orderly-set/Manifest | 1 +
dev-python/orderly-set/orderly-set-5.4.0.ebuild | 29 +++++++++++++++++++++++++
2 files changed, 30 insertions(+)
diff --git a/dev-python/orderly-set/Manifest b/dev-python/orderly-set/Manifest
index aed94160093a..6b868e848a44 100644
--- a/dev-python/orderly-set/Manifest
+++ b/dev-python/orderly-set/Manifest
@@ -1 +1,2 @@
DIST orderly_set-5.3.2.tar.gz 20937 BLAKE2B
7c5a6193d02cd802300e03c2a96abff85312b8ff11aacb4fce338f9c4e4a8fd63f411570bbfef709af29a381d4823ed805c5e7c496be708adab2254cf2708ba8
SHA512
f7803f001f5510d060f1a1264104bfa652bc498da9d8db5526d2796fdc17c72a1d780374b2bb934be38a970b02468bb3764ab48880f4839dd2d83173266d65f6
+DIST orderly_set-5.4.0.tar.gz 20934 BLAKE2B
49259d0e18db9988d080dd464381086ee4c6fe351a66de43cbf1dde26e2e64b289d363df784bfeca8eb0bc1569f400e0ba72672f86e640cff6830e569c2dac03
SHA512
2de050ffd87919540952a54df8b0f28f1e1ed6b503c4e99b3737119287bf5d10e06d5c4d6a6efae953dd95c16429f277c01fdc08e9a1c4aa75a8939128d7bc50
diff --git a/dev-python/orderly-set/orderly-set-5.4.0.ebuild
b/dev-python/orderly-set/orderly-set-5.4.0.ebuild
new file mode 100644
index 000000000000..527da2d7a8ca
--- /dev/null
+++ b/dev-python/orderly-set/orderly-set-5.4.0.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
+}