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/stripe/
Date: Sat, 06 Feb 2021 08:59:56
Message-Id: 1612601967.f12d8425f8bfed4b25f8ede65cd32da358bc531d.mgorny@gentoo
1 commit: f12d8425f8bfed4b25f8ede65cd32da358bc531d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 6 08:49:27 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 6 08:59:27 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f12d8425
7
8 dev-python/stripe: Bump to 2.55.2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/stripe/Manifest | 1 +
13 dev-python/stripe/stripe-2.55.2.ebuild | 69 ++++++++++++++++++++++++++++++++++
14 2 files changed, 70 insertions(+)
15
16 diff --git a/dev-python/stripe/Manifest b/dev-python/stripe/Manifest
17 index 1e4b75b876c..fd402d55cc2 100644
18 --- a/dev-python/stripe/Manifest
19 +++ b/dev-python/stripe/Manifest
20 @@ -1 +1,2 @@
21 DIST stripe-2.46.0.tar.gz 218080 BLAKE2B 990535efd32b5ddfe166d5b6ad1cdcd966df53fe830a10938355cac10287542284a73f99332878225388a3c28ba431baf96fa4e6e745345c9fa02e64a7e33c0f SHA512 dbfa586cfe7897b32fe95b7230fca5ccb8a12b429982776ee8873878fb6b7284cbb924e8dc6031d59647cc6080115ad541fda02d320c091b6c1bb374679d2213
22 +DIST stripe-2.55.2.tar.gz 215652 BLAKE2B 28bf455a202df7ff7529f932eda50ed4942e72ccf0453b7ff50bcc63c4f3d2177194d2dd6a95391cc5fe7a55c26abd5ba1225fc830ebd9d23a20ebffe2b82911 SHA512 9e14edf57e394837fdc4457bded274b45c309353488adf81a5fbea67ea4c3321392c5316c9a60dfe975110791672b8e7d1dc7ae14994a320c41b1efb7f75695b
23
24 diff --git a/dev-python/stripe/stripe-2.55.2.ebuild b/dev-python/stripe/stripe-2.55.2.ebuild
25 new file mode 100644
26 index 00000000000..fcc7e8aeedc
27 --- /dev/null
28 +++ b/dev-python/stripe/stripe-2.55.2.ebuild
29 @@ -0,0 +1,69 @@
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_{7..9} pypy3 )
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="Stripe python bindings"
39 +HOMEPAGE="https://github.com/stripe/stripe-python"
40 +SRC_URI="mirror://pypi/s/${PN}/${P}.tar.gz"
41 +
42 +LICENSE="MIT"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE="test"
46 +RESTRICT="!test? ( test )"
47 +
48 +RDEPEND="
49 + >=dev-python/requests-2.20[${PYTHON_USEDEP}]
50 +"
51 +# See https://github.com/stripe/stripe-python/blob/v2.10.1/tests/conftest.py#L17
52 +# for minimum required version of stripe-mock
53 +# Running the tests against dev-util/stripe-mock-0.47.0 resulted in test errors
54 +DEPEND="${RDEPEND}
55 + test? (
56 + >=dev-util/stripe-mock-0.101.0
57 + dev-python/pytest[${PYTHON_USEDEP}]
58 + dev-python/pytest-mock[${PYTHON_USEDEP}]
59 + net-misc/curl
60 + )
61 +"
62 +
63 +DOCS=(LONG_DESCRIPTION.rst CHANGELOG.md README.md)
64 +
65 +src_test() {
66 + local stripe_mock_port=12111
67 + local stripe_mock_max_port=12121
68 + local stripe_mock_logfile="${T}/stripe_mock_${EPYTHON}.log"
69 + # Try to start stripe-mock until we find a free port
70 + while [[ "${stripe_mock_port}" -le "${stripe_mock_max_port}" ]]; do
71 + ebegin "Trying to start stripe-mock on port ${stripe_mock_port}"
72 + stripe-mock --http-port ${stripe_mock_port} &> "${stripe_mock_logfile}" &
73 + local stripe_mock_pid=$!
74 + sleep 2
75 + # Did stripe-mock start?
76 + curl --fail -u "sk_test_123:" \
77 + http://127.0.0.1:${stripe_mock_port}/v1/customers &> /dev/null
78 + eend $? "Port ${stripe_mock_port} unavailable"
79 + if [[ $? -eq 0 ]]; then
80 + einfo "stripe-mock running on port ${stripe_mock_port}"
81 + break
82 + fi
83 + (( stripe_mock_port++ ))
84 + done
85 + if [[ "${stripe_mock_port}" -gt "${stripe_mock_max_port}" ]]; then
86 + eerror "Unable to start stripe-mock for tests"
87 + die "Please see the logfile located at: ${stripe_mock_logfile}"
88 + fi
89 +
90 + distutils-r1_src_test
91 +
92 + # Tear down stripe-mock
93 + kill "${stripe_mock_pid}" || die "Unable to stop stripe-mock"
94 +}
95 +
96 +python_test() {
97 + STRIPE_MOCK_PORT=${stripe_mock_port} pytest -vv || die "Tests failed with ${EPYTHON}"
98 +}