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: Sun, 27 Nov 2016 10:39:28
Message-Id: 1480243149.62cd4e96b682cbc77de0108c9ec9c136745b8a06.graaff@gentoo
1 commit: 62cd4e96b682cbc77de0108c9ec9c136745b8a06
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 27 10:37:10 2016 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 27 10:39:09 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62cd4e96
7
8 app-text/ronn: cleanup
9
10 Package-Manager: portage-2.3.0
11
12 app-text/ronn/ronn-0.7.3-r2.ebuild | 48 --------------------------------------
13 1 file changed, 48 deletions(-)
14
15 diff --git a/app-text/ronn/ronn-0.7.3-r2.ebuild b/app-text/ronn/ronn-0.7.3-r2.ebuild
16 deleted file mode 100644
17 index 87bff9b..00000000
18 --- a/app-text/ronn/ronn-0.7.3-r2.ebuild
19 +++ /dev/null
20 @@ -1,48 +0,0 @@
21 -# Copyright 1999-2016 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=5
26 -USE_RUBY="ruby20"
27 -
28 -RUBY_FAKEGEM_TASK_DOC=""
29 -RUBY_FAKEGEM_EXTRADOC="AUTHORS CHANGES README.md"
30 -
31 -inherit ruby-fakegem
32 -
33 -DESCRIPTION="Ronn converts simple, human readable textfiles to roff for terminal display, and also to HTML"
34 -HOMEPAGE="https://github.com/rtomayko/ronn/"
35 -
36 -LICENSE="MIT"
37 -SLOT="0"
38 -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
39 -
40 -IUSE=""
41 -
42 -ruby_add_rdepend "
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_bdepend ">=dev-ruby/hpricot-0.8.2 >=dev-ruby/rdiscount-1.5.8"
48 -
49 -all_ruby_prepare() {
50 - # Avoid test failing due to changes in hash handling in ruby 1.8.7:
51 - # https://github.com/rtomayko/ronn/issues/56
52 - sed -i -e '81 s:^:#:' test/test_ronn.rb || die
53 -}
54 -
55 -each_ruby_prepare() {
56 - # Make sure that we always use the right interpreter during tests.
57 - sed -i -e "/output/ s:ronn:${RUBY} bin/ronn:" test/test_ronn.rb
58 -}
59 -
60 -all_ruby_compile() {
61 - PATH="${S}/bin:${PATH}" rake man || die
62 -}
63 -
64 -all_ruby_install() {
65 - all_fakegem_install
66 -
67 - doman man/ronn.1 man/ronn-format.7
68 -}