Gentoo Archives: gentoo-commits

From: "Cédric Krier" <cedk@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/stripe/
Date: Sat, 25 Apr 2020 08:45:18
Message-Id: 1587804302.a29f402612ab7e7f78d61586df45e2798d3e00ae.cedk@gentoo
1 commit: a29f402612ab7e7f78d61586df45e2798d3e00ae
2 Author: Cédric Krier <cedk <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 25 08:43:17 2020 +0000
4 Commit: Cédric Krier <cedk <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 25 08:45:02 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a29f4026
7
8 dev-python/stripe: Version bumps
9
10 Package-Manager: Portage-2.3.89, Repoman-2.3.20
11 Signed-off-by: Cédric Krier <cedk <AT> gentoo.org>
12
13 dev-python/stripe/Manifest | 1 +
14 dev-python/stripe/stripe-2.46.0.ebuild | 69 ++++++++++++++++++++++++++++++++++
15 2 files changed, 70 insertions(+)
16
17 diff --git a/dev-python/stripe/Manifest b/dev-python/stripe/Manifest
18 index f1d9b9ff72c..d4fbe7b9d67 100644
19 --- a/dev-python/stripe/Manifest
20 +++ b/dev-python/stripe/Manifest
21 @@ -1 +1,2 @@
22 DIST stripe-2.43.0.tar.gz 211400 BLAKE2B 135371f793af291e1c43179bcb325a9eb84c3258d9013009f920077fbc783569b6384fa76dcf464aa9fdbe64a4a297d6c232f3719729a81e1d62c74b769ff5f7 SHA512 a91f4f268b5c533cdd378c3169cf6e29b11b3b79492cd8b01b21970459383d63fa726fb206aba111ef8e57c2b98eecd6ba3ef9fdb868efc2db69f0cba8f74554
23 +DIST stripe-2.46.0.tar.gz 218080 BLAKE2B 990535efd32b5ddfe166d5b6ad1cdcd966df53fe830a10938355cac10287542284a73f99332878225388a3c28ba431baf96fa4e6e745345c9fa02e64a7e33c0f SHA512 dbfa586cfe7897b32fe95b7230fca5ccb8a12b429982776ee8873878fb6b7284cbb924e8dc6031d59647cc6080115ad541fda02d320c091b6c1bb374679d2213
24
25 diff --git a/dev-python/stripe/stripe-2.46.0.ebuild b/dev-python/stripe/stripe-2.46.0.ebuild
26 new file mode 100644
27 index 00000000000..16c31038e92
28 --- /dev/null
29 +++ b/dev-python/stripe/stripe-2.46.0.ebuild
30 @@ -0,0 +1,69 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python3_{6,7,8} pypy3 )
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Stripe python bindings"
40 +HOMEPAGE="https://github.com/stripe/stripe-python"
41 +SRC_URI="mirror://pypi/s/${PN}/${P}.tar.gz"
42 +
43 +LICENSE="MIT"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE="test"
47 +RESTRICT="!test? ( test )"
48 +
49 +RDEPEND="
50 + >=dev-python/requests-2.20[${PYTHON_USEDEP}]
51 +"
52 +# See https://github.com/stripe/stripe-python/blob/v2.10.1/tests/conftest.py#L17
53 +# for minimum required version of stripe-mock
54 +# Running the tests against dev-util/stripe-mock-0.47.0 resulted in test errors
55 +DEPEND="${RDEPEND}
56 + test? (
57 + >=dev-util/stripe-mock-0.88.0
58 + dev-python/pytest[${PYTHON_USEDEP}]
59 + dev-python/pytest-mock[${PYTHON_USEDEP}]
60 + net-misc/curl
61 + )
62 +"
63 +
64 +DOCS=(LONG_DESCRIPTION.rst CHANGELOG.md README.md)
65 +
66 +src_test() {
67 + local stripe_mock_port=12111
68 + local stripe_mock_max_port=12121
69 + local stripe_mock_logfile="${T}/stripe_mock_${EPYTHON}.log"
70 + # Try to start stripe-mock until we find a free port
71 + while [[ "${stripe_mock_port}" -le "${stripe_mock_max_port}" ]]; do
72 + ebegin "Trying to start stripe-mock on port ${stripe_mock_port}"
73 + stripe-mock --http-port ${stripe_mock_port} &> "${stripe_mock_logfile}" &
74 + local stripe_mock_pid=$!
75 + sleep 2
76 + # Did stripe-mock start?
77 + curl --fail -u "sk_test_123:" \
78 + http://127.0.0.1:${stripe_mock_port}/v1/customers &> /dev/null
79 + eend $? "Port ${stripe_mock_port} unavailable"
80 + if [[ $? -eq 0 ]]; then
81 + einfo "stripe-mock running on port ${stripe_mock_port}"
82 + break
83 + fi
84 + (( stripe_mock_port++ ))
85 + done
86 + if [[ "${stripe_mock_port}" -gt "${stripe_mock_max_port}" ]]; then
87 + eerror "Unable to start stripe-mock for tests"
88 + die "Please see the logfile located at: ${stripe_mock_logfile}"
89 + fi
90 +
91 + distutils-r1_src_test
92 +
93 + # Tear down stripe-mock
94 + kill "${stripe_mock_pid}" || die "Unable to stop stripe-mock"
95 +}
96 +
97 +python_test() {
98 + STRIPE_MOCK_PORT=${stripe_mock_port} pytest -vv || die "Tests failed with ${EPYTHON}"
99 +}