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: Sat, 25 Sep 2021 07:46:06
Message-Id: 1632555944.74b4c03fd307ee9d86c4e8aebe431ca0a8e43c78.mgorny@gentoo
1 commit: 74b4c03fd307ee9d86c4e8aebe431ca0a8e43c78
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 25 07:03:23 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 25 07:45:44 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74b4c03f
7
8 dev-python/websockets: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/websockets/websockets-9.1.ebuild | 27 ---------------------------
13 1 file changed, 27 deletions(-)
14
15 diff --git a/dev-python/websockets/websockets-9.1.ebuild b/dev-python/websockets/websockets-9.1.ebuild
16 deleted file mode 100644
17 index 5e3b89269e2..00000000000
18 --- a/dev-python/websockets/websockets-9.1.ebuild
19 +++ /dev/null
20 @@ -1,27 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -PYTHON_COMPAT=( python3_{8..9} )
27 -
28 -inherit distutils-r1
29 -
30 -DESCRIPTION="Library for building WebSocket servers and clients in Python"
31 -HOMEPAGE="https://websockets.readthedocs.io/"
32 -SRC_URI="https://github.com/aaugustin/${PN}/archive/${PV}.tar.gz -> ${P}-src.tar.gz"
33 -LICENSE="BSD"
34 -
35 -SLOT="0"
36 -KEYWORDS="amd64 arm arm64 ppc ppc64 sparc x86"
37 -
38 -distutils_enable_tests unittest
39 -
40 -src_prepare() {
41 - # these fail due to timeouts on slower hardware
42 - sed -e 's:test_keepalive_ping_with_no_ping_timeout:_&:' \
43 - -e 's:test_keepalive_ping(:_&:' \
44 - -i tests/legacy/test_protocol.py || die
45 -
46 - distutils-r1_src_prepare
47 -}