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 E890915852A for ; Fri, 16 Aug 2024 00:05:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 665CBE29BB; Fri, 16 Aug 2024 00:05:13 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3AF61E29BB for ; Fri, 16 Aug 2024 00:05:13 +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 5EE4833BE18 for ; Fri, 16 Aug 2024 00:05:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C005B1ECB for ; Fri, 16 Aug 2024 00:05:10 +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: <1723766676.4b95aca7d5f0a0b19b3f18cc92bbb813a58ab795.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.6.0.ebuild dev-util/maturin/maturin-1.7.0.ebuild X-VCS-Directories: dev-util/maturin/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 4b95aca7d5f0a0b19b3f18cc92bbb813a58ab795 X-VCS-Branch: master Date: Fri, 16 Aug 2024 00:05:10 +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: 97773932-e761-4760-a31b-782753ef9d0d X-Archives-Hash: 3a0aa9560b491c4c43f9741eeecd37f0 commit: 4b95aca7d5f0a0b19b3f18cc92bbb813a58ab795 Author: Ionen Wolkens gentoo org> AuthorDate: Thu Aug 15 23:45:11 2024 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Fri Aug 16 00:04:36 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b95aca7 dev-util/maturin: skip test broken by cargo.eclass changes Bug: https://bugs.gentoo.org/936968 Closes: https://bugs.gentoo.org/937992 Signed-off-by: Ionen Wolkens gentoo.org> dev-util/maturin/maturin-1.6.0.ebuild | 3 ++- dev-util/maturin/maturin-1.7.0.ebuild | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-util/maturin/maturin-1.6.0.ebuild b/dev-util/maturin/maturin-1.6.0.ebuild index da76be521596..0db2445f7122 100644 --- a/dev-util/maturin/maturin-1.6.0.ebuild +++ b/dev-util/maturin/maturin-1.6.0.ebuild @@ -532,7 +532,6 @@ python_compile_all() { } python_test() { - local -x COLUMNS=100 # match clap_builder crate default local -x MATURIN_TEST_PYTHON=${EPYTHON} local -x PIP_CONFIG_FILE=${T}/pip.conf local -x VIRTUALENV_SYSTEM_SITE_PACKAGES=1 @@ -541,6 +540,8 @@ python_test() { local -x PYO3_USE_ABI3_FORWARD_COMPATIBILITY=1 local skip=( + # picky cli output test that easily benignly fail (bug #937992) + --skip cli_tests # avoid need for wasm over a single hello world test --skip integration_wasm_hello_world # fragile depending on rust version, also wants libpypy*-c.so for pypy diff --git a/dev-util/maturin/maturin-1.7.0.ebuild b/dev-util/maturin/maturin-1.7.0.ebuild index 6099d2180ca1..78feb9dcf851 100644 --- a/dev-util/maturin/maturin-1.7.0.ebuild +++ b/dev-util/maturin/maturin-1.7.0.ebuild @@ -487,7 +487,6 @@ python_compile_all() { } python_test() { - local -x COLUMNS=100 # match clap_builder crate default local -x MATURIN_TEST_PYTHON=${EPYTHON} local -x PIP_CONFIG_FILE=${T}/pip.conf local -x VIRTUALENV_SYSTEM_SITE_PACKAGES=1 @@ -496,6 +495,8 @@ python_test() { local -x PYO3_USE_ABI3_FORWARD_COMPATIBILITY=1 local skip=( + # picky cli output test that easily benignly fail (bug #937992) + --skip cli_tests # avoid need for wasm over a single hello world test --skip integration_wasm_hello_world # fragile depending on rust version, also wants libpypy*-c.so for pypy