Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
Date: Sun, 05 Dec 2021 07:41:46
Message-Id: 1638690095.1ef5e5ffa91374e5537b9ad3c39adb85976726a3.graaff@gentoo
1 commit: 1ef5e5ffa91374e5537b9ad3c39adb85976726a3
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 5 07:41:35 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 5 07:41:35 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ef5e5ff
7
8 app-text/ronn-ng: fix build dependencies
9
10 We need these dependencies also during build since we call rake and the
11 Rakefile requires them.
12
13 Closes: https://bugs.gentoo.org/828129
14 Package-Manager: Portage-3.0.28, Repoman-3.0.3
15 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
16
17 app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild | 10 ++++++++--
18 1 file changed, 8 insertions(+), 2 deletions(-)
19
20 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
21 index 7353defff61e..421aa12c568d 100644
22 --- a/app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild
23 +++ b/app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild
24 @@ -20,12 +20,18 @@ IUSE=""
25
26 RDEPEND+="!app-text/ronn"
27
28 -ruby_add_rdepend "
29 +DEPS="
30 >=dev-ruby/kramdown-2.1:2
31 - =dev-ruby/mustache-1*
32 >=dev-ruby/nokogiri-1.9.0:0
33 "
34
35 +ruby_add_rdepend "
36 + =dev-ruby/mustache-1*
37 + ${DEPS}
38 +"
39 +
40 +ruby_add_bdepend "${DEPS}"
41 +
42 all_ruby_prepare() {
43 sed -i -e '/mustache/ s/0.7/1.0/' ${RUBY_FAKEGEM_GEMSPEC} || die
44 }