diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-10-02 06:18:10 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-10-02 06:18:10 +0200 |
commit | 8eba106bf0a6b4121c9a61da48495f0990c9e1e3 (patch) | |
tree | 78271045b1c239f7c21a1d9f791ea89de73c802d /dev-python/immutables | |
parent | dev-python/coverage: Remove old (diff) | |
download | gentoo-8eba106bf0a6b4121c9a61da48495f0990c9e1e3.tar.gz gentoo-8eba106bf0a6b4121c9a61da48495f0990c9e1e3.tar.bz2 gentoo-8eba106bf0a6b4121c9a61da48495f0990c9e1e3.zip |
dev-python/immutables: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/immutables')
-rw-r--r-- | dev-python/immutables/Manifest | 1 | ||||
-rw-r--r-- | dev-python/immutables/immutables-0.19.ebuild | 44 |
2 files changed, 0 insertions, 45 deletions
diff --git a/dev-python/immutables/Manifest b/dev-python/immutables/Manifest index 892c3cff90bf..aba8fbe43b0a 100644 --- a/dev-python/immutables/Manifest +++ b/dev-python/immutables/Manifest @@ -1,2 +1 @@ -DIST immutables-0.19.gh.tar.gz 85695 BLAKE2B b6457bd4e61c79ffc4ae83c1be3845ea1914ef6604ee8b0886c1ab24dba96e226444af5adc1032dc36e6f3058acac8a8f0289ce97f97874b02aae85eb3bc2ee1 SHA512 b1027e9ab4a304dcb953037a1ea4af082d0524255bcf3f3f368deda85b9a9e5b1c556638aab7a10cbf200fc14b85c8b739f212035f8ead1dff941b8f6da09668 DIST immutables-0.20.gh.tar.gz 88169 BLAKE2B fb76793d8d908ea35999a9d3d36cdb6cc2021fda07d0822b23bf1eb7fe02031ac26a7aa3e83e890af24b949eedf6d81089a3670e96f9873a60339d0da44d2484 SHA512 b20a661e4a9161a2fe3db674aac8e84a36dd3e56083e6f6d6b1261a00d38adc136c0a2dce67243a5a4cd5b0568aa48a9d4c758fb27cf74e055f378a501c0f725 diff --git a/dev-python/immutables/immutables-0.19.ebuild b/dev-python/immutables/immutables-0.19.ebuild deleted file mode 100644 index 7fb45800af2d..000000000000 --- a/dev-python/immutables/immutables-0.19.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 2019-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_EXT=1 -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( pypy3 python3_{10..12} ) - -inherit distutils-r1 - -DESCRIPTION="A high-performance immutable mapping type for Python" -HOMEPAGE=" - https://github.com/MagicStack/immutables/ - https://pypi.org/project/immutables/ -" -SRC_URI=" - https://github.com/MagicStack/${PN}/archive/v${PV}.tar.gz - -> ${P}.gh.tar.gz -" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86" - -distutils_enable_tests pytest - -src_prepare() { - sed -i -e '/mypy/d' tests/conftest.py || die - distutils-r1_src_prepare - - # workaround check removed from python3.12 - # https://github.com/MagicStack/immutables/pull/103 - export CFLAGS="${CFLAGS} -DHAVE_STDARG_PROTOTYPES=1" -} - -src_test() { - local EPYTEST_IGNORE=( - tests/test_mypy.py - ) - - rm -r immutables || die - distutils-r1_src_test -} |