commit: b7a319036353b6fe12fe76ffea061b697546412e Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org> AuthorDate: Tue Nov 5 02:52:25 2024 +0000 Commit: Eli Schwartz <eschwartz <AT> gentoo <DOT> org> CommitDate: Fri Nov 29 21:12:05 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7a31903
distutils-r1.eclass: Update maturin's skip auditwheel option >=maturin-1.7.1 has deprecated --skip-auditwheel and added --auditwheel=<check|repair|skip> to replace it. Update and set the lower bound to latest stable rather than use has_version. Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/39204 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> Signed-off-by: Eli Schwartz <eschwartz <AT> gentoo.org> eclass/distutils-r1.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 357e64e6f75c..1806eb06483d 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -271,7 +271,7 @@ _distutils_set_globals() { ;; maturin) bdep+=' - >=dev-util/maturin-1.4.0[${PYTHON_USEDEP}] + >=dev-util/maturin-1.7.4[${PYTHON_USEDEP}] ' ;; no) @@ -1262,8 +1262,8 @@ distutils_pep517_install() { # `maturin pep517 build-wheel --help` for options local maturin_args=( "${DISTUTILS_ARGS[@]}" + --auditwheel=skip # see bug #831171 --jobs="$(makeopts_jobs)" - --skip-auditwheel # see bug #831171 $(in_iuse debug && usex debug '--profile=dev' '') )
