Gentoo Archives: gentoo-commits

From: "Manuel Rueger (mrueg)" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/hoe: hoe-3.13.1.ebuild ChangeLog
Date: Wed, 04 Feb 2015 19:58:12
Message-Id: 20150204195809.9EE47110EC@oystercatcher.gentoo.org
1 mrueg 15/02/04 19:58:09
2
3 Modified: ChangeLog
4 Added: hoe-3.13.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key )
9
10 Revision Changes Path
11 1.177 dev-ruby/hoe/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/hoe/ChangeLog?rev=1.177&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/hoe/ChangeLog?rev=1.177&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/hoe/ChangeLog?r1=1.176&r2=1.177
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/hoe/ChangeLog,v
20 retrieving revision 1.176
21 retrieving revision 1.177
22 diff -u -r1.176 -r1.177
23 --- ChangeLog 8 Jan 2015 11:28:52 -0000 1.176
24 +++ ChangeLog 4 Feb 2015 19:58:09 -0000 1.177
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/hoe
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/hoe/ChangeLog,v 1.176 2015/01/08 11:28:52 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/hoe/ChangeLog,v 1.177 2015/02/04 19:58:09 mrueg Exp $
30 +
31 +*hoe-3.13.1 (04 Feb 2015)
32 +
33 + 04 Feb 2015; Manuel RĂ¼ger <mrueg@g.o> +hoe-3.13.1.ebuild:
34 + Version bump.
35
36 08 Jan 2015; Agostino Sarubbo <ago@g.o> hoe-3.13.0.ebuild:
37 Stable for ppc64, wrt bug #532572
38
39
40
41 1.1 dev-ruby/hoe/hoe-3.13.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/hoe/hoe-3.13.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/hoe/hoe-3.13.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: hoe-3.13.1.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/hoe/hoe-3.13.1.ebuild,v 1.1 2015/02/04 19:58:09 mrueg Exp $
51
52 EAPI=5
53 USE_RUBY="ruby19 ruby20 ruby21 ruby22"
54
55 RUBY_FAKEGEM_TASK_DOC=""
56
57 RUBY_FAKEGEM_DOCDIR="doc"
58 RUBY_FAKEGEM_EXTRADOC="History.rdoc Manifest.txt README.rdoc"
59
60 RUBY_FAKEGEM_EXTRAINSTALL="template"
61
62 inherit ruby-fakegem
63
64 DESCRIPTION="Hoe extends rake to provide full project automation"
65 HOMEPAGE="http://seattlerb.rubyforge.org/"
66
67 LICENSE="MIT"
68 SLOT="0"
69 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"
70 IUSE=""
71
72 ruby_add_bdepend "test? ( >=dev-ruby/minitest-5.5:5 )"
73
74 ruby_add_rdepend ">=dev-ruby/rake-0.8.7 >=dev-ruby/rdoc-4.0"
75
76 all_ruby_prepare() {
77 # Skip isolation
78 sed -i -e '/isolate/ s:^:#:' Rakefile || die
79
80 # Skip test depending on specifics of gem command name
81 sed -i -e '/test_nosudo/,/^ end/ s:^:#:' test/test_hoe.rb || die
82
83 # Gem.bin_wrapper does not work as expected on Gentoo.
84 sed -i -e 's/Gem.bin_wrapper//' lib/hoe/rcov.rb lib/hoe/publish.rb test/test_hoe_publish.rb || die
85 }
86
87 all_ruby_compile() {
88 all_fakegem_compile
89
90 rdoc --title "seattlerb's hoe-3.5.1 Documentation" -o doc --main README.txt lib History.txt Manifest.txt README.txt || die
91 }