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.0.ebuild ChangeLog
Date: Sat, 04 Oct 2014 15:37:08
Message-Id: 20141004153703.611EA6F48@oystercatcher.gentoo.org
1 mrueg 14/10/04 15:37:03
2
3 Modified: ChangeLog
4 Added: hoe-3.13.0.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key )
9
10 Revision Changes Path
11 1.164 dev-ruby/hoe/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/hoe/ChangeLog?rev=1.164&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/hoe/ChangeLog?rev=1.164&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/hoe/ChangeLog?r1=1.163&r2=1.164
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/hoe/ChangeLog,v
20 retrieving revision 1.163
21 retrieving revision 1.164
22 diff -u -r1.163 -r1.164
23 --- ChangeLog 19 Sep 2014 09:53:49 -0000 1.163
24 +++ ChangeLog 4 Oct 2014 15:37:03 -0000 1.164
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/hoe
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/hoe/ChangeLog,v 1.163 2014/09/19 09:53:49 mrueg Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/hoe/ChangeLog,v 1.164 2014/10/04 15:37:03 mrueg Exp $
30 +
31 +*hoe-3.13.0 (04 Oct 2014)
32 +
33 + 04 Oct 2014; Manuel Rüger <mrueg@g.o> +hoe-3.13.0.ebuild:
34 + Version bump.
35
36 19 Sep 2014; Manuel Rüger <mrueg@g.o> -hoe-2.12.5.ebuild:
37 Cleanup old.
38
39
40
41 1.1 dev-ruby/hoe/hoe-3.13.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/hoe/hoe-3.13.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/hoe/hoe-3.13.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: hoe-3.13.0.ebuild
47 ===================================================================
48 # Copyright 1999-2014 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.0.ebuild,v 1.1 2014/10/04 15:37:03 mrueg Exp $
51
52 EAPI=5
53 USE_RUBY="ruby19 ruby20 ruby21 jruby"
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.3: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 }