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 EC80A15808B for ; Sun, 18 Feb 2024 08:30:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 07C0FE2B28; Sun, 18 Feb 2024 08:30:29 +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 DC5CCE2B28 for ; Sun, 18 Feb 2024 08:30:28 +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 178A5343069 for ; Sun, 18 Feb 2024 08:30:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D41281160 for ; Sun, 18 Feb 2024 08:30:25 +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: <1708245018.9b11c78e1780d743f3521cf882d4b0d08fb09c62.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/bindata/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/bindata/bindata-2.5.0.ebuild X-VCS-Directories: dev-ruby/bindata/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 9b11c78e1780d743f3521cf882d4b0d08fb09c62 X-VCS-Branch: master Date: Sun, 18 Feb 2024 08:30:25 +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: 40f608dd-8c7e-451d-bfbc-da236bfcc032 X-Archives-Hash: 057f047a9fd79cf257ffda5b187b225b commit: 9b11c78e1780d743f3521cf882d4b0d08fb09c62 Author: Hans de Graaff gentoo org> AuthorDate: Sun Feb 18 08:07:20 2024 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sun Feb 18 08:30:18 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b11c78e dev-ruby/bindata: avoid dependency on simplecov Closes: https://bugs.gentoo.org/924869 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/bindata/bindata-2.5.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-ruby/bindata/bindata-2.5.0.ebuild b/dev-ruby/bindata/bindata-2.5.0.ebuild index 57ed44e62c84..a30bd5321636 100644 --- a/dev-ruby/bindata/bindata-2.5.0.ebuild +++ b/dev-ruby/bindata/bindata-2.5.0.ebuild @@ -18,5 +18,5 @@ ruby_add_bdepend "test? ( dev-ruby/minitest:5 )" all_ruby_prepare() { sed -i -e '/[Bb]undler/d' Rakefile || die - sed -i -e '/[Cc]overalls/d' test/test_helper.rb || die + sed -i -e '/simplecov/,/^end/ s:^:#:' test/test_helper.rb || die }