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: Fri, 03 Dec 2021 16:41:20
Message-Id: 1638549655.049845b6da437491d1341b0b97df15a205c4d932.mgorny@gentoo
1 commit: 049845b6da437491d1341b0b97df15a205c4d932
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 3 16:40:55 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 3 16:40:55 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=049845b6
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 | 2 --
13 dev-python/websockets/websockets-9.1-r1.ebuild | 38 --------------------------
14 2 files changed, 40 deletions(-)
15
16 diff --git a/dev-python/websockets/Manifest b/dev-python/websockets/Manifest
17 index 84a8b95eb32a..de724b503ed6 100644
18 --- a/dev-python/websockets/Manifest
19 +++ b/dev-python/websockets/Manifest
20 @@ -1,4 +1,2 @@
21 DIST websockets-10.0-src.tar.gz 276231 BLAKE2B 6170f0540bc33be3d9a71f596ffee58e6e43c2173239a8fffe4f0c2a7555f8ce26849d85ed7865a5df6a4401f01bb0c928a341598916487cc79152a5031e9bbc SHA512 532289dc411d11cffc6e5aa07013cdad9655f124fbbd5dbdfe92985caf554644976a521466b1d3cbe124de11809e395b5e83195eac87495585779591b189c4d7
22 DIST websockets-10.1-src.tar.gz 299315 BLAKE2B 425e7c8597f081874127ac75003aed11ebb2cf647ce9fed9e17c955e485a7a59c95d1112524d3f0d747b796b0cc41972258661c9fc9c7972f68aaebe3223b596 SHA512 c284ec92bc133c7083a72d4f364d9ace13d3eb6d7355ae46084d8097c137cdec3933cae9d5ab72d8a517af38328cea6c39877f747f5386df54a7362271cc7e7b
23 -DIST websockets-9.1-python-3.10-support.patch.gz 6940 BLAKE2B e4835c7d5efaf956d07b884c85e0b95f26674bf36164fa8362d1c1a564a959bde761d25e747333c58864f74a5ea1b199f228a46ec6a1647c5495ea032020c179 SHA512 7fb4b298a9167c8d913e293fa7549b21d5acb333a5b97e0624a22cb83548ef548b819ac23750c40295140b6f83a701c73a81fdcaed3ab8e704dbee8e17d22f1d
24 -DIST websockets-9.1-src.tar.gz 191813 BLAKE2B cb3807f01e1a4c22a40bf5150d1e8b21ca786dc5bc4da8f3e6602971f3f7c79b57092f5ddfe3ee52ec00e7fd15f3a992fdbb94b5e26599f2621a7f51434ba6dd SHA512 ff2907a913ff0b8ced6dda72b6fc6512a2ece3ffded2e2dcb8ff6805de9ad504430cc1871c1f6e02ab8069e7b96b2e7609afaf3c9c25f9271b28e2daa72bd3ac
25
26 diff --git a/dev-python/websockets/websockets-9.1-r1.ebuild b/dev-python/websockets/websockets-9.1-r1.ebuild
27 deleted file mode 100644
28 index 319a32d784b5..000000000000
29 --- a/dev-python/websockets/websockets-9.1-r1.ebuild
30 +++ /dev/null
31 @@ -1,38 +0,0 @@
32 -# Copyright 1999-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=8
36 -
37 -PYTHON_COMPAT=( python3_{8..10} )
38 -
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="Library for building WebSocket servers and clients in Python"
42 -HOMEPAGE="https://websockets.readthedocs.io/"
43 -SRC_URI="
44 - https://github.com/aaugustin/${PN}/archive/${PV}.tar.gz -> ${P}-src.tar.gz
45 - https://dev.gentoo.org/~sbraz/${P}-python-3.10-support.patch.gz
46 -"
47 -
48 -LICENSE="BSD"
49 -SLOT="0"
50 -KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv sparc x86"
51 -
52 -distutils_enable_tests unittest
53 -
54 -PATCHES=(
55 - # https://github.com/aaugustin/websockets/commit/08d8011132ba038b3f6c4d591189b57af4c9f147
56 - "${WORKDIR}/${P}-python-3.10-support.patch"
57 -)
58 -
59 -src_prepare() {
60 - # these fail due to timeouts on slower hardware
61 - sed -e 's:test_keepalive_ping_with_no_ping_timeout:_&:' \
62 - -e 's:test_keepalive_ping(:_&:' \
63 - -i tests/legacy/test_protocol.py || die
64 -
65 - distutils-r1_src_prepare
66 -}
67 -
68 -# Be more tolerant with time-sensitive tests for slow systems.
69 -export WEBSOCKETS_TESTS_TIMEOUT_FACTOR=100