blob: 5e1e17fc1c509dbf9c6133fa4ff8b785e724c932 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
# Version 0.2.1 with additional upstream fixes for python 3.12 support and
# miscelleanous bufixes
COMMIT_SHA1="3b298558e419b0f575f4026be02dd369a4e5f245"
inherit distutils-r1
DESCRIPTION="Transit relay server for magic-wormhole"
HOMEPAGE="https://magic-wormhole.readthedocs.io/en/latest/ https://pypi.org/project/magic-wormhole-transit-relay/"
SRC_URI="https://github.com/magic-wormhole/${PN}/archive/${COMMIT_SHA1}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86"
S="${WORKDIR}/magic-wormhole-transit-relay-${COMMIT_SHA1}"
RDEPEND="
dev-python/autobahn[${PYTHON_USEDEP}]
dev-python/twisted[ssl,${PYTHON_USEDEP}]"
distutils_enable_tests pytest
python_test() {
# deselect test_buff_fill test because it exhibits intermittent hangs,
# bug #907200
local EPYTEST_DESELECT=(
src/wormhole_transit_relay/test/test_backpressure.py::TransitWebSockets::test_buffer_fill
)
epytest
}
|