dev-python/orderly-set: Bump to 5.4.0

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2025-04-12 06:29:54 +02:00
parent 19f284a921
commit b2da2639f3
2 changed files with 30 additions and 0 deletions

View File

@@ -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

View File

@@ -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
}