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: Tue, 23 Feb 2021 00:51:15
Message-Id: 1614041191.203b57a04f3c1826e5db91bf786b1e1dc60347a1.mgorny@gentoo
1 commit: 203b57a04f3c1826e5db91bf786b1e1dc60347a1
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 23 00:38:35 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 23 00:46:31 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=203b57a0
7
8 dev-python/stripe: Bump to 2.56.0
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.56.0.ebuild | 63 ++++++++++++++++++++++++++++++++++
14 2 files changed, 64 insertions(+)
15
16 diff --git a/dev-python/stripe/Manifest b/dev-python/stripe/Manifest
17 index fd402d55cc2..d4deda7c667 100644
18 --- a/dev-python/stripe/Manifest
19 +++ b/dev-python/stripe/Manifest
20 @@ -1,2 +1,3 @@
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 +DIST stripe-2.56.0.tar.gz 216066 BLAKE2B 1473c0b5a0f53cea18120b6234ed7f310c3625592423f16e77ca3a87c8a79f61c19c0c5f09d071a2be84e4f0d8b5323cc9f1de2e24a74bd24e557c9eb48b2c38 SHA512 1f2f08b5425ad48df9afc78f574109604319ccfcdb2fba8ca574008de5dadb349eec84d0e6cf532c57218bc8624af9b256a29ef01facb950a3cfd1168d8c2660
24
25 diff --git a/dev-python/stripe/stripe-2.56.0.ebuild b/dev-python/stripe/stripe-2.56.0.ebuild
26 new file mode 100644
27 index 00000000000..3895e0af78a
28 --- /dev/null
29 +++ b/dev-python/stripe/stripe-2.56.0.ebuild
30 @@ -0,0 +1,63 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python3_{7..9} 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 +
47 +RDEPEND="
48 + >=dev-python/requests-2.20[${PYTHON_USEDEP}]
49 +"
50 +DEPEND="
51 + test? (
52 + ${RDEPEND}
53 + >=dev-util/stripe-mock-0.103.0
54 + dev-python/pytest-mock[${PYTHON_USEDEP}]
55 + net-misc/curl
56 + )
57 +"
58 +
59 +distutils_enable_tests pytest
60 +
61 +DOCS=(LONG_DESCRIPTION.rst CHANGELOG.md README.md)
62 +
63 +src_test() {
64 + local stripe_mock_port=12111
65 + local stripe_mock_max_port=12121
66 + local stripe_mock_logfile="${T}/stripe_mock_${EPYTHON}.log"
67 + # Try to start stripe-mock until we find a free port
68 + while [[ "${stripe_mock_port}" -le "${stripe_mock_max_port}" ]]; do
69 + ebegin "Trying to start stripe-mock on port ${stripe_mock_port}"
70 + stripe-mock --http-port ${stripe_mock_port} &> "${stripe_mock_logfile}" &
71 + local stripe_mock_pid=$!
72 + sleep 2
73 + # Did stripe-mock start?
74 + curl --fail -u "sk_test_123:" \
75 + http://127.0.0.1:${stripe_mock_port}/v1/customers &> /dev/null
76 + eend $? "Port ${stripe_mock_port} unavailable"
77 + if [[ $? -eq 0 ]]; then
78 + einfo "stripe-mock running on port ${stripe_mock_port}"
79 + break
80 + fi
81 + (( stripe_mock_port++ ))
82 + done
83 + if [[ "${stripe_mock_port}" -gt "${stripe_mock_max_port}" ]]; then
84 + eerror "Unable to start stripe-mock for tests"
85 + die "Please see the logfile located at: ${stripe_mock_logfile}"
86 + fi
87 +
88 + local -x STRIPE_MOCK_PORT=${stripe_mock_port}
89 + distutils-r1_src_test
90 +
91 + # Tear down stripe-mock
92 + kill "${stripe_mock_pid}" || die "Unable to stop stripe-mock"
93 +}