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/minitest: ChangeLog minitest-2.0.2.ebuild
Date: Tue, 28 Dec 2010 09:20:03
Message-Id: 20101228091953.E978220054@flycatcher.gentoo.org
1 graaff 10/12/28 09:19:53
2
3 Modified: ChangeLog
4 Added: minitest-2.0.2.ebuild
5 Log:
6 Version bump: better backwards compatibility, refactored runner, benchmark support, and more.
7
8 (Portage version: 2.1.9.25/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.29 dev-ruby/minitest/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/minitest/ChangeLog?rev=1.29&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/minitest/ChangeLog?rev=1.29&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/minitest/ChangeLog?r1=1.28&r2=1.29
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/minitest/ChangeLog,v
20 retrieving revision 1.28
21 retrieving revision 1.29
22 diff -u -r1.28 -r1.29
23 --- ChangeLog 28 Dec 2010 09:15:56 -0000 1.28
24 +++ ChangeLog 28 Dec 2010 09:19:53 -0000 1.29
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-ruby/minitest
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/minitest/ChangeLog,v 1.28 2010/12/28 09:15:56 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/minitest/ChangeLog,v 1.29 2010/12/28 09:19:53 graaff Exp $
30 +
31 +*minitest-2.0.2 (28 Dec 2010)
32 +
33 + 28 Dec 2010; Hans de Graaff <graaff@g.o> +minitest-2.0.2.ebuild:
34 + Version bump: better backwards compatibility, refactored runner, benchmark
35 + support, and more.
36
37 27 Dec 2010; Fabian Groffen <grobian@g.o> minitest-1.7.2.ebuild:
38 Marked ~x64-solaris
39
40
41
42 1.1 dev-ruby/minitest/minitest-2.0.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/minitest/minitest-2.0.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/minitest/minitest-2.0.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: minitest-2.0.2.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/minitest/minitest-2.0.2.ebuild,v 1.1 2010/12/28 09:19:53 graaff Exp $
52
53 EAPI=2
54 # jruby → tests fail, reported upstream
55 # http://rubyforge.org/tracker/index.php?func=detail&aid=27657&group_id=1040&atid=4097
56 USE_RUBY="ruby18 ruby19 ree18 jruby"
57
58 RUBY_FAKEGEM_TASK_DOC="docs"
59
60 RUBY_FAKEGEM_DOCDIR="doc"
61 RUBY_FAKEGEM_EXTRADOC="History.txt Manifest.txt README.txt"
62
63 inherit ruby-fakegem
64
65 DESCRIPTION="minitest/unit is a small and fast replacement for ruby's huge and slow test/unit."
66 HOMEPAGE="http://rubyforge.org/projects/bfts"
67
68 LICENSE="MIT"
69 SLOT="0"
70 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
71 IUSE=""
72
73 ruby_add_bdepend "
74 doc? ( dev-ruby/hoe )
75 test? (
76 virtual/ruby-test-unit
77 dev-ruby/hoe
78 )"
79
80 each_ruby_test() {
81 case ${RUBY} in
82 *jruby)
83 eqawarn "Skipping tests on JRuby, bug 321055."
84 ;;
85 *)
86 each_fakegem_test
87 ;;
88 esac
89 }