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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 817C3158017 for ; Tue, 28 Sep 2021 20:52:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5CB45E0916; Tue, 28 Sep 2021 20:52:04 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 12E61E0916 for ; Tue, 28 Sep 2021 20:52:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 85DBF342F9F for ; Tue, 28 Sep 2021 20:52:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ED6E4116 for ; Tue, 28 Sep 2021 20:52:00 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1632862304.c643648f6ff3fde7b1f118c0d477305a1acdfdd7.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/rotp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/rotp/rotp-6.2.0.ebuild X-VCS-Directories: dev-ruby/rotp/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c643648f6ff3fde7b1f118c0d477305a1acdfdd7 X-VCS-Branch: master Date: Tue, 28 Sep 2021 20:52:00 +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: 5cedc7de-cfae-4c76-9fea-70254bfb5af2 X-Archives-Hash: 547b52768c351942fe4b052177aa98be commit: c643648f6ff3fde7b1f118c0d477305a1acdfdd7 Author: Sam James gentoo org> AuthorDate: Tue Sep 28 20:48:32 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Sep 28 20:51:44 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c643648f dev-ruby/rotp: drop git requirement Signed-off-by: Sam James gentoo.org> dev-ruby/rotp/rotp-6.2.0.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-ruby/rotp/rotp-6.2.0.ebuild b/dev-ruby/rotp/rotp-6.2.0.ebuild index 8b16fcb7f63..1d586425b66 100644 --- a/dev-ruby/rotp/rotp-6.2.0.ebuild +++ b/dev-ruby/rotp/rotp-6.2.0.ebuild @@ -28,4 +28,9 @@ ruby_add_bdepend " all_ruby_prepare() { # Remove simplecov sed -i -e '/simplecov/,/^end/ s:^:#:' spec/spec_helper.rb || die + # Don't require git + sed -i \ + -e 's/git ls-files/find/' \ + -e 's/{test,spec,features}/spec/' \ + ${RUBY_FAKEGEM_GEMSPEC} || die }