From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3CD1F1581F3 for ; Fri, 29 Nov 2024 21:18:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5D9E6E080E; Fri, 29 Nov 2024 21:18:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9BA0BE080E for ; Fri, 29 Nov 2024 21:18:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D83C8342FB4 for ; Fri, 29 Nov 2024 21:18:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 490421D6E for ; Fri, 29 Nov 2024 21:18:24 +0000 (UTC) From: "Eli Schwartz" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eli Schwartz" Message-ID: <1732914725.b7a319036353b6fe12fe76ffea061b697546412e.eschwartz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/distutils-r1.eclass X-VCS-Directories: eclass/ X-VCS-Committer: eschwartz X-VCS-Committer-Name: Eli Schwartz X-VCS-Revision: b7a319036353b6fe12fe76ffea061b697546412e X-VCS-Branch: master Date: Fri, 29 Nov 2024 21:18:24 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 910d4ecf-4b5e-4eea-ac7c-b5c97cf0b3f0 X-Archives-Hash: c93d26eb4eda36791ef9131744af409f commit: b7a319036353b6fe12fe76ffea061b697546412e Author: Ionen Wolkens gentoo org> AuthorDate: Tue Nov 5 02:52:25 2024 +0000 Commit: Eli Schwartz gentoo 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= to replace it. Update and set the lower bound to latest stable rather than use has_version. Signed-off-by: Ionen Wolkens gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/39204 Signed-off-by: Michał Górny gentoo.org> Signed-off-by: Eli Schwartz 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' '') )