mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
Changelog: ============= Features --------- - Adding Agent Identity bound token support and handling certificate mismatches with retries - support Python 3.14 - add ecdsa p-384 support - MDS connections use mTLS - Implement token revocation in STS client and add revoke() method to ExternalAccountAuthorizedUser credentials - Add shlex to correctly parse executable commands with spaces Bug Fixes --------- - Use public refresh method for source credentials in ImpersonatedCredentials - Add temporary patch to workload cert logic to accomodate Cloud Run mis-configuration - Delegate workload cert and key default lookup to helper function Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
48 lines
1.3 KiB
BlitzBasic
48 lines
1.3 KiB
BlitzBasic
DESCRIPTION = "Google Authentication Library"
|
|
HOMEPAGE = "https://github.com/googleapis/google-auth-library-python"
|
|
LICENSE = "Apache-2.0"
|
|
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"
|
|
|
|
PYPI_PACKAGE = "google_auth"
|
|
UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}"
|
|
|
|
RDEPENDS:${PN}-ptest += " \
|
|
python3-aioresponses \
|
|
python3-cryptography \
|
|
python3-flask \
|
|
python3-freezegun \
|
|
python3-grpcio \
|
|
python3-mock \
|
|
python3-pyjwt \
|
|
python3-pyopenssl \
|
|
python3-pytest \
|
|
python3-pytest-asyncio \
|
|
python3-pytest-localserver \
|
|
python3-pyu2f \
|
|
python3-requests \
|
|
python3-responses \
|
|
python3-unittest-automake-output \
|
|
python3-unixadmin \
|
|
"
|
|
|
|
do_install_ptest() {
|
|
install -d ${D}${PTEST_PATH}/tests
|
|
cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
|
|
}
|
|
|
|
RDEPENDS:${PN} += "\
|
|
python3-cachetools \
|
|
python3-json \
|
|
python3-pyasn1-modules \
|
|
python3-rsa \
|
|
"
|