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 12954158086 for ; Sun, 5 Dec 2021 07:41:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1B87AE069C; Sun, 5 Dec 2021 07:41:45 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 01D67E069C for ; Sun, 5 Dec 2021 07:41:44 +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 007BB33BE39 for ; Sun, 5 Dec 2021 07:41:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 72CB41A0 for ; Sun, 5 Dec 2021 07:41:42 +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: <1638690095.1ef5e5ffa91374e5537b9ad3c39adb85976726a3.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild X-VCS-Directories: app-text/ronn-ng/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 1ef5e5ffa91374e5537b9ad3c39adb85976726a3 X-VCS-Branch: master Date: Sun, 5 Dec 2021 07:41:42 +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: b9d79766-9a6a-44dc-968b-9eb1874ef26c X-Archives-Hash: 42dfbd817699d87b90c3d9933327fcea commit: 1ef5e5ffa91374e5537b9ad3c39adb85976726a3 Author: Hans de Graaff gentoo org> AuthorDate: Sun Dec 5 07:41:35 2021 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sun Dec 5 07:41:35 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ef5e5ff app-text/ronn-ng: fix build dependencies We need these dependencies also during build since we call rake and the Rakefile requires them. Closes: https://bugs.gentoo.org/828129 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Hans de Graaff gentoo.org> app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild b/app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild index 7353defff61e..421aa12c568d 100644 --- a/app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild +++ b/app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild @@ -20,12 +20,18 @@ IUSE="" RDEPEND+="!app-text/ronn" -ruby_add_rdepend " +DEPS=" >=dev-ruby/kramdown-2.1:2 - =dev-ruby/mustache-1* >=dev-ruby/nokogiri-1.9.0:0 " +ruby_add_rdepend " + =dev-ruby/mustache-1* + ${DEPS} +" + +ruby_add_bdepend "${DEPS}" + all_ruby_prepare() { sed -i -e '/mustache/ s/0.7/1.0/' ${RUBY_FAKEGEM_GEMSPEC} || die }