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/responses/
Date: Thu, 26 May 2022 08:07:23
Message-Id: 1653552431.30bc65c4e575756313b65ad2ff09e16813c9d11d.mgorny@gentoo
1 commit: 30bc65c4e575756313b65ad2ff09e16813c9d11d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 26 07:13:04 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu May 26 08:07:11 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30bc65c4
7
8 dev-python/responses: Bump to 0.21.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/responses/Manifest | 1 +
13 dev-python/responses/responses-0.21.0.ebuild | 36 ++++++++++++++++++++++++++++
14 2 files changed, 37 insertions(+)
15
16 diff --git a/dev-python/responses/Manifest b/dev-python/responses/Manifest
17 index 9440a5a42b22..9f4c940b11b7 100644
18 --- a/dev-python/responses/Manifest
19 +++ b/dev-python/responses/Manifest
20 @@ -1 +1,2 @@
21 DIST responses-0.20.0.gh.tar.gz 45072 BLAKE2B 51864ae6de7328507e74f540f9546f16c5da950ebdb29a13760cc1ff4e1d3736f8e61efdd0ce5a427ea7814a9ffdb936496f9787af74ea2f6565d48f6ecbdfb4 SHA512 cce8d6eca05c23ab12ef7e66297dbe1f613c0ac7d46c20b5ea77639cf5be1807ef55e7c71eb5e915ceaa1bc51293a339f9e22a864da0c30c3a676c6c5bea03cd
22 +DIST responses-0.21.0.gh.tar.gz 49551 BLAKE2B 3796fd29353f80a04b26a7348153902d959038e072bf512ee4ba8ffd434157c0ce5c37073d114e0d2865c827d82166ee1fcefe2f250c895c23c53664ab919903 SHA512 9e82f0fb7d2a2a4ea071a6384584ba58ebde13504408f8bac351d24df206f0f6815ce3b6d7e013fb87b04d3a1cdccbe7a5287f56f4f9bfb3d4567ad2eeafa778
23
24 diff --git a/dev-python/responses/responses-0.21.0.ebuild b/dev-python/responses/responses-0.21.0.ebuild
25 new file mode 100644
26 index 000000000000..a1afdacd16d4
27 --- /dev/null
28 +++ b/dev-python/responses/responses-0.21.0.ebuild
29 @@ -0,0 +1,36 @@
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} pypy3 )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Utility for mocking out the Python Requests library"
41 +HOMEPAGE="
42 + https://pypi.org/project/responses/
43 + https://github.com/getsentry/responses/
44 +"
45 +SRC_URI="
46 + https://github.com/getsentry/responses/archive/${PV}.tar.gz
47 + -> ${P}.gh.tar.gz
48 +"
49 +
50 +LICENSE="Apache-2.0"
51 +SLOT="0"
52 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
53 +
54 +RDEPEND="
55 + <dev-python/requests-3[${PYTHON_USEDEP}]
56 + >=dev-python/urllib3-1.25.10[${PYTHON_USEDEP}]
57 +"
58 +
59 +BDEPEND="
60 + test? (
61 + dev-python/pytest-localserver[${PYTHON_USEDEP}]
62 + )
63 +"
64 +
65 +distutils_enable_tests pytest