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 3BA0A139345 for ; Fri, 9 Jul 2021 09:42:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 82CC2E0BD8; Fri, 9 Jul 2021 09:42:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6CBB6E0BD8 for ; Fri, 9 Jul 2021 09:42:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 92CF0340A03 for ; Fri, 9 Jul 2021 09:42:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 85A677CA for ; Fri, 9 Jul 2021 09:42:43 +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: <1625823677.8c3c4b660050062f63f964abd75e83f39ea92136.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/rdoc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/rdoc/rdoc-6.3.2.ebuild X-VCS-Directories: dev-ruby/rdoc/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 8c3c4b660050062f63f964abd75e83f39ea92136 X-VCS-Branch: master Date: Fri, 9 Jul 2021 09:42:43 +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: c2b83c4e-c797-45d8-b2d9-fc786ed9cf36 X-Archives-Hash: 5d936df7c21ef8df3d698a8b4ba6d476 commit: 8c3c4b660050062f63f964abd75e83f39ea92136 Author: Hans de Graaff gentoo org> AuthorDate: Fri Jul 9 09:41:17 2021 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Fri Jul 9 09:41:17 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c3c4b66 dev-ruby/rdoc: fix shebang for gentoo prefix Thanks to Yiyang Wu gmail.com> for providing a fix in https://github.com/gentoo/gentoo/pull/21046 Package-Manager: Portage-3.0.20, Repoman-3.0.2 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/rdoc/rdoc-6.3.2.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-ruby/rdoc/rdoc-6.3.2.ebuild b/dev-ruby/rdoc/rdoc-6.3.2.ebuild index da6953c650d..c13c72aa811 100644 --- a/dev-ruby/rdoc/rdoc-6.3.2.ebuild +++ b/dev-ruby/rdoc/rdoc-6.3.2.ebuild @@ -13,7 +13,7 @@ RUBY_FAKEGEM_BINDIR="exe" RUBY_FAKEGEM_GEMSPEC="rdoc.gemspec" -inherit ruby-fakegem +inherit prefix ruby-fakegem DESCRIPTION="An extended version of the RDoc library from Ruby 1.8" HOMEPAGE="https://github.com/ruby/rdoc/" @@ -82,6 +82,7 @@ all_ruby_install() { ruby_fakegem_binwrapper $bin /usr/bin/${bin}${version} sed -i -e "1s/env ruby/ruby${version}/" \ "${ED}/usr/bin/${bin}${version}" || die + use prefix && hprefixify "${ED}/usr/bin/${bin}${version}" fi done done