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: dev-ruby/hoe/
Date: Mon, 02 Jan 2017 06:59:14
Message-Id: 1483340235.ad5131be2d080bcb0e081f37673ca730ca5aac02.graaff@gentoo
1 commit: ad5131be2d080bcb0e081f37673ca730ca5aac02
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 2 06:56:32 2017 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 2 06:57:15 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad5131be
7
8 dev-ruby/hoe: add ruby24, fixing bug 603840
9
10 Package-Manager: portage-2.3.0
11
12 dev-ruby/hoe/hoe-3.15.3-r1.ebuild | 50 +++++++++++++++++++++++++++++++++++++++
13 1 file changed, 50 insertions(+)
14
15 diff --git a/dev-ruby/hoe/hoe-3.15.3-r1.ebuild b/dev-ruby/hoe/hoe-3.15.3-r1.ebuild
16 new file mode 100644
17 index 00000000..69803a4
18 --- /dev/null
19 +++ b/dev-ruby/hoe/hoe-3.15.3-r1.ebuild
20 @@ -0,0 +1,50 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=5
26 +USE_RUBY="ruby21 ruby22 ruby23 ruby24"
27 +
28 +RUBY_FAKEGEM_RECIPE_DOC="rdoc"
29 +
30 +RUBY_FAKEGEM_DOCDIR="doc"
31 +RUBY_FAKEGEM_EXTRADOC="History.rdoc Manifest.txt README.rdoc"
32 +
33 +RUBY_FAKEGEM_EXTRAINSTALL="template"
34 +
35 +inherit ruby-fakegem
36 +
37 +DESCRIPTION="Hoe extends rake to provide full project automation"
38 +HOMEPAGE="https://www.zenspider.com/projects/hoe.html"
39 +
40 +LICENSE="MIT"
41 +SLOT="0"
42 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
43 +IUSE=""
44 +
45 +ruby_add_bdepend "test? ( >=dev-ruby/minitest-5.9:5 )"
46 +
47 +ruby_add_rdepend ">=dev-ruby/rake-0.8.7 <dev-ruby/rake-13.0"
48 +
49 +all_ruby_prepare() {
50 + # Skip isolation
51 + sed -i -e '/isolate/ s:^:#:' Rakefile || die
52 +
53 + # Skip test depending on specifics of gem command name
54 + sed -i -e '/test_nosudo/,/^ end/ s:^:#:' test/test_hoe.rb || die
55 +
56 + # Gem.bin_wrapper does not work as expected on Gentoo.
57 + sed -i -e 's/Gem.bin_wrapper//' lib/hoe/rcov.rb lib/hoe/publish.rb test/test_hoe_publish.rb || die
58 +
59 + # Fix broken test by including the right plugin first
60 + sed -i -e '/test_extensions/a Hoe.plugin :clean' test/test_hoe.rb || die
61 +
62 + # Allow newer rake for compatibility with ruby24, bug 603840
63 + sed -i -e '/dependency/ s/12.0/13.0/' Rakefile
64 +}
65 +
66 +all_ruby_compile() {
67 + all_fakegem_compile
68 +
69 + rdoc --title "seattlerb's hoe-3.5.1 Documentation" -o doc --main README.txt lib History.txt Manifest.txt README.txt || die
70 +}