Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/websockets/
Date: Sun, 05 Jun 2022 10:35:52
Message-Id: 1654425345.71d69182cd9a2c73985b9f1b13d3d5de93bf216d.mgorny@gentoo
1 commit: 71d69182cd9a2c73985b9f1b13d3d5de93bf216d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 5 10:05:07 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 5 10:35:45 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71d69182
7
8 dev-python/websockets: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/websockets/Manifest | 1 -
13 dev-python/websockets/websockets-10.2.ebuild | 34 ----------------------------
14 2 files changed, 35 deletions(-)
15
16 diff --git a/dev-python/websockets/Manifest b/dev-python/websockets/Manifest
17 index 510018fac960..8f7dd146ef05 100644
18 --- a/dev-python/websockets/Manifest
19 +++ b/dev-python/websockets/Manifest
20 @@ -1,2 +1 @@
21 -DIST websockets-10.2-src.tar.gz 302766 BLAKE2B 2313bab904de3671f973191f1c43d275ede44c87811d82f22c6bd76145610ba5d4ba4d7a1b3a564bfc8c4a9b7921b2edc640af9304733e85deac1e728f0050f3 SHA512 b8c7fbe627e1c411112b0d66e561aa9bcf15d6de07a9cccd203211e0e6af49762774e09f8c5f4523fe214731ae7a96ed4b63639c7ed66fee062cdda3e5fba350
22 DIST websockets-10.3.gh.tar.gz 304375 BLAKE2B db6075304613ff74ad5928a0c57e90a7d418ac0b9532adba4c6a17b3c3f1982cc94db8ac4c0da5f65343a915f3b2e7ccedce4e6d5d4960cb72fc93c3db6e041c SHA512 75a11dd7605808954c5f59decda5b115db73de96ed4023d8d7ee3c9966551a9ded2d771f76b086c76f49b0787f19349dadcd9010eb5fea8eeddf3d9bba1c6cbb
23
24 diff --git a/dev-python/websockets/websockets-10.2.ebuild b/dev-python/websockets/websockets-10.2.ebuild
25 deleted file mode 100644
26 index 4287b1679bd3..000000000000
27 --- a/dev-python/websockets/websockets-10.2.ebuild
28 +++ /dev/null
29 @@ -1,34 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -DISTUTILS_USE_PEP517=setuptools
36 -PYTHON_COMPAT=( pypy3 python3_{8..10} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Library for building WebSocket servers and clients in Python"
41 -HOMEPAGE="https://websockets.readthedocs.io/"
42 -SRC_URI="
43 - https://github.com/aaugustin/${PN}/archive/${PV}.tar.gz -> ${P}-src.tar.gz
44 -"
45 -
46 -LICENSE="BSD"
47 -SLOT="0"
48 -KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
49 -
50 -distutils_enable_tests pytest
51 -
52 -python_test() {
53 - local EPYTEST_DESELECT=(
54 - # very fragile to speed
55 - tests/legacy/test_protocol.py::ServerTests::test_local_close_receive_close_frame_timeout
56 - )
57 - [[ ${EPYTHON} == pypy3 ]] && EPYTEST_DESELECT+=(
58 - tests/test_utils.py::SpeedupsTests::test_apply_mask_non_contiguous_memoryview
59 - tests/legacy/test_client_server.py::SecureClientServerTests::test_http_request_ws_endpoint
60 - )
61 -
62 - epytest tests
63 -}