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: Thu, 14 Oct 2021 07:51:15
Message-Id: 1634197857.68af021a7a66b2a494919646ebb810ea08b84483.mgorny@gentoo
1 commit: 68af021a7a66b2a494919646ebb810ea08b84483
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 14 05:52:35 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 14 07:50:57 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68af021a
7
8 dev-python/google-api-core: Bump to 2.1.1
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.1.1.ebuild | 48 ++++++++++++++++++++++
14 2 files changed, 49 insertions(+)
15
16 diff --git a/dev-python/google-api-core/Manifest b/dev-python/google-api-core/Manifest
17 index 74deca19215..1f46a89dc2b 100644
18 --- a/dev-python/google-api-core/Manifest
19 +++ b/dev-python/google-api-core/Manifest
20 @@ -1,2 +1,3 @@
21 DIST google-api-core-2.0.1.tar.gz 134658 BLAKE2B 0fda61be3b069454b305656f7a5a9243467f4e129e2db661e997fde850d416a50df803af6e7e9d041b8473e5f1abd35f6d5a9b25067133be28bed90ec1cca7e4 SHA512 297af05cba4919423e15844ccddb821fd65076f787bd01f24022d8393fbf45cf276611ab471be17950d7fad4e58f9b823517a8aeeec931df5b1bb37c38fe8ec9
22 DIST google-api-core-2.1.0.tar.gz 138173 BLAKE2B 3ba5b5433a8a29ddf180315daed5587d113bde410697eb5f90713573f41b15b89f0a52e387515751c7702008b150ccc8b90cd7480ac0a26a5f9c73f94443915a SHA512 67688f2defa00df8039d964edeb2cb94aeab5124794fe95d1cba8b9e79aa57b7a191a4b51f91c7d7e293c7a550130cac294926552e47545a0f8222003d0ba076
23 +DIST google-api-core-2.1.1.tar.gz 138720 BLAKE2B 218adf5ce8f796868d165dfc449fa2aec135c4cc13f74342c3f9f5790e56e8661d38409aea68c0e3b3b2d42929ab7079b30832a1be675fe00d5b7a426d84e64b SHA512 38f6f03b9702234b6d0d41f064ae2c01b41d5dc2328bd4da886decf3d437db53fe194284b399dfadebbf4767cfb0aba804ec67911982d24c72f0a2464370f050
24
25 diff --git a/dev-python/google-api-core/google-api-core-2.1.1.ebuild b/dev-python/google-api-core/google-api-core-2.1.1.ebuild
26 new file mode 100644
27 index 00000000000..6e1d986b70c
28 --- /dev/null
29 +++ b/dev-python/google-api-core/google-api-core-2.1.1.ebuild
30 @@ -0,0 +1,48 @@
31 +# Copyright 2020-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +PYTHON_COMPAT=( python3_{8..9} )
37 +DISTUTILS_USE_SETUPTOOLS=rdepend
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 ~arm ~arm64 ~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 +BDEPEND="
59 + test? (
60 + >=dev-python/grpcio-1.33.2[${PYTHON_USEDEP}]
61 + dev-python/mock[${PYTHON_USEDEP}]
62 + dev-python/rsa[${PYTHON_USEDEP}]
63 + dev-python/pytest-asyncio[${PYTHON_USEDEP}]
64 + )
65 +"
66 +
67 +distutils_enable_tests --install pytest
68 +
69 +EPYTEST_DESELECT=(
70 + # TODO: package proto-plus
71 + tests/unit/test_protobuf_helpers.py::test_field_mask_ignore_trailing_underscore
72 + tests/unit/test_protobuf_helpers.py::test_field_mask_ignore_trailing_underscore_with_nesting
73 +)
74 +
75 +python_install_all() {
76 + distutils-r1_python_install_all
77 + find "${D}" -name '*.pth' -delete || die
78 +}