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 AA417158090 for ; Mon, 23 May 2022 05:05:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2C4BBE08F6; Mon, 23 May 2022 05:05:06 +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 E944BE08F3 for ; Mon, 23 May 2022 05:05:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 A5029340E0B for ; Mon, 23 May 2022 05:05:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A4146485 for ; Mon, 23 May 2022 05:05: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: <1653282286.0993f589d09e416ab5d27bc70c66762f81b6d3d4.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/thor/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/thor/thor-1.2.1.ebuild X-VCS-Directories: dev-ruby/thor/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 0993f589d09e416ab5d27bc70c66762f81b6d3d4 X-VCS-Branch: master Date: Mon, 23 May 2022 05:05: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: 11c4b208-3cc8-4a04-947f-e6d0df0f5f89 X-Archives-Hash: 3d8a53090d9ef2711758e5458913682b commit: 0993f589d09e416ab5d27bc70c66762f81b6d3d4 Author: Hans de Graaff gentoo org> AuthorDate: Sun May 22 08:36:59 2022 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Mon May 23 05:04:46 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0993f589 dev-ruby/thor: avoid failing test This unit test is really an integration test and it fails on external changes that are not relevant for the test. Closes: https://bugs.gentoo.org/844889 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/thor/thor-1.2.1.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-ruby/thor/thor-1.2.1.ebuild b/dev-ruby/thor/thor-1.2.1.ebuild index f9f2ad391d8f..c1335062ee3a 100644 --- a/dev-ruby/thor/thor-1.2.1.ebuild +++ b/dev-ruby/thor/thor-1.2.1.ebuild @@ -53,6 +53,9 @@ all_ruby_prepare() { # Avoid currently broken readline specs (already fixed upstream) #rm -f spec/line_editor/readline_spec.rb spec/line_editor_spec.rb || die + + # Avoid spec failing on whitespace difference in error message + sed -i -e '/raises an error for unknown switches/askip "whitespace differences"' spec/parser/options_spec.rb || die } each_ruby_test() {