Gentoo Archives: gentoo-commits

From: "Manuel Rueger (mrueg)" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/minitest: minitest-5.4.2.ebuild ChangeLog
Date: Sat, 04 Oct 2014 15:33:55
Message-Id: 20141004153351.813276F47@oystercatcher.gentoo.org
1 mrueg 14/10/04 15:33:51
2
3 Modified: ChangeLog
4 Added: minitest-5.4.2.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key )
9
10 Revision Changes Path
11 1.165 dev-ruby/minitest/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/minitest/ChangeLog?rev=1.165&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/minitest/ChangeLog?rev=1.165&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/minitest/ChangeLog?r1=1.164&r2=1.165
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/minitest/ChangeLog,v
20 retrieving revision 1.164
21 retrieving revision 1.165
22 diff -u -r1.164 -r1.165
23 --- ChangeLog 30 Aug 2014 10:19:57 -0000 1.164
24 +++ ChangeLog 4 Oct 2014 15:33:51 -0000 1.165
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.164 2014/08/30 10:19:57 mrueg Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/minitest/ChangeLog,v 1.165 2014/10/04 15:33:51 mrueg Exp $
30 +
31 +*minitest-5.4.2 (04 Oct 2014)
32 +
33 + 04 Oct 2014; Manuel RĂ¼ger <mrueg@g.o> +minitest-5.4.2.ebuild:
34 + Version bump.
35
36 *minitest-5.4.1 (30 Aug 2014)
37
38
39
40
41 1.1 dev-ruby/minitest/minitest-5.4.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/minitest/minitest-5.4.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/minitest/minitest-5.4.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: minitest-5.4.2.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-5.4.2.ebuild,v 1.1 2014/10/04 15:33:51 mrueg Exp $
51
52 EAPI=5
53 USE_RUBY="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="5"
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 # Make sure __jtrap is available in all threads. This should
74 # be fixed in jruby 1.7.x
75 sed -i -e '8i trap :INFO do ; end' lib/minitest/parallel.rb || die
76
77 # Avoid failures. Most of these look like low-level jruby
78 # differences and it looks like these were not run properly
79 # in previous versions.
80 for t in test_return_mock_does_not_raise test_mock_args_does_not_raise test_stub_block test_stub_value ; do
81 local command="/${t}/,/^ end/ s:^:#:"
82 sed -i -e "${command}" test/minitest/test_minitest_mock.rb || die
83 done
84 for t in test_run_failing test_run_skip test_run_error test_run_skip_verbose test_run_error_teardown test_runnable_methods_random test_assert_throws_different test_to_s_error_in_test_and_teardown test_run_filtered_including_suite_name_string test_run_filtered_string_method_only test_run_filtered_including_suite_name ; do
85 command="/${t}/,/^ end/ s:^:#:"
86 sed -i -e "${command}" test/minitest/test_minitest_unit.rb || die
87 done
88 for t in test_name2 "needs to verify throw" ; do
89 command="/${t}/,/^ end/ s:^:#:"
90 sed -i -e "${command}" test/minitest/test_minitest_spec.rb || die
91 done
92 sed -i -e '/test_report_error/,/^ end/ s:^:#:' test/minitest/test_minitest_reporter.rb || die
93 ;;
94 *rbx)
95 # Avoid a single failing test for rbx while we are testing
96 # and bootstrapping it.
97 sed -i -e '/test_mock_args_does_not_raise/,/^ end/ s:^:#:' test/minitest/test_minitest_mock.rb || die
98 ;;
99 esac
100 }
101
102 each_ruby_test() {
103 ${RUBY} -Ilib:test:. -e "Dir['**/test_*.rb'].each{|f| require f}" || die "Tests failed"
104 }