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/test-unit: ChangeLog test-unit-2.0.7.ebuild test-unit-2.0.5.ebuild test-unit-2.0.6.ebuild
Date: Sat, 01 May 2010 10:44:42
Message-Id: 20100501104439.C95152C0D6@corvid.gentoo.org
1 flameeyes 10/05/01 10:44:39
2
3 Modified: ChangeLog
4 Added: test-unit-2.0.7.ebuild
5 Removed: test-unit-2.0.5.ebuild test-unit-2.0.6.ebuild
6 Log:
7 Version bump for series two, it still causes problems but is needed for some cases.
8 (Portage version: 2.2_rc67/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.16 dev-ruby/test-unit/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/test-unit/ChangeLog?rev=1.16&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/test-unit/ChangeLog?rev=1.16&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/test-unit/ChangeLog?r1=1.15&r2=1.16
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/test-unit/ChangeLog,v
20 retrieving revision 1.15
21 retrieving revision 1.16
22 diff -u -r1.15 -r1.16
23 --- ChangeLog 14 Jan 2010 23:48:10 -0000 1.15
24 +++ ChangeLog 1 May 2010 10:44:39 -0000 1.16
25 @@ -1,6 +1,13 @@
26 # ChangeLog for dev-ruby/test-unit
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/test-unit/ChangeLog,v 1.15 2010/01/14 23:48:10 flameeyes Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/test-unit/ChangeLog,v 1.16 2010/05/01 10:44:39 flameeyes Exp $
30 +
31 +*test-unit-2.0.7 (01 May 2010)
32 +
33 + 01 May 2010; Diego E. Pettenò <flameeyes@g.o>
34 + -test-unit-2.0.5.ebuild, -test-unit-2.0.6.ebuild, +test-unit-2.0.7.ebuild:
35 + Version bump for series two, it still causes problems but is needed for
36 + some cases.
37
38 *test-unit-1.2.3 (14 Jan 2010)
39
40
41
42
43 1.1 dev-ruby/test-unit/test-unit-2.0.7.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/test-unit/test-unit-2.0.7.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/test-unit/test-unit-2.0.7.ebuild?rev=1.1&content-type=text/plain
47
48 Index: test-unit-2.0.7.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/test-unit/test-unit-2.0.7.ebuild,v 1.1 2010/05/01 10:44:39 flameeyes Exp $
53
54 EAPI=2
55 # One test fails on jruby, might be a jruby bug
56 # When enabled on ruby18 it breaks too many things, so don't enable it for that just yet
57 USE_RUBY="ruby19"
58
59 RUBY_FAKEGEM_TASK_DOC="docs"
60 RUBY_FAKEGEM_DOCDIR="doc"
61 RUBY_FAKEGEM_EXTRADOC="TODO README.txt History.txt"
62
63 # Disable default binwraps
64 RUBY_FAKEGEM_BINWRAP=""
65
66 inherit ruby-fakegem
67
68 ruby_add_bdepend doc dev-ruby/hoe
69
70 DESCRIPTION="An improved version of the Test::Unit framework from Ruby 1.8"
71 HOMEPAGE="http://test-unit.rubyforge.org/"
72 SRC_URI="mirror://rubyforge/${PN}/${P}.tgz"
73
74 LICENSE="MIT"
75 SLOT="0"
76 KEYWORDS=""
77 IUSE=""
78
79 each_ruby_test() {
80 # the rake audit using dev-ruby/zentest currently fails, and we
81 # just need to call the testsuite directly.
82 # rake audit || die "rake audit failed"
83 local rubyflags
84
85 [[ $(basename ${RUBY}) == jruby ]] && rubyflags="-X+O"
86
87 ${RUBY} ${rubyflags} test/run-test.rb || die "testsuite failed"
88 }
89
90 all_ruby_intall() {
91 all_fakegem_install
92
93 # Create a testrb2 wrapper similarly to the rdoc2 wrapper for
94 # rdoc-2* series.
95 ruby_fakegem_binwrapper testrb /usr/bint/testrb2
96 }