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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5503D1581E7 for ; Mon, 22 Apr 2024 23:44:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BDD17E29F0; Mon, 22 Apr 2024 23:44:47 +0000 (UTC) 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 pigeon.gentoo.org (Postfix) with ESMTPS id A24A7E29F0 for ; Mon, 22 Apr 2024 23:44:47 +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 CEB783432F6 for ; Mon, 22 Apr 2024 23:44:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0BFD71735 for ; Mon, 22 Apr 2024 23:44:44 +0000 (UTC) From: "orbea" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "orbea" Message-ID: <1713829338.a67fa224aee1b23260ecdae2338bdb452219d369.orbea@gentoo> Subject: [gentoo-commits] repo/proj/libressl:master commit in: dev-util/maturin/ X-VCS-Repository: repo/proj/libressl X-VCS-Files: dev-util/maturin/maturin-1.5.1-r1.ebuild X-VCS-Directories: dev-util/maturin/ X-VCS-Committer: orbea X-VCS-Committer-Name: orbea X-VCS-Revision: a67fa224aee1b23260ecdae2338bdb452219d369 X-VCS-Branch: master Date: Mon, 22 Apr 2024 23:44:44 +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: 4b72db0c-ddf6-427d-a3f3-65edaf504506 X-Archives-Hash: 8cc1cac0be9f89a824222ef337c5f26f commit: a67fa224aee1b23260ecdae2338bdb452219d369 Author: orbea riseup net> AuthorDate: Mon Apr 22 23:42:18 2024 +0000 Commit: orbea riseup net> CommitDate: Mon Apr 22 23:42:18 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/libressl.git/commit/?id=a67fa224 dev-util/maturin: sync ::gentoo Signed-off-by: orbea riseup.net> dev-util/maturin/maturin-1.5.1-r1.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-util/maturin/maturin-1.5.1-r1.ebuild b/dev-util/maturin/maturin-1.5.1-r1.ebuild index 45efce3..be03a21 100644 --- a/dev-util/maturin/maturin-1.5.1-r1.ebuild +++ b/dev-util/maturin/maturin-1.5.1-r1.ebuild @@ -441,6 +441,9 @@ KEYWORDS="amd64 arm arm64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc x86" IUSE="doc +ssl test" RESTRICT="!test? ( test )" +# TODO: cleanup after CRATES_TEST's pyo3 is >=0.20.3 (bug #922236) +RESTRICT+=" ppc? ( test )" + RDEPEND="$(python_gen_cond_dep 'dev-python/tomli[${PYTHON_USEDEP}]' 3.10)" DEPEND="ssl? ( dev-libs/openssl:= )" BDEPEND=" @@ -465,6 +468,8 @@ src_prepare() { distutils-r1_src_prepare + [[ ${CRATES_TEST} == *pyo3@0.20.[0-2]* ]] || die "drop ppc test restrict" + # we build the Rust executable (just once) via cargo_src_compile sed -i -e '/setuptools_rust/d' -e '/rust_extensions/d' setup.py || die