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/google-api-core/
Date: Wed, 02 Feb 2022 23:21:14
Message-Id: 1643844060.64337ca2802aabe3faf531ec6fe536b610325d54.mgorny@gentoo
1 commit: 64337ca2802aabe3faf531ec6fe536b610325d54
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 2 22:47:58 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 2 23:21:00 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64337ca2
7
8 dev-python/google-api-core: Bump to 2.5.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/google-api-core/Manifest | 1 +
13 .../google-api-core/google-api-core-2.5.0.ebuild | 61 ++++++++++++++++++++++
14 2 files changed, 62 insertions(+)
15
16 diff --git a/dev-python/google-api-core/Manifest b/dev-python/google-api-core/Manifest
17 index 5395a2279f24..263698e4ec8a 100644
18 --- a/dev-python/google-api-core/Manifest
19 +++ b/dev-python/google-api-core/Manifest
20 @@ -1 +1,2 @@
21 DIST google-api-core-2.3.1.tar.gz 156495 BLAKE2B fdc7f7d8457b96947181eee9992c5e51bbd18f9740a0415a32d4d0f45ade9c0c784e01f0aa78fe0dbbf3717ee860e78d6b4d1c5f154361afbf919abe033e5380 SHA512 ab1c333727e666f920d81186e6213d440052021d952efcb47eac487d10ab33a2e1116278925e54bfb3468de70c18837a0e241ba3426af09728ea59a725789a29
22 +DIST google-api-core-2.5.0.tar.gz 160336 BLAKE2B 5a3050dcb2e58c068c67cd6263b297ea84e4a47784c750e7ed87077bf46314730698eda2eaa8305a99a55b539b8886dfbbeeb9dc9838748fa941db6785212f36 SHA512 92b570195db21dded50b220e350e518c13101ab3e247bcbb3d3f5701e722c6dc81312443889360fdef1485edf1d5ef486bfeecf56092844cea81b61c7c527728
23
24 diff --git a/dev-python/google-api-core/google-api-core-2.5.0.ebuild b/dev-python/google-api-core/google-api-core-2.5.0.ebuild
25 new file mode 100644
26 index 000000000000..32405aec83ad
27 --- /dev/null
28 +++ b/dev-python/google-api-core/google-api-core-2.5.0.ebuild
29 @@ -0,0 +1,61 @@
30 +# Copyright 2020-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..9} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Core Library for Google Client Libraries"
41 +HOMEPAGE="https://github.com/googleapis/python-api-core/
42 + https://googleapis.dev/python/google-api-core/latest/index.html"
43 +SRC_URI="https://github.com/googleapis/${PN//google/python}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 +S="${WORKDIR}/${P//google/python}"
45 +
46 +LICENSE="Apache-2.0"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~x86"
49 +
50 +RDEPEND="
51 + dev-python/namespace-google[${PYTHON_USEDEP}]
52 + dev-python/protobuf-python[${PYTHON_USEDEP}]
53 + dev-python/googleapis-common-protos[${PYTHON_USEDEP}]
54 + >=dev-python/google-auth-1.25.0[${PYTHON_USEDEP}]
55 + >=dev-python/requests-2.18.0[${PYTHON_USEDEP}]
56 + <dev-python/requests-3[${PYTHON_USEDEP}]
57 +"
58 +# grpcio support is broken if grpcio-status is not installed,
59 +# and we do not package the latter
60 +BDEPEND="
61 + test? (
62 + dev-python/mock[${PYTHON_USEDEP}]
63 + dev-python/proto-plus[${PYTHON_USEDEP}]
64 + dev-python/rsa[${PYTHON_USEDEP}]
65 + dev-python/pytest-asyncio[${PYTHON_USEDEP}]
66 + )
67 +"
68 +
69 +distutils_enable_tests pytest
70 +
71 +EPYTEST_DESELECT=(
72 + # failing due to missing grpcio-status
73 + tests/asyncio/test_grpc_helpers_async.py::test_wrap_unary_errors
74 + tests/asyncio/test_grpc_helpers_async.py::test_wrap_stream_errors_raised
75 + tests/asyncio/test_grpc_helpers_async.py::test_wrap_stream_errors_read
76 + tests/asyncio/test_grpc_helpers_async.py::test_wrap_stream_errors_aiter
77 + tests/asyncio/test_grpc_helpers_async.py::test_wrap_stream_errors_write
78 + tests/unit/test_grpc_helpers.py::test_wrap_unary_errors
79 + tests/unit/test_grpc_helpers.py::Test_StreamingResponseIterator::test___next___w_rpc_error
80 + tests/unit/test_grpc_helpers.py::test_wrap_stream_errors_invocation
81 + tests/unit/test_grpc_helpers.py::test_wrap_stream_errors_iterator_initialization
82 + tests/unit/test_grpc_helpers.py::test_wrap_stream_errors_during_iteration
83 + # TODO
84 + tests/unit/test_operation.py::test_exception_with_error_code
85 +)
86 +
87 +python_install_all() {
88 + distutils-r1_python_install_all
89 + find "${D}" -name '*.pth' -delete || die
90 +}