commit:     8239375349625e2bae097678daa68ab8e5bcba27
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Nov  6 05:47:10 2025 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Nov  6 05:47:10 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82393753

dev-python/google-auth: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/google-auth/Manifest                  |  2 -
 dev-python/google-auth/google-auth-2.40.3.ebuild | 72 ------------------------
 dev-python/google-auth/google-auth-2.42.0.ebuild | 62 --------------------
 3 files changed, 136 deletions(-)

diff --git a/dev-python/google-auth/Manifest b/dev-python/google-auth/Manifest
index 63693f4a844b..70f1fbf6f859 100644
--- a/dev-python/google-auth/Manifest
+++ b/dev-python/google-auth/Manifest
@@ -1,4 +1,2 @@
-DIST google_auth-2.40.3.tar.gz 281029 BLAKE2B 
eb95721c42ee37c0498c9c57fe3aceea006bc0b401a84c8f33a0000e8f49975537124827092da9ad40a66650dbe6e276b570d77eb45bcc86c23085a231572e1b
 SHA512 
35062091ab3515f381c5da5d7952e1c60c650f62041b32217905462b0393199666126cbc018e96ea694eadaf9fec2528e9c7531758cfeda8a244fa10f8d362fb
 DIST google_auth-2.41.1.tar.gz 292284 BLAKE2B 
8351dee7d5f0c40d9898ab0cd70cec379a9c39981d024caacc2d9e62428e18c8ea71a54aac43456fe669a31e24202e76b7a4b7df5e3a23cb79cb1b92701f0b70
 SHA512 
af2912c8be751659b701c5ffafb0c955ef8ad5609911d15ee58ad2e3e72dd041cded34bf3b56b37d5fe64ab17f0c625dfcb95c31d2dbf27ea61fd27e5f4777a7
-DIST google_auth-2.42.0.tar.gz 295400 BLAKE2B 
2a194d055725cc23c191d8ec47406e0ddaf6169e0cfa7813f8ee599005ab02b5e721dc3ee68d690ee789b7a0af86731b9e1dcdb1345764ee9c9a9bd42503a55c
 SHA512 
1742bc3461ad34529618c41940225a7425754cb73cb2d01e6b9bd1a5afb4ae5f24e6e25371ee9d871b3df5e33ece25cf34377b15d0819d6883bc0e3196fae3f8
 DIST google_auth-2.42.1.tar.gz 295541 BLAKE2B 
afd195b1b5e2e20d1a625821819a96dce8f9c9850c7ae98e004e63ab4af944cd022b58ac5a9ea78f514dd443a0c3044b2fb059cd553ff7c6dfbbb4aa82c6c952
 SHA512 
f9302c3a94ff262241ef4a15a11cfbcd86142e8fc327b5d962e464993e9fa30a3d1a4d55a643309055be94ca19d5797714e05dc3eb50bb0fd71c7d2be2627b18

diff --git a/dev-python/google-auth/google-auth-2.40.3.ebuild 
b/dev-python/google-auth/google-auth-2.40.3.ebuild
deleted file mode 100644
index 84a29e440b1b..000000000000
--- a/dev-python/google-auth/google-auth-2.40.3.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{11..13} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Google Authentication Library"
-HOMEPAGE="
-       https://github.com/googleapis/google-auth-library-python/
-       https://pypi.org/project/google-auth/
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 arm64 x86"
-
-RDEPEND="
-       dev-python/cachetools[${PYTHON_USEDEP}]
-       >=dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}]
-       >=dev-python/pyasn1-modules-0.2.1[${PYTHON_USEDEP}]
-       >=dev-python/rsa-3.1.4[${PYTHON_USEDEP}]
-"
-BDEPEND="
-       test? (
-               dev-python/aioresponses[${PYTHON_USEDEP}]
-               >=dev-python/cryptography-38.0.3[${PYTHON_USEDEP}]
-               dev-python/flask[${PYTHON_USEDEP}]
-               dev-python/freezegun[${PYTHON_USEDEP}]
-               dev-python/mock[${PYTHON_USEDEP}]
-               >=dev-python/pyjwt-2.0[${PYTHON_USEDEP}]
-               dev-python/pyopenssl[${PYTHON_USEDEP}]
-               dev-python/pytest-asyncio[${PYTHON_USEDEP}]
-               dev-python/pytest-localserver[${PYTHON_USEDEP}]
-               dev-python/pyu2f[${PYTHON_USEDEP}]
-               dev-python/requests[${PYTHON_USEDEP}]
-               dev-python/responses[${PYTHON_USEDEP}]
-       )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-       distutils-r1_src_prepare
-
-       # unpin deps
-       sed -i -e 's:,<[0-9.]*::' setup.py || die
-}
-
-python_compile() {
-       distutils-r1_python_compile
-       find "${BUILD_DIR}" -name '*.pth' -delete || die
-}
-
-python_test() {
-       local EPYTEST_DESELECT=(
-               # tests are broken with up-to-date pyopenssl
-               
tests/transport/test__mtls_helper.py::TestDecryptPrivateKey::test_success
-       )
-       local EPYTEST_IGNORE=(
-               # these are compatibility tests with oauth2client
-               # disable them to unblock removal of that package
-               tests/test__oauth2client.py
-       )
-
-       local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-       distutils_write_namespace google
-       epytest -p asyncio
-}

diff --git a/dev-python/google-auth/google-auth-2.42.0.ebuild 
b/dev-python/google-auth/google-auth-2.42.0.ebuild
deleted file mode 100644
index 8d29af791098..000000000000
--- a/dev-python/google-auth/google-auth-2.42.0.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{11..14} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Google Authentication Library"
-HOMEPAGE="
-       https://github.com/googleapis/google-auth-library-python/
-       https://pypi.org/project/google-auth/
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-RDEPEND="
-       dev-python/cachetools[${PYTHON_USEDEP}]
-       >=dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}]
-       >=dev-python/pyasn1-modules-0.2.1[${PYTHON_USEDEP}]
-       >=dev-python/rsa-3.1.4[${PYTHON_USEDEP}]
-"
-BDEPEND="
-       test? (
-               dev-python/aioresponses[${PYTHON_USEDEP}]
-               >=dev-python/cryptography-38.0.3[${PYTHON_USEDEP}]
-               dev-python/flask[${PYTHON_USEDEP}]
-               dev-python/freezegun[${PYTHON_USEDEP}]
-               dev-python/mock[${PYTHON_USEDEP}]
-               >=dev-python/pyjwt-2.0[${PYTHON_USEDEP}]
-               dev-python/pyopenssl[${PYTHON_USEDEP}]
-               dev-python/pyu2f[${PYTHON_USEDEP}]
-               dev-python/requests[${PYTHON_USEDEP}]
-               dev-python/responses[${PYTHON_USEDEP}]
-       )
-"
-
-EPYTEST_PLUGINS=( pytest-{asyncio,localserver} )
-EPYTEST_XDIST=1
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-       # tests are broken with up-to-date pyopenssl
-       
tests/transport/test__mtls_helper.py::TestDecryptPrivateKey::test_success
-)
-
-EPYTEST_IGNORE=(
-       # these are compatibility tests with oauth2client
-       # disable them to unblock removal of that package
-       tests/test__oauth2client.py
-)
-
-src_prepare() {
-       distutils-r1_src_prepare
-
-       # unpin deps
-       sed -i -e 's:,<[0-9.]*::' setup.py || die
-}

Reply via email to