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/wsaccel/
Date: Sun, 30 Oct 2022 06:40:04
Message-Id: 1667111947.eb0af72c5d09d6b32d5b79d661f7747d14e21cc0.mgorny@gentoo
1 commit: eb0af72c5d09d6b32d5b79d661f7747d14e21cc0
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 30 06:22:22 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 30 06:39:07 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb0af72c
7
8 dev-python/wsaccel: Bump to 0.6.4
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/wsaccel/Manifest | 1 +
13 dev-python/wsaccel/wsaccel-0.6.4.ebuild | 34 +++++++++++++++++++++++++++++++++
14 2 files changed, 35 insertions(+)
15
16 diff --git a/dev-python/wsaccel/Manifest b/dev-python/wsaccel/Manifest
17 index 701ce88fac1d..3ada886fa1e7 100644
18 --- a/dev-python/wsaccel/Manifest
19 +++ b/dev-python/wsaccel/Manifest
20 @@ -1 +1,2 @@
21 DIST wsaccel-0.6.3.tar.gz 9723 BLAKE2B 75da0f27e07b52ed730d239ef807da7ba9dd342144ca2e78c32dc09b20c1ebfc006aa9969b1f811d172ca18b75533a4560a29112e56d6dfd472117a0d072fc8e SHA512 0fe97c7fa94cec1b9cf019507f55ce633a9b4bda86329937cddcfa25ba94755010813688cda77ee4fea1c50918e45cd50770bb27e7583e630c46e84d27c155da
22 +DIST wsaccel-0.6.4.gh.tar.gz 9947 BLAKE2B 1c0b7b8b82154420f64fcbf3217938ff7e829573ada6b979ff73fe450c0985e368a47cccf2d124506c28479a98f0799977677e16ee26754611362f6b61eff902 SHA512 980364fab8a661c8a2b406f9eb6c99fb5f3a1308bbcf6267fa63f002d8dfbb4a3ad027d83a2088d69324cab05bdc56138d7e66e2602aeb8864dfe49ad9218d07
23
24 diff --git a/dev-python/wsaccel/wsaccel-0.6.4.ebuild b/dev-python/wsaccel/wsaccel-0.6.4.ebuild
25 new file mode 100644
26 index 000000000000..9ab10d76298f
27 --- /dev/null
28 +++ b/dev-python/wsaccel/wsaccel-0.6.4.ebuild
29 @@ -0,0 +1,34 @@
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=( python3_{8..11} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Accelerator for ws4py, autobahn and tornado"
41 +HOMEPAGE="
42 + https://github.com/methane/wsaccel/
43 + https://pypi.org/project/wsaccel/
44 +"
45 +SRC_URI="
46 + https://github.com/methane/wsaccel/archive/v${PV}.tar.gz
47 + -> ${P}.gh.tar.gz
48 +"
49 +
50 +SLOT="0"
51 +LICENSE="Apache-2.0"
52 +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86 ~amd64-linux ~x86-linux"
53 +
54 +BDEPEND="
55 + dev-python/cython[${PYTHON_USEDEP}]
56 +"
57 +
58 +distutils_enable_tests pytest
59 +
60 +python_test() {
61 + cd tests || die
62 + epytest
63 +}