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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4A4C61581EE for ; Mon, 24 Mar 2025 11:41:05 +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) server-digest SHA256) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 35824343389 for ; Mon, 24 Mar 2025 11:41:05 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 345CD1103B8; Mon, 24 Mar 2025 11:41:04 +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 bobolink.gentoo.org (Postfix) with ESMTPS id 27A371103B8 for ; Mon, 24 Mar 2025 11:41:04 +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 D2CB23434F1 for ; Mon, 24 Mar 2025 11:41:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3A4F71EEA for ; Mon, 24 Mar 2025 11:41:02 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1742816448.e46f8ba6833c993939aaa7bcc859ef70288dd539.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/prism/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/prism/prism-1.4.0.ebuild X-VCS-Directories: dev-ruby/prism/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: e46f8ba6833c993939aaa7bcc859ef70288dd539 X-VCS-Branch: master Date: Mon, 24 Mar 2025 11:41:02 +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: 72c0e150-eb58-4037-8bc4-850409f86ce0 X-Archives-Hash: f520d3eac91891f5770d018e1295bd93 commit: e46f8ba6833c993939aaa7bcc859ef70288dd539 Author: Hans de Graaff gentoo org> AuthorDate: Mon Mar 24 11:39:59 2025 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Mon Mar 24 11:40:48 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e46f8ba6 dev-ruby/prism: avoid unreliable test Closes: https://bugs.gentoo.org/948649 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/prism/prism-1.4.0.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-ruby/prism/prism-1.4.0.ebuild b/dev-ruby/prism/prism-1.4.0.ebuild index 33ff67921cec..2d32b41f8d14 100644 --- a/dev-ruby/prism/prism-1.4.0.ebuild +++ b/dev-ruby/prism/prism-1.4.0.ebuild @@ -27,6 +27,10 @@ all_ruby_prepare() { # Avoid a dependency on rake-compiler sed -e '/PRISM_FFI_BACKEND/ s/$/ and false/' \ -i Rakefile || die + + # Avoid a test that won't work reliably in our varied build environments. + sed -e '/test_prism_so_exports_only_the_C_extension_init_function/aomit "Not reliable on Gentoo."' \ + -i test/prism/library_symbols_test.rb || die } each_ruby_prepare() {