From b84e3d882eaca5dc58f02793cc14afe7ad984497 Mon Sep 17 00:00:00 2001 From: Marcin Deranek Date: Tue, 10 Jan 2023 22:43:09 +0100 Subject: dev-python/channels-redis-3.x --- dev-python/channels-redis/Manifest | 2 + .../channels-redis/channels-redis-3.4.1.ebuild | 92 ++++++++++++++++++++++ 2 files changed, 94 insertions(+) create mode 100644 dev-python/channels-redis/channels-redis-3.4.1.ebuild (limited to 'dev-python') diff --git a/dev-python/channels-redis/Manifest b/dev-python/channels-redis/Manifest index d3f8b38..1250e1a 100644 --- a/dev-python/channels-redis/Manifest +++ b/dev-python/channels-redis/Manifest @@ -1,3 +1,5 @@ +DIST channels-redis-3.4.1.gh.tar.gz 29918 BLAKE2B 4b586f9dc4538986935ae04a719ef62b7d316cc8e43a3f35132bb91d22d781fcef5bb40f8667799b1857f6be44b3a143980d254e7d5e872332ce2f57639a33b5 SHA512 748d3d2061bbe70ed720e2acc8bc80368105bcd81ab58fe5f55342d7147ffc3abae24d21cdc0aca9fefa38fb483ffe6b4278687962bc8bb54825ca9ecd5c7d1f DIST channels-redis-4.0.0.gh.tar.gz 27781 BLAKE2B 20fe5d8d742ce2986d6598116bf86a06f89bcdd3840be6e8b3df4af2c53b881fd8560dbdee9d9a9f871c4b3ced3f797472bf42e23219b404d6d7362e85ca0e2d SHA512 1be61a52c750e5d0fa76e2cfb51942de12f92d9ae518bcf7aa83a796f685b75d0b4ca1c056239e77267b39570b877b686b12f78acc6aed7a557e081f98be9eb3 +EBUILD channels-redis-3.4.1.ebuild 2592 BLAKE2B 7698475c285dbabbf2608dd8317fd3d342c0481c62635bb6d29a44cc50264ae47e2f52f0926620975a0d77eabb770ea085847c29ee9f157d3c3885c77de0378c SHA512 9009200711e858921a260d840e6dfae3d1e96fa527b5cae67b83c628ea49f10f0b6e0633d15cca5ae36ea7b075c3663681a8965992f6e2110dc7c6090f13810c EBUILD channels-redis-4.0.0.ebuild 1697 BLAKE2B 19220156013abc2658736c40a802549cebb94907b9731b51a80ada4dea6164d7af6210c2faae73066db4cbd8349eb3b1fc1f53df217147073be9763b7762767b SHA512 b2858ab862dbc61fec345037dc7f1be54e3e57c728ea3e7960da72b0af11729f43d397001e10bd279bbf840e777f83299977d199f23365812dfecc4e6c6629ef MISC metadata.xml 462 BLAKE2B f20c8915f4deeef22958c25161423491978a0d2615f72084b7e528aa26ebc57f4fa1dd831bea0275d54f3050576a598e9355132fe562d648b290dab416ced58f SHA512 d1c57ef70042b2f5b49936e3dc6c232e9026cd241cfaf079393f91121678b351663e7af7ed6ce912807973ac1dfba9554085b176de2c40dc14b521a1d68d122f diff --git a/dev-python/channels-redis/channels-redis-3.4.1.ebuild b/dev-python/channels-redis/channels-redis-3.4.1.ebuild new file mode 100644 index 0000000..39db296 --- /dev/null +++ b/dev-python/channels-redis/channels-redis-3.4.1.ebuild @@ -0,0 +1,92 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..11} ) + +inherit distutils-r1 + +MY_P=${P/-/_} +DESCRIPTION="Provides Django Channels channel layers that use Redis as a backing store." +HOMEPAGE="https://github.com/django/channels_redis" +SRC_URI="https://github.com/django/${PN/-/_}/archive/${PV}.tar.gz -> ${P}.gh.tar.gz" +S="${WORKDIR}/${MY_P}" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND=" + >=dev-python/aioredis-1.0[${PYTHON_USEDEP}] + =dev-python/asgiref-3.2.10[${PYTHON_USEDEP}] + =dev-python/cryptography-1.3.0[${PYTHON_USEDEP}] + +DOCS=( README.rst ) + +distutils_enable_tests pytest + +EPYTEST_DESELECT=( + tests/test_core.py::test_send_receive + tests/test_core.py::test_send_capacity + tests/test_core.py::test_process_local_send_receive + tests/test_core.py::test_reject_bad_channel + tests/test_core.py::test_reject_bad_client_prefix + tests/test_core.py::test_group_send_capacity + tests/test_core.py::test_group_send_capacity_multiple_channels + tests/test_pubsub.py::test_send_receive + tests/test_pubsub.py::test_send_receive_sync + tests/test_pubsub.py::test_multi_send_receive + tests/test_pubsub.py::test_multi_send_receive_sync + tests/test_pubsub.py::test_groups_basic + tests/test_pubsub.py::test_groups_same_prefix + tests/test_pubsub.py::test_receive_on_non_owned_general_channel + tests/test_pubsub.py::test_random_reset__channel_name + tests/test_pubsub.py::test_loop_instance_channel_layer_reference + tests/test_pubsub.py::test_serialize + tests/test_pubsub.py::test_deserialize + tests/test_pubsub.py::test_multi_event_loop_garbage_collection + tests/test_pubsub.py::test_proxied_methods_coroutine_check +) + +python_prepare_all() { + # Remove sentinel tests + rm tests/test{_pubsub,}_sentinel.py + + distutils-r1_python_prepare_all +} + +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 + 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 +} -- cgit v1.2.3