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/websockify/
Date: Sat, 04 Mar 2023 05:53:19
Message-Id: 1677909182.7ad38d4f6fa470f5301ca76dfdd19b6119732584.mgorny@gentoo
1 commit: 7ad38d4f6fa470f5301ca76dfdd19b6119732584
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 4 05:49:58 2023 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 4 05:53:02 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ad38d4f
7
8 dev-python/websockify: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/websockify/websockify-0.10.0-r1.ebuild | 36 -----------------------
13 1 file changed, 36 deletions(-)
14
15 diff --git a/dev-python/websockify/websockify-0.10.0-r1.ebuild b/dev-python/websockify/websockify-0.10.0-r1.ebuild
16 deleted file mode 100644
17 index a68815274ef5..000000000000
18 --- a/dev-python/websockify/websockify-0.10.0-r1.ebuild
19 +++ /dev/null
20 @@ -1,36 +0,0 @@
21 -# Copyright 1999-2023 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -PYTHON_COMPAT=( python3_{9..11} )
27 -inherit distutils-r1
28 -
29 -DESCRIPTION="WebSockets support for any application/server"
30 -HOMEPAGE="https://github.com/novnc/websockify"
31 -SRC_URI="
32 - https://github.com/novnc/websockify/archive/v${PV}.tar.gz
33 - -> ${P}.gh.tar.gz"
34 -
35 -LICENSE="LGPL-3"
36 -SLOT="0"
37 -KEYWORDS="amd64 ~arm64 ~riscv x86"
38 -
39 -RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
40 -BDEPEND="test? ( dev-python/jwcrypto[${PYTHON_USEDEP}] )"
41 -
42 -PATCHES=(
43 - "${FILESDIR}/${P}-fix-jwcrypto-1.3.patch"
44 -)
45 -
46 -distutils_enable_tests pytest
47 -
48 -EPYTEST_DESELECT=(
49 - # TODO: incompatible with current jwcrypto? (not a regression)
50 - tests/test_token_plugins.py::JWSTokenTestCase::test_asymmetric_jwe_token_plugin
51 -)
52 -
53 -python_install_all() {
54 - doman docs/${PN}.1
55 - distutils-r1_python_install_all
56 -}