Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/httmock/
Date: Wed, 01 Jun 2022 07:55:23
Message-Id: 1654069996.578a0187a207b71a3be10a778f3a857228be1091.sam@gentoo
1 commit: 578a0187a207b71a3be10a778f3a857228be1091
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 1 07:53:16 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 1 07:53:16 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=578a0187
7
8 dev-python/httmock: update EAPI 7 -> 8
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 dev-python/httmock/Manifest | 1 +
13 dev-python/httmock/httmock-1.4.0-r1.ebuild | 21 +++++++++++++++++++++
14 2 files changed, 22 insertions(+)
15
16 diff --git a/dev-python/httmock/Manifest b/dev-python/httmock/Manifest
17 index ab823700c00c..50aef2fe19f9 100644
18 --- a/dev-python/httmock/Manifest
19 +++ b/dev-python/httmock/Manifest
20 @@ -1 +1,2 @@
21 +DIST httmock-1.4.0.gh.tar.gz 6439 BLAKE2B 68136f0dd3f1adb7f431893ade8037ce98de3870c5da094ec8a4dfde3eba07667989b71b957673e969548d7d5115455d02af2bcbb1eeb59dc0891e2ffac2c1ff SHA512 49dec760da7dc57a3fb0392c121ddbf9a430fa64c2a6f923ca62da2e697805a61941cde5cf35fc8af30de199227edd72d7f1985745ebd427b1f5d74807e3862c
22 DIST httmock-1.4.0.tar.gz 6439 BLAKE2B 68136f0dd3f1adb7f431893ade8037ce98de3870c5da094ec8a4dfde3eba07667989b71b957673e969548d7d5115455d02af2bcbb1eeb59dc0891e2ffac2c1ff SHA512 49dec760da7dc57a3fb0392c121ddbf9a430fa64c2a6f923ca62da2e697805a61941cde5cf35fc8af30de199227edd72d7f1985745ebd427b1f5d74807e3862c
23
24 diff --git a/dev-python/httmock/httmock-1.4.0-r1.ebuild b/dev-python/httmock/httmock-1.4.0-r1.ebuild
25 new file mode 100644
26 index 000000000000..c6f1a1c6602a
27 --- /dev/null
28 +++ b/dev-python/httmock/httmock-1.4.0-r1.ebuild
29 @@ -0,0 +1,21 @@
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="A mocking library for requests"
41 +HOMEPAGE="https://github.com/patrys/httmock"
42 +SRC_URI="https://github.com/patrys/${PN}/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
43 +
44 +LICENSE="Apache-2.0"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +
48 +RDEPEND=">=dev-python/requests-1.0.0[${PYTHON_USEDEP}]"
49 +
50 +distutils_enable_tests unittest