From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 finch.gentoo.org (Postfix) with ESMTPS id 563E61582EF for ; Sun, 09 Mar 2025 00:51:33 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 3F1F8342FF7 for ; Sun, 09 Mar 2025 00:51:33 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 57141110370; Sun, 09 Mar 2025 00:51:29 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 42E3411027C for ; Sun, 09 Mar 2025 00:51:29 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F116B342FF4 for ; Sun, 09 Mar 2025 00:51:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 557D9280C for ; Sun, 09 Mar 2025 00:51:27 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1741481427.2bb9a4cfb453e95d749d57ef3cb4ca10c56b478e.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/maturin/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/maturin/maturin-1.8.1.ebuild dev-util/maturin/maturin-1.8.2.ebuild X-VCS-Directories: dev-util/maturin/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 2bb9a4cfb453e95d749d57ef3cb4ca10c56b478e X-VCS-Branch: master Date: Sun, 09 Mar 2025 00:51:27 +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: 402c1947-a0c0-49a0-88a9-f63b2632e00c X-Archives-Hash: cb1797f07eb3425ffd13094b73601902 commit: 2bb9a4cfb453e95d749d57ef3cb4ca10c56b478e Author: Ionen Wolkens gentoo org> AuthorDate: Sat Mar 8 23:04:00 2025 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Sun Mar 9 00:50:27 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bb9a4cf dev-util/maturin: remove musl workaround Haven't tested, but the eclass passes -crt-static now so it shouldn't be needed anymore. Signed-off-by: Ionen Wolkens gentoo.org> dev-util/maturin/maturin-1.8.1.ebuild | 3 --- dev-util/maturin/maturin-1.8.2.ebuild | 3 --- 2 files changed, 6 deletions(-) diff --git a/dev-util/maturin/maturin-1.8.1.ebuild b/dev-util/maturin/maturin-1.8.1.ebuild index facdc8718751..78cfc8fa99d1 100644 --- a/dev-util/maturin/maturin-1.8.1.ebuild +++ b/dev-util/maturin/maturin-1.8.1.ebuild @@ -88,9 +88,6 @@ src_prepare() { src_configure() { export OPENSSL_NO_VENDOR=1 - # bug #938847 (TODO?: should probably be an eclass default for musl) - use elibc_musl && RUSTFLAGS+=" -C target-feature=-crt-static" - # https://github.com/rust-lang/stacker/issues/79 use s390 && ! is-flagq '-march=*' && append-cflags $(test-flags-CC -march=z10) diff --git a/dev-util/maturin/maturin-1.8.2.ebuild b/dev-util/maturin/maturin-1.8.2.ebuild index 777f8cad3d65..f67ab1150dc6 100644 --- a/dev-util/maturin/maturin-1.8.2.ebuild +++ b/dev-util/maturin/maturin-1.8.2.ebuild @@ -92,9 +92,6 @@ src_prepare() { src_configure() { export OPENSSL_NO_VENDOR=1 - # bug #938847 (TODO?: should probably be an eclass default for musl) - use elibc_musl && RUSTFLAGS+=" -C target-feature=-crt-static" - # https://github.com/rust-lang/stacker/issues/79 use s390 && ! is-flagq '-march=*' && append-cflags $(test-flags-CC -march=z10)