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 A3FED1581D3 for ; Sun, 26 May 2024 07:50:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D6EA6E29EE; Sun, 26 May 2024 07:50:13 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B15EBE29EE for ; Sun, 26 May 2024 07:50:13 +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 A5BB0335CB4 for ; Sun, 26 May 2024 07:50:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 13283E9F for ; Sun, 26 May 2024 07:50:11 +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: <1716709752.4e8d8098aea8201008872ae17e5a92b577be5b58.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/debug/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/debug/debug-1.9.1.ebuild dev-ruby/debug/debug-1.9.2.ebuild X-VCS-Directories: dev-ruby/debug/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 4e8d8098aea8201008872ae17e5a92b577be5b58 X-VCS-Branch: master Date: Sun, 26 May 2024 07:50:11 +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: 110251f6-3434-4e21-bd7a-16a214c11393 X-Archives-Hash: 90461f512918bb3435a74a63b96dd495 commit: 4e8d8098aea8201008872ae17e5a92b577be5b58 Author: Hans de Graaff gentoo org> AuthorDate: Sun May 26 07:49:12 2024 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sun May 26 07:49:12 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e8d8098 dev-ruby/debug: avoid git in gemspec generation Closes: https://bugs.gentoo.org/932765 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/debug/debug-1.9.1.ebuild | 5 ++++- dev-ruby/debug/debug-1.9.2.ebuild | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/dev-ruby/debug/debug-1.9.1.ebuild b/dev-ruby/debug/debug-1.9.1.ebuild index 2fab65c0e6c0..2e060d63076c 100644 --- a/dev-ruby/debug/debug-1.9.1.ebuild +++ b/dev-ruby/debug/debug-1.9.1.ebuild @@ -33,6 +33,9 @@ ruby_add_rdepend " " all_ruby_prepare() { - sed -i -e "s:require_relative ':require './:" -e 's/__dir__/"."/' ${RUBY_FAKEGEM_GEMSPEC} || die + sed -e "s:require_relative ':require './:" \ + -e 's/__dir__/"."/' \ + -e 's/git ls-files -z/find * -print0/' \ + -i ${RUBY_FAKEGEM_GEMSPEC} || die sed -i -e '/bundler/I s:^:#:' Rakefile || die } diff --git a/dev-ruby/debug/debug-1.9.2.ebuild b/dev-ruby/debug/debug-1.9.2.ebuild index 684a22aacf92..a78a3d956544 100644 --- a/dev-ruby/debug/debug-1.9.2.ebuild +++ b/dev-ruby/debug/debug-1.9.2.ebuild @@ -33,6 +33,9 @@ ruby_add_rdepend " " all_ruby_prepare() { - sed -i -e "s:require_relative ':require './:" -e 's/__dir__/"."/' ${RUBY_FAKEGEM_GEMSPEC} || die + sed -e "s:require_relative ':require './:" \ + -e 's/__dir__/"."/' \ + -e 's/git ls-files -z/find * -print0/' \ + -i ${RUBY_FAKEGEM_GEMSPEC} || die sed -i -e '/bundler/I s:^:#:' Rakefile || die }