summaryrefslogtreecommitdiff
path: root/dev-python/websockets/websockets-10.2.ebuild
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-06-05 12:39:54 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2022-06-05 12:39:54 +0000
commitbbab45ec0e33d75a87afaaae612e26b95059a6cc (patch)
tree3be68b31ad1c84d00124c424f0f57a218d490ecd /dev-python/websockets/websockets-10.2.ebuild
parent86013bc138a001d502fde74d8ace375c0e796fc1 (diff)
downloadbaldeagleos-repo-bbab45ec0e33d75a87afaaae612e26b95059a6cc.tar.gz
baldeagleos-repo-bbab45ec0e33d75a87afaaae612e26b95059a6cc.tar.xz
baldeagleos-repo-bbab45ec0e33d75a87afaaae612e26b95059a6cc.zip
Adding metadata
Diffstat (limited to 'dev-python/websockets/websockets-10.2.ebuild')
-rw-r--r--dev-python/websockets/websockets-10.2.ebuild34
1 files changed, 0 insertions, 34 deletions
diff --git a/dev-python/websockets/websockets-10.2.ebuild b/dev-python/websockets/websockets-10.2.ebuild
deleted file mode 100644
index c945fb83e6d6..000000000000
--- a/dev-python/websockets/websockets-10.2.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# 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_{7,8,9,10} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Library for building WebSocket servers and clients in Python"
-HOMEPAGE="https://websockets.readthedocs.io/"
-SRC_URI="
- https://github.com/aaugustin/${PN}/archive/${PV}.tar.gz -> ${P}-src.tar.gz
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
-
-distutils_enable_tests pytest
-
-python_test() {
- local EPYTEST_DESELECT=(
- # very fragile to speed
- tests/legacy/test_protocol.py::ServerTests::test_local_close_receive_close_frame_timeout
- )
- [[ ${EPYTHON} == pypy3 ]] && EPYTEST_DESELECT+=(
- tests/test_utils.py::SpeedupsTests::test_apply_mask_non_contiguous_memoryview
- tests/legacy/test_client_server.py::SecureClientServerTests::test_http_request_ws_endpoint
- )
-
- epytest tests
-}