Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/stripe/
Date: Thu, 20 Jan 2022 19:29:56
Message-Id: 1642706986.e652cae1bcddf68463d44300729127669eca5bb3.arthurzam@gentoo
1 commit: e652cae1bcddf68463d44300729127669eca5bb3
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 20 19:29:38 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 20 19:29:46 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e652cae1
7
8 dev-python/stripe: add 2.65.0
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/stripe/Manifest | 1 +
13 dev-python/stripe/stripe-2.65.0.ebuild | 60 ++++++++++++++++++++++++++++++++++
14 2 files changed, 61 insertions(+)
15
16 diff --git a/dev-python/stripe/Manifest b/dev-python/stripe/Manifest
17 index 1757da7efd80..4606041f1392 100644
18 --- a/dev-python/stripe/Manifest
19 +++ b/dev-python/stripe/Manifest
20 @@ -1,2 +1,3 @@
21 DIST stripe-2.63.0.tar.gz 233693 BLAKE2B 18de5e0a74b241759a7c84203e675159958a77e3ee225ebdfd5ed2d2d633a3b91f5165ac14a164b09e4df81176aafe1727685c4156b5055dc4ea2a44b0af9134 SHA512 fedef25d95e1fe3f9b4fdab37fb4ababc3c0243218da590076942491884b284b07e6bb15e9c85a6871dabffc34c260ec9d9fb80634ab0a368cf312c2324c2bdd
22 DIST stripe-2.64.0.tar.gz 234442 BLAKE2B 504e32c19f1a65a39ee709d3abc7211d648c7aaf8493edb4130d49d3fbbebea4ec7d2c116b9b715e9e0d5d383578c477ae0e2cbace51f5b8574d540e9b9238d8 SHA512 5055b5a712c0891f3660d00fe7bb27452cce33aa4a9c70fbd7391dd989d31aeb8d8288c3cdd22747b6fd4c480be17f7ab9428c31ea7d2c674e175e77f4f6a0b7
23 +DIST stripe-2.65.0.tar.gz 234847 BLAKE2B 474757c17abd5259f46913d5be0fa1130e64608f0306d772d6776bc34b76a62c2a7cc1dbe812201d867b06e361f9ec905e0a12bb4830e9ccc1e5211e2aeecd6b SHA512 309a3e2202e7e8983bf7d8a403a588c6793f35866bf44edf6fc2877624a98716033e633b1f38790b2731049cfef3f90c878b5bc9df65dce9f4606414944dc8f4
24
25 diff --git a/dev-python/stripe/stripe-2.65.0.ebuild b/dev-python/stripe/stripe-2.65.0.ebuild
26 new file mode 100644
27 index 000000000000..96373bdd207c
28 --- /dev/null
29 +++ b/dev-python/stripe/stripe-2.65.0.ebuild
30 @@ -0,0 +1,60 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +PYTHON_COMPAT=( python3_{8..10} 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=">=dev-python/requests-2.20[${PYTHON_USEDEP}]"
48 +BDEPEND="
49 + test? (
50 + >=dev-util/stripe-mock-0.115.0
51 + dev-python/pytest-mock[${PYTHON_USEDEP}]
52 + net-misc/curl
53 + )
54 +"
55 +
56 +distutils_enable_tests pytest
57 +
58 +DOCS=( LONG_DESCRIPTION.rst CHANGELOG.md README.md )
59 +
60 +src_test() {
61 + local stripe_mock_port=12111
62 + local stripe_mock_max_port=12121
63 + local stripe_mock_logfile="${T}/stripe_mock_${EPYTHON}.log"
64 + # Try to start stripe-mock until we find a free port
65 + while [[ "${stripe_mock_port}" -le "${stripe_mock_max_port}" ]]; do
66 + ebegin "Trying to start stripe-mock on port ${stripe_mock_port}"
67 + stripe-mock --http-port ${stripe_mock_port} &> "${stripe_mock_logfile}" &
68 + local stripe_mock_pid=$!
69 + sleep 2
70 + # Did stripe-mock start?
71 + curl --fail -u "sk_test_123:" \
72 + http://127.0.0.1:${stripe_mock_port}/v1/customers &> /dev/null
73 + eend $? "Port ${stripe_mock_port} unavailable"
74 + if [[ $? -eq 0 ]]; then
75 + einfo "stripe-mock running on port ${stripe_mock_port}"
76 + break
77 + fi
78 + (( stripe_mock_port++ ))
79 + done
80 + if [[ "${stripe_mock_port}" -gt "${stripe_mock_max_port}" ]]; then
81 + eerror "Unable to start stripe-mock for tests"
82 + die "Please see the logfile located at: ${stripe_mock_logfile}"
83 + fi
84 +
85 + local -x STRIPE_MOCK_PORT=${stripe_mock_port}
86 + distutils-r1_src_test
87 +
88 + # Tear down stripe-mock
89 + kill "${stripe_mock_pid}" || die "Unable to stop stripe-mock"
90 +}