commit:     e85527528e3e260642133bacc577e87184e5a337
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 29 02:12:02 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Sep 29 02:13:52 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8552752

dev-python/fakeredis: Bump to 2.25.0

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

 dev-python/fakeredis/Manifest                |  1 +
 dev-python/fakeredis/fakeredis-2.25.0.ebuild | 97 ++++++++++++++++++++++++++++
 2 files changed, 98 insertions(+)

diff --git a/dev-python/fakeredis/Manifest b/dev-python/fakeredis/Manifest
index 4db8b0968731..38aed514b1f1 100644
--- a/dev-python/fakeredis/Manifest
+++ b/dev-python/fakeredis/Manifest
@@ -1 +1,2 @@
 DIST fakeredis-2.24.1.tar.gz 143606 BLAKE2B 
1f89aed8f7a66c9100748946441d6a6876f1e0795337368fc34a9c89f1c256ddebcbd9b9597f4ff75703c78c3bc60031530423ce358dcc95c1567acec1b9856a
 SHA512 
737ccfee02d05325e752d7cac8fb405937406acac9090709ead76ed8db2e1912f1c0d128a8ea354e78acfae317ec6bccb931f784720a3cd4c84693f9f3607a17
+DIST fakeredis-2.25.0.tar.gz 149072 BLAKE2B 
2ebe9ed25bbae2bf6011502111c14c056298ba9d195a4b558bc8474833d4b1da552ffb48127ef45d8461ddbee88fd88d18d8cb35846f33e313507edc586572b5
 SHA512 
77deaa8ef1d6d677cbb48807d10adf1a019c9c6147eba81b467189a0b4c60ab18b3e3f7501914e6ae4b2a7ebb2a304970c74d9b3d295afae875a73a45f34378d

diff --git a/dev-python/fakeredis/fakeredis-2.25.0.ebuild 
b/dev-python/fakeredis/fakeredis-2.25.0.ebuild
new file mode 100644
index 000000000000..7dfb54aa0658
--- /dev/null
+++ b/dev-python/fakeredis/fakeredis-2.25.0.ebuild
@@ -0,0 +1,97 @@
+# Copyright 2020-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=poetry
+PYTHON_COMPAT=( pypy3 python3_{10..13} )
+
+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.3[${PYTHON_USEDEP}]
+       <dev-python/sortedcontainers-3[${PYTHON_USEDEP}]
+       >=dev-python/sortedcontainers-2[${PYTHON_USEDEP}]
+       $(python_gen_cond_dep '
+               dev-python/typing-extensions[${PYTHON_USEDEP}]
+       ' 3.10)
+"
+BDEPEND="
+       test? (
+               dev-db/redis
+               dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+               dev-python/pytest-mock[${PYTHON_USEDEP}]
+       )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+       distutils-r1_src_prepare
+
+       # https://github.com/cunla/fakeredis-py/issues/320
+       sed -i -e '/LICENSE/d' pyproject.toml || die
+}
+
+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
+               # tdigest ext?
+               
'test/test_mixins/test_server_commands.py::test_command[FakeStrictRedis]'
+       )
+       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
+       local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+       epytest -p asyncio -p pytest_mock "${args[@]}"
+}
+
+src_test() {
+       local redis_pid="${T}"/redis.pid
+       local redis_port=6390
+
+       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