Gentoo Archives: gentoo-commits

From: Alessandro Barbieri <lssndrbarbieri@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/sanic-testing/
Date: Thu, 17 Jun 2021 16:01:57
Message-Id: 1623945711.dfbedffbf04b606fad9e2bb14a1bd77faf407e87.Alessandro-Barbieri@gentoo
1 commit: dfbedffbf04b606fad9e2bb14a1bd77faf407e87
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Thu Jun 17 15:46:37 2021 +0000
4 Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
5 CommitDate: Thu Jun 17 16:01:51 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dfbedffb
7
8 dev-python/sanic-testing: add 0.6.0
9
10 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
11
12 dev-python/sanic-testing/Manifest | 1 +
13 .../sanic-testing/sanic-testing-0.6.0.ebuild | 34 ++++++++++++++++++++++
14 2 files changed, 35 insertions(+)
15
16 diff --git a/dev-python/sanic-testing/Manifest b/dev-python/sanic-testing/Manifest
17 index ac83ad13e..ab6873db1 100644
18 --- a/dev-python/sanic-testing/Manifest
19 +++ b/dev-python/sanic-testing/Manifest
20 @@ -1 +1,2 @@
21 DIST sanic-testing-0.4.0.tar.gz 7859 BLAKE2B 6f2473ed5f0ed4465816a78ebec45ec1624ce660508dde988fb1642d70ab2fd2992052efaae561fc9c845654f8862e43da2685884df19937836f6a82b3aeaac4 SHA512 25ac5421428d930dcb02fe88c046f75d568650cc262ae94bbea55303c58c1668a940176dcfcb8b2c9cf44f174c1dc47549d12c516db843cb86fc925302595057
22 +DIST sanic-testing-0.6.0.tar.gz 7995 BLAKE2B f15d480126a1dd4dd48d58a643cd0c6384eab03ec3555920ca39ee9ddd288f949149e0371fa9470dd5f69b2c8e1310ab8d97323f258af6ee27b8c89e148217f8 SHA512 aa5e298bd800b99d542c8801591a03323bdc624bda242f9157421a5de20da374a1abbab0f9b6569ed0e4c8fba8a07710ecba6b5ca4f1315b76625163218c2fd3
23
24 diff --git a/dev-python/sanic-testing/sanic-testing-0.6.0.ebuild b/dev-python/sanic-testing/sanic-testing-0.6.0.ebuild
25 new file mode 100644
26 index 000000000..bc9489216
27 --- /dev/null
28 +++ b/dev-python/sanic-testing/sanic-testing-0.6.0.ebuild
29 @@ -0,0 +1,34 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI="7"
34 +
35 +PYTHON_COMPAT=( python3_{8,9} )
36 +DISTUTILS_USE_SETUPTOOLS=rdepend
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Test clients for Sanic"
41 +HOMEPAGE="
42 + https://pypi.python.org/pypi/sanic-testing
43 + https://github.com/sanic-org/sanic-testing
44 +"
45 +SRC_URI="https://github.com/sanic-org/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
46 +
47 +LICENSE="MIT"
48 +SLOT="0"
49 +KEYWORDS="~amd64"
50 +
51 +RDEPEND="
52 + >=dev-python/httpx-0.18[${PYTHON_USEDEP}]
53 + >=dev-python/websockets-9[${PYTHON_USEDEP}]
54 +"
55 +DEPEND="
56 + ${RDEPEND}
57 + test? (
58 + dev-python/pytest-asyncio[${PYTHON_USEDEP}]
59 + >=dev-python/sanic-21.3[${PYTHON_USEDEP}]
60 + )
61 +"
62 +
63 +distutils_enable_tests pytest