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 60524158041 for ; Sun, 31 Mar 2024 06:41:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0CF48E2AAD; Sun, 31 Mar 2024 06:41:49 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 E9ADBE2AAD for ; Sun, 31 Mar 2024 06:41:48 +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 ECF5B343169 for ; Sun, 31 Mar 2024 06:41:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0228E1564 for ; Sun, 31 Mar 2024 06:41:46 +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: <1711865068.9059d54db3dd4474b00c7283e62367b579f45aad.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/minitest-bonus-assertions/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/minitest-bonus-assertions/minitest-bonus-assertions-3.0-r2.ebuild X-VCS-Directories: dev-ruby/minitest-bonus-assertions/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 9059d54db3dd4474b00c7283e62367b579f45aad X-VCS-Branch: master Date: Sun, 31 Mar 2024 06:41:46 +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: f0e7d042-9d76-4546-b5a6-f351bdfd0795 X-Archives-Hash: f563aa16d455f4de8f04d9b8007d9270 commit: 9059d54db3dd4474b00c7283e62367b579f45aad Author: Hans de Graaff gentoo org> AuthorDate: Sat Mar 30 10:10:19 2024 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sun Mar 31 06:04:28 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9059d54d dev-ruby/minitest-bonus-assertions: enable ruby33 Skip more tests that are fragile for whitespace changes. Closes: https://bugs.gentoo.org/927956 Signed-off-by: Hans de Graaff gentoo.org> .../minitest-bonus-assertions-3.0-r2.ebuild | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/dev-ruby/minitest-bonus-assertions/minitest-bonus-assertions-3.0-r2.ebuild b/dev-ruby/minitest-bonus-assertions/minitest-bonus-assertions-3.0-r2.ebuild index 6c0e2fcd63d5..3847c4ce3cfa 100644 --- a/dev-ruby/minitest-bonus-assertions/minitest-bonus-assertions-3.0-r2.ebuild +++ b/dev-ruby/minitest-bonus-assertions/minitest-bonus-assertions-3.0-r2.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -USE_RUBY="ruby27 ruby30 ruby31 ruby32" +USE_RUBY="ruby31 ruby32 ruby33" RUBY_FAKEGEM_EXTRADOC="History.rdoc README.rdoc" @@ -15,17 +15,24 @@ HOMEPAGE="https://github.com/halostatue/minitest-bonus-assertions" LICENSE="MIT" SLOT="2" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" -IUSE="" +IUSE="test" ruby_add_bdepend "test? ( dev-ruby/minitest dev-ruby/minitest-pretty_diff )" all_ruby_prepare() { sed -i -e '/\(bisect\|focus\|moar\)/ s:^:#:' test/minitest_config.rb || die - sed -i -e '/returns true if the \(keys are missing\|sets are not equal\)/askip "Flaky"' test/test_minitest-bonus-assertions.rb || die + sed -e '/returns true if the \(keys are missing\|sets are not equal\)/askip "Flaky"' \ + -i test/test_minitest-bonus-assertions.rb || die # Avoid test that returns slightly different formatting on ruby31 - sed -i -e '/is triggered with a different exception/askip "Fragile for output differences"' test/test_minitest-bonus-assertions.rb || die + sed -e '/is triggered with a different exception/askip "Fragile for output differences"' \ + -i test/test_minitest-bonus-assertions.rb || die + + # Avoid test that returns slightly different formatting with newer set versions. + sed -e '207iskip "Fragile for output differences"' \ + -e '225iskip "Fragile for output differences"' \ + -i test/test_minitest-bonus-assertions.rb || die } each_ruby_test() {