commit: 6fa9351ed3e6287f51f63533062b14cd7bfde9b9 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Tue Oct 14 06:50:23 2025 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Thu Oct 23 18:19:10 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fa9351e
pypi.eclass: Fix typo in pypi_provenance_url() Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> Part-of: https://github.com/gentoo/gentoo/pull/44172 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> eclass/pypi.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/pypi.eclass b/eclass/pypi.eclass index 38068aac3356..14c4edb391d8 100644 --- a/eclass/pypi.eclass +++ b/eclass/pypi.eclass @@ -298,9 +298,9 @@ _pypi_provenance_url() { # @DESCRIPTION: # Output the URL to PyPI provenance for the specified artifact. pypi_provenance_url() { - local _PYPI_PROVENANCE_URL + local _PYPI_ATTESTATION_URL _pypi_provenance_url "${@}" - echo "${_PYPI_PROVENANCE_URL}" + echo "${_PYPI_ATTESTATION_URL}" } # @FUNCTION: pypi_verify_provenance
