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-4.7.5.ebuild
Date: Tue, 25 Feb 2014 14:49:52
Message-Id: 20140225144945.03C682004C@flycatcher.gentoo.org
1 graaff 14/02/25 14:49:44
2
3 Modified: ChangeLog
4 Added: minitest-4.7.5.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.138 dev-ruby/minitest/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/minitest/ChangeLog?rev=1.138&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/minitest/ChangeLog?rev=1.138&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/minitest/ChangeLog?r1=1.137&r2=1.138
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/minitest/ChangeLog,v
20 retrieving revision 1.137
21 retrieving revision 1.138
22 diff -u -r1.137 -r1.138
23 --- ChangeLog 11 Feb 2014 13:15:11 -0000 1.137
24 +++ ChangeLog 25 Feb 2014 14:49:44 -0000 1.138
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/minitest
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/minitest/ChangeLog,v 1.137 2014/02/11 13:15:11 mrueg Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/minitest/ChangeLog,v 1.138 2014/02/25 14:49:44 graaff Exp $
30 +
31 +*minitest-4.7.5 (25 Feb 2014)
32 +
33 + 25 Feb 2014; Hans de Graaff <graaff@g.o> +minitest-4.7.5.ebuild:
34 + Version bump.
35
36 *minitest-5.2.3 (11 Feb 2014)
37
38
39
40
41 1.1 dev-ruby/minitest/minitest-4.7.5.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/minitest/minitest-4.7.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/minitest/minitest-4.7.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: minitest-4.7.5.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/minitest/minitest-4.7.5.ebuild,v 1.1 2014/02/25 14:49:44 graaff Exp $
51
52 EAPI=5
53 USE_RUBY="ruby18 ruby19 ruby20 ruby21 jruby"
54
55 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
56
57 RUBY_FAKEGEM_DOCDIR="doc"
58 RUBY_FAKEGEM_EXTRADOC="History.txt Manifest.txt README.txt"
59
60 inherit ruby-fakegem
61
62 DESCRIPTION="minitest/unit is a small and fast replacement for ruby's huge and slow test/unit."
63 HOMEPAGE="https://github.com/seattlerb/minitest"
64
65 LICENSE="MIT"
66 SLOT="0"
67 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"
68 IUSE="doc test"
69
70 each_ruby_prepare() {
71 case ${RUBY} in
72 *jruby)
73 # Remove failing tests. Upstream claims that these are all
74 # bugs in jruby. By removing the failing tests we can at
75 # least run the remainder. See bug 321055 for details.
76 rm -f test/minitest/test_minitest_unit.rb || die
77 # Also add minitest_mock since there are jruby-specific failures.
78 rm -f test/minitest/test_minitest_mock.rb || die
79
80 # Our jruby throws a slightly different error
81 sed -i -e 's/not :xxx/not \\"xxx\\"/' test/minitest/test_minitest_spec.rb || die
82 ;;
83 *)
84 ;;
85 esac
86 }
87
88 each_ruby_test() {
89 case ${RUBY} in
90 *jruby)
91 # JRuby 1.6.x has threading bugs that are triggered by
92 # minitests 4's new parallel test support. Should be fixed
93 # in JRuby 1.7.
94 N=1 ${RUBY} -Ilib:bin:test:. -S testrb test || die
95 ;;
96 *)
97 ${RUBY} -Ilib:bin:test:. -S testrb test || die
98 ;;
99 esac
100 }