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/
Date: Fri, 27 May 2022 19:50:15
Message-Id: 1653680917.acd9579035c768b78385e790c5661d9eccdb8dcc.mgorny@gentoo
1 commit: acd9579035c768b78385e790c5661d9eccdb8dcc
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 27 19:48:37 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri May 27 19:48:37 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acd95790
7
8 dev-python/google-auth: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/google-auth/Manifest | 1 -
13 dev-python/google-auth/google-auth-2.6.3-r2.ebuild | 58 ----------------------
14 2 files changed, 59 deletions(-)
15
16 diff --git a/dev-python/google-auth/Manifest b/dev-python/google-auth/Manifest
17 index fa35b599fa3e..164ecf6ab578 100644
18 --- a/dev-python/google-auth/Manifest
19 +++ b/dev-python/google-auth/Manifest
20 @@ -1,2 +1 @@
21 -DIST google-auth-2.6.3.tar.gz 189685 BLAKE2B 68718ce4031c4e764dcfec19361b034ed5e1efa602d5c734b61a853020f40aaa856f9d9a3b964470e148fbfcb081dbc7d2c8bf0a53fc843d9360dbc72623bcdf SHA512 cba3228dbc0887c127d50cc45eb134e3a0b2bea044b8a1e65807918a3808e550fd58217a236c07b6cb908e5a080d9c1c1a2e9ee1853968d8c0bd50b7228ea262
22 DIST google-auth-2.6.6.tar.gz 189789 BLAKE2B 8adf725ac8678a07c6c35f641950c5da0f269e8556074b5832a08267cbb64237dda817c576b15fbb315fd0a018e30bca1fa1f5a0d1f85aaae4ab2bd58538b191 SHA512 bac6345bf142a8dc6acde0bec43a8fd78f76277740114a0557af88748a5ec2f509757e6099f570ed037b2265717f339fe319254a826793d0b16f1a7d227a6b09
23
24 diff --git a/dev-python/google-auth/google-auth-2.6.3-r2.ebuild b/dev-python/google-auth/google-auth-2.6.3-r2.ebuild
25 deleted file mode 100644
26 index 37c2ffef06a9..000000000000
27 --- a/dev-python/google-auth/google-auth-2.6.3-r2.ebuild
28 +++ /dev/null
29 @@ -1,58 +0,0 @@
30 -# Copyright 1999-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..10} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Google Authentication Library"
41 -HOMEPAGE="
42 - https://github.com/googleapis/google-auth-library-python/
43 - https://pypi.org/project/google-auth/
44 -"
45 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
46 -
47 -LICENSE="Apache-2.0"
48 -SLOT="0"
49 -KEYWORDS="amd64 ~arm ~arm64 x86"
50 -
51 -RDEPEND="
52 - <dev-python/cachetools-6.0.0[${PYTHON_USEDEP}]
53 - >=dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}]
54 - >=dev-python/pyasn1-modules-0.2.1[${PYTHON_USEDEP}]
55 - >=dev-python/rsa-3.1.4[${PYTHON_USEDEP}]
56 - dev-python/six[${PYTHON_USEDEP}]
57 - !dev-python/namespace-google
58 -"
59 -BDEPEND="
60 - test? (
61 - dev-python/cryptography[${PYTHON_USEDEP}]
62 - dev-python/flask[${PYTHON_USEDEP}]
63 - dev-python/freezegun[${PYTHON_USEDEP}]
64 - dev-python/grpcio[${PYTHON_USEDEP}]
65 - dev-python/mock[${PYTHON_USEDEP}]
66 - dev-python/moto[${PYTHON_USEDEP}]
67 - dev-python/pyopenssl[${PYTHON_USEDEP}]
68 - dev-python/pytest-localserver[${PYTHON_USEDEP}]
69 - dev-python/pyu2f[${PYTHON_USEDEP}]
70 - dev-python/requests[${PYTHON_USEDEP}]
71 - dev-python/responses[${PYTHON_USEDEP}]
72 - dev-python/urllib3[${PYTHON_USEDEP}]
73 - )
74 -"
75 -
76 -distutils_enable_tests pytest
77 -
78 -EPYTEST_IGNORE=(
79 - # these are compatibility tests with oauth2client
80 - # disable them to unblock removal of that package
81 - tests/test__oauth2client.py
82 -)
83 -
84 -python_compile() {
85 - distutils-r1_python_compile
86 - find "${BUILD_DIR}" -name '*.pth' -delete || die
87 -}