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/
Date: Tue, 06 Jul 2021 07:49:21
Message-Id: 1625557750.1348829758bc7005bf2125746c64f5c3ffa31618.graaff@gentoo
1 commit: 1348829758bc7005bf2125746c64f5c3ffa31618
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 6 07:46:43 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 6 07:49:10 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13488297
7
8 app-text/ronn: cleanup
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.2
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 app-text/ronn/ronn-0.7.3-r3.ebuild | 49 --------------------------------------
14 1 file changed, 49 deletions(-)
15
16 diff --git a/app-text/ronn/ronn-0.7.3-r3.ebuild b/app-text/ronn/ronn-0.7.3-r3.ebuild
17 deleted file mode 100644
18 index c5fb5a2862b..00000000000
19 --- a/app-text/ronn/ronn-0.7.3-r3.ebuild
20 +++ /dev/null
21 @@ -1,49 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -USE_RUBY="ruby23 ruby24 ruby25 ruby26"
27 -
28 -RUBY_FAKEGEM_TASK_DOC=""
29 -RUBY_FAKEGEM_EXTRADOC="AUTHORS CHANGES README.md"
30 -
31 -inherit ruby-fakegem
32 -
33 -DESCRIPTION="Converts simple, human readable textfiles to roff for terminal display, and HTML"
34 -HOMEPAGE="https://github.com/rtomayko/ronn/"
35 -
36 -LICENSE="MIT"
37 -SLOT="0"
38 -KEYWORDS="amd64 arm ~arm64 ~hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris"
39 -
40 -IUSE=""
41 -
42 -DEPS="
43 - >=dev-ruby/hpricot-0.8.2
44 - >=dev-ruby/mustache-0.7.0
45 - >=dev-ruby/rdiscount-1.5.8"
46 -
47 -ruby_add_rdepend "${DEPS}"
48 -
49 -ruby_add_bdepend "${DEPS}"
50 -
51 -all_ruby_prepare() {
52 - # Avoid test failing due to changes in hash handling in ruby 1.8.7:
53 - # https://github.com/rtomayko/ronn/issues/56
54 - sed -i -e '81 s:^:#:' test/test_ronn.rb || die
55 -}
56 -
57 -each_ruby_prepare() {
58 - # Make sure that we always use the right interpreter during tests.
59 - sed -i -e "/output/ s:ronn:${RUBY} bin/ronn:" test/test_ronn.rb
60 -}
61 -
62 -all_ruby_compile() {
63 - PATH="${S}/bin:${PATH}" rake man || die
64 -}
65 -
66 -all_ruby_install() {
67 - all_fakegem_install
68 -
69 - doman man/ronn.1 man/ronn-format.7
70 -}