commit:     445df981820262fcb3b18743cc6ba027a9420206
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 30 14:37:21 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Dec 30 14:40:12 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=445df981

dev-python/fakeredis: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/fakeredis/Manifest                |  1 -
 dev-python/fakeredis/fakeredis-2.20.0.ebuild | 84 ----------------------------
 2 files changed, 85 deletions(-)

diff --git a/dev-python/fakeredis/Manifest b/dev-python/fakeredis/Manifest
index 073adb9ec77f..3c425f13f1d7 100644
--- a/dev-python/fakeredis/Manifest
+++ b/dev-python/fakeredis/Manifest
@@ -1,2 +1 @@
-DIST fakeredis-2.20.0.tar.gz 122679 BLAKE2B 
2fd982761fe6e8bd66d2d93b7140b9b97e20d33e40827ac9ab7d050d6e9814891e8a1f95a4f789bc78a1589fe215b40834876da5a3dd0a0ea6f8f7a3489ba400
 SHA512 
3c71a42df92a92b02c4774cf120c697a5e7f376768923b74561fb4cbe10605b4d57ea826d2b8c4d304ff1e12cf4c84d0fbebc34edd0afa0b0241ff7cb707e5de
 DIST fakeredis-2.20.1.tar.gz 122874 BLAKE2B 
65404806c15c9fb9b1a59f04ef64804fae9034ce53658058edea03fc9ca5b3348129a143d6f86566eebcb3b052316ce120d8d04b6ad52d8c5ede81db6906713e
 SHA512 
7ead4a7b5eed318380471ef421a0c59a33142067a104f5e0530e066b62a12f26011233366619ea068cfa71eaf4c617e89a94d62f1a2cda366783e7614e5aa32e

diff --git a/dev-python/fakeredis/fakeredis-2.20.0.ebuild 
b/dev-python/fakeredis/fakeredis-2.20.0.ebuild
deleted file mode 100644
index 96f1eacde523..000000000000
--- a/dev-python/fakeredis/fakeredis-2.20.0.ebuild
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 2020-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=poetry
-PYTHON_COMPAT=( pypy3 python3_{10..12} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Fake implementation of redis API for testing purposes"
-HOMEPAGE="
-       https://github.com/cunla/fakeredis-py/
-       https://pypi.org/project/fakeredis/
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~riscv ~sparc x86"
-
-RDEPEND="
-       dev-python/packaging[${PYTHON_USEDEP}]
-       >=dev-python/redis-4.2[${PYTHON_USEDEP}]
-       <dev-python/sortedcontainers-3[${PYTHON_USEDEP}]
-       >=dev-python/sortedcontainers-2[${PYTHON_USEDEP}]
-"
-BDEPEND="
-       test? (
-               dev-db/redis
-               dev-python/pytest-asyncio[${PYTHON_USEDEP}]
-               dev-python/pytest-mock[${PYTHON_USEDEP}]
-       )
-"
-
-distutils_enable_tests pytest
-
-python_test() {
-       local EPYTEST_DESELECT=(
-               # also lupa
-               test/test_aioredis2.py::test_failed_script_error
-               # TODO
-               "test/test_fakeredis.py::test_set_get_nx[StrictRedis]"
-               "test/test_fakeredis.py::test_lpop_count[StrictRedis]"
-               "test/test_fakeredis.py::test_rpop_count[StrictRedis]"
-               "test/test_fakeredis.py::test_zadd_minus_zero[StrictRedis]"
-               
"test/test_mixins/test_pubsub_commands.py::test_pubsub_channels[StrictRedis]"
-               
test/test_mixins/test_set_commands.py::test_smismember_wrong_type
-               # new redis-server?
-               
"test/test_mixins/test_pubsub_commands.py::test_pubsub_shardnumsub[StrictRedis]"
-               # json ext
-               test/test_json/test_json.py
-               test/test_json/test_json_arr_commands.py
-       )
-       local EPYTEST_IGNORE=(
-               # these tests fail a lot...
-               test/test_hypothesis.py
-       )
-       local args=(
-               # tests requiring lupa (lua support)
-               -k 'not test_eval and not test_lua and not test_script'
-       )
-       # Note: this package is not xdist-friendly
-       epytest "${args[@]}"
-}
-
-src_test() {
-       local redis_pid="${T}"/redis.pid
-       local redis_port=6379
-
-       einfo "Spawning Redis"
-       einfo "NOTE: Port ${redis_port} must be free"
-       "${EPREFIX}"/usr/sbin/redis-server - <<- EOF || die "Unable to start 
redis server"
-               daemonize yes
-               pidfile ${redis_pid}
-               port ${redis_port}
-               bind 127.0.0.1
-       EOF
-
-       # Run the tests
-       distutils-r1_src_test
-
-       # Clean up afterwards
-       kill "$(<"${redis_pid}")" || die
-}

Reply via email to