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-auth-oauthlib/
Date: Tue, 30 Mar 2021 07:49:54
Message-Id: 1617090582.897c6cb664377d9cfa295680d26bd4e61b0938ed.mgorny@gentoo
1 commit: 897c6cb664377d9cfa295680d26bd4e61b0938ed
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Mar 30 07:28:03 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 30 07:49:42 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=897c6cb6
7
8 dev-python/google-auth-oauthlib: Bump to 0.4.4
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/google-auth-oauthlib/Manifest | 1 +
13 .../google-auth-oauthlib-0.4.4.ebuild | 35 ++++++++++++++++++++++
14 2 files changed, 36 insertions(+)
15
16 diff --git a/dev-python/google-auth-oauthlib/Manifest b/dev-python/google-auth-oauthlib/Manifest
17 index 382e5fd6b3b..1106f6f5c54 100644
18 --- a/dev-python/google-auth-oauthlib/Manifest
19 +++ b/dev-python/google-auth-oauthlib/Manifest
20 @@ -1,2 +1,3 @@
21 DIST google-auth-library-python-oauthlib-0.4.3.gh.tar.gz 48020 BLAKE2B bc5e575f3eb7b8b876deb13aaff0d1b900555bcbc609259dc72c9f01f595283feffea6aaaf91acf835b313629fe4c4c76dee8ea877b6ae37c3c01633c63909e4 SHA512 f6fa0e525b0aef6f4359954cb2c8020ee86544862318721d439d153cae3e75527b0e0a312572dc936fab7702da8c6af42ce9242d1e73f48c0a822973e470a4a9
22 +DIST google-auth-library-python-oauthlib-0.4.4.gh.tar.gz 48322 BLAKE2B f812b43e1e867090aa3ae4fbda7523324a182f6e1eae39fd865d23279b04cde08ee2263b83d1c2eb3555a8db3a9b01869d8148c0e603ba8fe9698dc8d052fc11 SHA512 5b17ceccca24216a0354513ae2a1b14f2aab9760e0ff0f87840a64de85a730a4115f5e44b359093f4ab0a9ec8fea41bfffb7b5aeca833574419ea6021a382240
23 DIST google-auth-oauthlib-0.4.1.tar.gz 18687 BLAKE2B 1c9028f6b4c306bbee51fba5b55950d129d56ff5154645a166998c0c720b125202731f1cfed60837b8103d56fcdeeb818e39491b243a8d761969f73d9f88f67b SHA512 123707139353db8e05c81138af834e35007d323f0e19ae79088ad5ca4be86dda6c0df91e2f7794711475227a60312fab9101c91b49817bf8b84866ea6374c943
24
25 diff --git a/dev-python/google-auth-oauthlib/google-auth-oauthlib-0.4.4.ebuild b/dev-python/google-auth-oauthlib/google-auth-oauthlib-0.4.4.ebuild
26 new file mode 100644
27 index 00000000000..188128c194b
28 --- /dev/null
29 +++ b/dev-python/google-auth-oauthlib/google-auth-oauthlib-0.4.4.ebuild
30 @@ -0,0 +1,35 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +DISTUTILS_USE_SETUPTOOLS=rdepend
37 +PYTHON_COMPAT=( python3_{7..9} )
38 +inherit distutils-r1
39 +
40 +MY_P=google-auth-library-python-oauthlib-${PV}
41 +DESCRIPTION="Google Authentication Library"
42 +HOMEPAGE="
43 + https://pypi.org/project/google-auth-oauthlib/
44 + https://github.com/googleapis/google-auth-library-python-oauthlib"
45 +SRC_URI="
46 + https://github.com/googleapis/google-auth-library-python-oauthlib/archive/v${PV}.tar.gz
47 + -> ${MY_P}.gh.tar.gz"
48 +S=${WORKDIR}/${MY_P}
49 +
50 +LICENSE="Apache-2.0"
51 +SLOT="0"
52 +KEYWORDS="~amd64 ~x86"
53 +
54 +RDEPEND="
55 + >=dev-python/click-6.0.0[${PYTHON_USEDEP}]
56 + >=dev-python/google-auth-1.0.0[${PYTHON_USEDEP}]
57 + >=dev-python/requests-oauthlib-0.7.0[${PYTHON_USEDEP}]
58 +"
59 +
60 +BDEPEND="
61 + test? ( dev-python/mock[${PYTHON_USEDEP}] )
62 +"
63 +
64 +distutils_enable_tests pytest
65 +DOCS=( LICENSE README.rst )