python3-google-auth: upgrade 2.45.0 -> 2.47.0

1. Changelog
https://github.com/googleapis/google-auth-library-python/blob/main/CHANGELOG.md

2. Drop 0001-make-the-TLS-tests-skip-when-pyopenssl-isn-t-availab.patch as it was merged upstream.

Signed-off-by: Liu Yiding <liuyd.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Liu Yiding 2026-01-13 14:29:37 +08:00 committed by Khem Raj
parent 584e70ca72
commit 6ad8b50af8
No known key found for this signature in database
GPG Key ID: BB053355919D3314
2 changed files with 1 additions and 36 deletions

View File

@ -1,34 +0,0 @@
From 35eea881e1aeb27fc12cfb301e497e72e59e720f Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Tue, 18 Nov 2025 17:23:09 -0800
Subject: [PATCH] make the TLS tests skip when pyopenssl isn't available
In some distributions e.g. yocto
pyOpenSSL is a packageconfig and disabled by default,
and it means pyopenssl.py module is not installed as a result.
This test fails plainly when it can not find urllib3.contrib.pyopenssl
instead skip the test if it does not find the module.
Upstream-Status: Submitted [https://github.com/googleapis/google-auth-library-python/pull/1873]
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
tests/transport/test__custom_tls_signer.py | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/tests/transport/test__custom_tls_signer.py b/tests/transport/test__custom_tls_signer.py
index 3a33c2c..6f88ddf 100644
--- a/tests/transport/test__custom_tls_signer.py
+++ b/tests/transport/test__custom_tls_signer.py
@@ -18,7 +18,10 @@ import os
import mock
import pytest # type: ignore
from requests.packages.urllib3.util.ssl_ import create_urllib3_context # type: ignore
-import urllib3.contrib.pyopenssl # type: ignore
+urllib3_pyopenssl = pytest.importorskip(
+ "urllib3.contrib.pyopenssl",
+ reason="urllib3.contrib.pyopenssl not available in this environment",
+)
from google.auth import exceptions
from google.auth.transport import _custom_tls_signer

View File

@ -6,11 +6,10 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
inherit pypi setuptools3 ptest
SRC_URI += " \
file://0001-make-the-TLS-tests-skip-when-pyopenssl-isn-t-availab.patch \
file://0001-python3-google-auth-Skip-mTLS-tests-in-ptest-environ.patch \
file://run-ptest \
"
SRC_URI[sha256sum] = "90d3f41b6b72ea72dd9811e765699ee491ab24139f34ebf1ca2b9cc0c38708f3"
SRC_URI[sha256sum] = "833229070a9dfee1a353ae9877dcd2dec069a8281a4e72e72f77d4a70ff945da"
PYPI_PACKAGE = "google_auth"
UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}"