Gentoo Archives: gentoo-commits

From: "Hans de Graaff (graaff)" <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/rdoc: ChangeLog rdoc-2.5.5.ebuild
Date: Thu, 22 Apr 2010 06:07:44
Message-Id: 20100422060740.787CA40012@corvid.gentoo.org
1 graaff 10/04/22 06:07:40
2
3 Modified: ChangeLog
4 Added: rdoc-2.5.5.ebuild
5 Log:
6 Version bump: many enhancements and bug fixes.
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.27 dev-ruby/rdoc/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rdoc/ChangeLog?rev=1.27&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rdoc/ChangeLog?rev=1.27&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rdoc/ChangeLog?r1=1.26&r2=1.27
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rdoc/ChangeLog,v
19 retrieving revision 1.26
20 retrieving revision 1.27
21 diff -u -r1.26 -r1.27
22 --- ChangeLog 21 Feb 2010 00:32:13 -0000 1.26
23 +++ ChangeLog 22 Apr 2010 06:07:40 -0000 1.27
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-ruby/rdoc
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rdoc/ChangeLog,v 1.26 2010/02/21 00:32:13 abcd Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rdoc/ChangeLog,v 1.27 2010/04/22 06:07:40 graaff Exp $
29 +
30 +*rdoc-2.5.5 (22 Apr 2010)
31 +
32 + 22 Apr 2010; Hans de Graaff <graaff@g.o> +rdoc-2.5.5.ebuild:
33 + Version bump: many enhancements and bug fixes.
34
35 21 Feb 2010; Jonathan Callen <abcd@g.o> rdoc-2.4.3-r1.ebuild:
36 Transfer prefix keywords (no other changes)
37
38
39
40 1.1 dev-ruby/rdoc/rdoc-2.5.5.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rdoc/rdoc-2.5.5.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rdoc/rdoc-2.5.5.ebuild?rev=1.1&content-type=text/plain
44
45 Index: rdoc-2.5.5.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/rdoc/rdoc-2.5.5.ebuild,v 1.1 2010/04/22 06:07:40 graaff Exp $
50
51 EAPI=2
52 USE_RUBY="ruby18 ruby19 jruby"
53
54 RUBY_FAKEGEM_TASK_DOC="docs"
55
56 RUBY_FAKEGEM_DOCDIR="doc"
57 RUBY_FAKEGEM_EXTRADOC="History.txt Manifest.txt README.txt RI.txt"
58
59 RUBY_FAKEGEM_BINWRAP=""
60
61 inherit ruby-fakegem
62
63 DESCRIPTION="An extended version of the RDoc library from Ruby 1.8"
64 HOMEPAGE="http://rubyforge.org/projects/rdoc/"
65 SRC_URI="mirror://rubyforge/${PN}/${P}.tgz"
66
67 LICENSE="Ruby"
68 SLOT="0"
69 KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-solaris"
70 IUSE=""
71
72 ruby_add_bdepend test dev-ruby/hoe
73 ruby_add_bdepend test virtual/ruby-minitest
74 ruby_add_bdepend doc dev-ruby/hoe
75
76 all_ruby_install() {
77 all_fakegem_install
78
79 for bin in rdoc ri; do
80 ruby_fakegem_binwrapper $bin /usr/bin/$bin-2
81 done
82 }
83
84 each_ruby_test() {
85 # `rake test' would fail when rdoc is not yet installed.
86 # Setting $rdoc_rakefile fixes this.
87 ${RUBY} -w -Ilib:ext:bin:test \
88 -e 'require "rubygems"; require "minitest/autorun"; \
89 $rdoc_rakefile = true; Dir.glob("test/test*.rb").each \
90 {|t| require t }' || die "Tests failed for ${RUBY}"
91 }