Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/rcov: ChangeLog rcov-0.9.7.ebuild
Date: Mon, 28 Dec 2009 12:15:36
Message-Id: E1NPEVZ-0006Xd-VM@stork.gentoo.org
1 flameeyes 09/12/28 12:15:33
2
3 Modified: ChangeLog
4 Added: rcov-0.9.7.ebuild
5 Log:
6 Version bump, enable tests (even though they fail right now — reported upstream).
7 (Portage version: 2.2_rc61/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.10 dev-ruby/rcov/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rcov/ChangeLog?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rcov/ChangeLog?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rcov/ChangeLog?r1=1.9&r2=1.10
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rcov/ChangeLog,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- ChangeLog 25 Dec 2009 15:24:23 -0000 1.9
23 +++ ChangeLog 28 Dec 2009 12:15:33 -0000 1.10
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-ruby/rcov
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rcov/ChangeLog,v 1.9 2009/12/25 15:24:23 flameeyes Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rcov/ChangeLog,v 1.10 2009/12/28 12:15:33 flameeyes Exp $
29 +
30 +*rcov-0.9.7 (28 Dec 2009)
31 +
32 + 28 Dec 2009; Diego E. Pettenò <flameeyes@g.o> +rcov-0.9.7.ebuild:
33 + Version bump, enable tests (even though they fail right now — reported
34 + upstream).
35
36 *rcov-0.9.6-r1 (25 Dec 2009)
37
38
39
40
41 1.1 dev-ruby/rcov/rcov-0.9.7.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rcov/rcov-0.9.7.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/rcov/rcov-0.9.7.ebuild?rev=1.1&content-type=text/plain
45
46 Index: rcov-0.9.7.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/rcov/rcov-0.9.7.ebuild,v 1.1 2009/12/28 12:15:33 flameeyes Exp $
51
52 EAPI=2
53
54 USE_RUBY="ruby18 ruby19 jruby"
55
56 RUBY_FAKEGEM_TASK_TEST="test"
57
58 RUBY_FAKEGEM_DOCDIR="rdoc"
59 RUBY_FAKEGEM_EXTRADOC="THANKS BLURB"
60
61 inherit ruby-fakegem
62
63 DESCRIPTION="A ruby code coverage analysis tool"
64 HOMEPAGE="http://eigenclass.org/hiki.rb?rcov"
65
66 LICENSE="GPL-2"
67 SLOT="0"
68 KEYWORDS="~amd64 ~ppc ~x86"
69
70 # TODO: both emacs and vim support are present in this package, they
71 # should probably be added to the ebuild as well.
72 IUSE=""
73
74 each_ruby_compile() {
75 if [[ $(basename ${RUBY}) != "jruby" ]]; then
76 ${RUBY} -S rake ext/rcovrt/rcovrt.so || die "build failed"
77 fi
78 }
79
80 each_ruby_install() {
81 each_fakegem_install
82
83 if [[ $(basename ${RUBY}) != "jruby" ]]; then
84 ruby_fakegem_newins ext/rcovrt/rcovrt.so lib/rcovrt.so
85 fi
86 }