commit: e77c9399bc5250ba1259a82d4bc63d1a2605b811
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 15 16:36:28 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Sep 15 18:30:49 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e77c9399
dev-python/orderly-set: Bump to 5.2.3
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/orderly-set/Manifest | 1 +
dev-python/orderly-set/orderly-set-5.2.3.ebuild | 29 +++++++++++++++++++++++++
2 files changed, 30 insertions(+)
diff --git a/dev-python/orderly-set/Manifest b/dev-python/orderly-set/Manifest
index 358b3bb944d6..66df53048a91 100644
--- a/dev-python/orderly-set/Manifest
+++ b/dev-python/orderly-set/Manifest
@@ -1 +1,2 @@
DIST orderly-set-5.2.2.gh.tar.gz 21460 BLAKE2B
5660d7550d5c79351fcc66e611ba776d6340d0fc1f3a5344f308cbc00a7b2c47045a1cfe8c6ac76c7976a65b17953362e91d60d87a7fbb02f36a5d67f074dfe9
SHA512
d480677c04f32e69cc9361dff383765fe2c9df971ad77cdcbab3b650a0bad27b9bd99144cd406d5185440d674bc838acb1c2ba3a4b115fcff2eba34c19589637
+DIST orderly_set-5.2.3.tar.gz 19698 BLAKE2B
32366c106f0cd71e80f4c4d2278f6590f497ad70962eec96bb67f1cceefed5bb401408093416c8a7adc97eed333cdc657e542608581e11064581cb3d6fe613c7
SHA512
6c64086de55c6152056d8f92e35273865bc94616b90e1c56f4c88e94d6e9d39759f76d4ff57000d87abccb4ddc8faf441a71253d2b94bb9718d35b7a95342ddb
diff --git a/dev-python/orderly-set/orderly-set-5.2.3.ebuild
b/dev-python/orderly-set/orderly-set-5.2.3.ebuild
new file mode 100644
index 000000000000..e8a0d4a9057f
--- /dev/null
+++ b/dev-python/orderly-set/orderly-set-5.2.3.ebuild
@@ -0,0 +1,29 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 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"
+
+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
+}