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/wsproto/
Date: Sat, 26 Feb 2022 08:35:00
Message-Id: 1645864490.7f0359d17606b6c009b667486b6bd5e236518c3b.mgorny@gentoo
1 commit: 7f0359d17606b6c009b667486b6bd5e236518c3b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 26 08:32:22 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 26 08:34:50 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f0359d1
7
8 dev-python/wsproto: EAPI 8, PEP517
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/wsproto/wsproto-1.0.0-r1.ebuild | 26 ++++++++++++++++++++++++++
13 1 file changed, 26 insertions(+)
14
15 diff --git a/dev-python/wsproto/wsproto-1.0.0-r1.ebuild b/dev-python/wsproto/wsproto-1.0.0-r1.ebuild
16 new file mode 100644
17 index 000000000000..b28abfcd3c2d
18 --- /dev/null
19 +++ b/dev-python/wsproto/wsproto-1.0.0-r1.ebuild
20 @@ -0,0 +1,26 @@
21 +# Copyright 1999-2022 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=8
25 +
26 +DISTUTILS_USE_PEP517=setuptools
27 +PYTHON_COMPAT=( python3_{8..10} )
28 +
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="WebSockets state-machine based protocol implementation"
32 +HOMEPAGE="
33 + https://github.com/python-hyper/wsproto/
34 + https://pypi.org/project/wsproto/
35 +"
36 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
37 +
38 +LICENSE="MIT"
39 +SLOT="0"
40 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
41 +
42 +RDEPEND="
43 + >=dev-python/h11-0.9[${PYTHON_USEDEP}]
44 +"
45 +
46 +distutils_enable_tests pytest