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.6.1.ebuild
Date: Thu, 29 Sep 2011 06:10:59
Message-Id: 20110929061049.A272D20036@flycatcher.gentoo.org
1 graaff 11/09/29 06:10:49
2
3 Modified: ChangeLog
4 Added: minitest-2.6.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.1.10.11/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.54 dev-ruby/minitest/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/minitest/ChangeLog?rev=1.54&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/minitest/ChangeLog?rev=1.54&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/minitest/ChangeLog?r1=1.53&r2=1.54
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/minitest/ChangeLog,v
20 retrieving revision 1.53
21 retrieving revision 1.54
22 diff -u -r1.53 -r1.54
23 --- ChangeLog 15 Sep 2011 06:02:39 -0000 1.53
24 +++ ChangeLog 29 Sep 2011 06:10:49 -0000 1.54
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/minitest
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/minitest/ChangeLog,v 1.53 2011/09/15 06:02:39 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/minitest/ChangeLog,v 1.54 2011/09/29 06:10:49 graaff Exp $
30 +
31 +*minitest-2.6.1 (29 Sep 2011)
32 +
33 + 29 Sep 2011; Hans de Graaff <graaff@g.o> +minitest-2.6.1.ebuild:
34 + Version bump.
35
36 *minitest-2.6.0 (15 Sep 2011)
37
38
39
40
41 1.1 dev-ruby/minitest/minitest-2.6.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/minitest/minitest-2.6.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/minitest/minitest-2.6.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: minitest-2.6.1.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/minitest/minitest-2.6.1.ebuild,v 1.1 2011/09/29 06:10:49 graaff Exp $
51
52 EAPI=2
53 # jruby → tests fail, reported upstream
54 # http://rubyforge.org/tracker/index.php?func=detail&aid=27657&group_id=1040&atid=4097
55 USE_RUBY="ruby18 ruby19 ree18 jruby"
56
57 RUBY_FAKEGEM_TASK_DOC="docs"
58
59 RUBY_FAKEGEM_DOCDIR="doc"
60 RUBY_FAKEGEM_EXTRADOC="History.txt Manifest.txt README.txt"
61
62 inherit ruby-fakegem
63
64 DESCRIPTION="minitest/unit is a small and fast replacement for ruby's huge and slow test/unit."
65 HOMEPAGE="http://rubyforge.org/projects/bfts"
66
67 LICENSE="MIT"
68 SLOT="0"
69 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
70 IUSE=""
71
72 ruby_add_bdepend "
73 doc? ( dev-ruby/hoe )
74 test? (
75 virtual/ruby-test-unit
76 dev-ruby/hoe
77 )"
78
79 each_ruby_prepare() {
80 case ${RUBY} in
81 *jruby)
82 # Remove failing tests. Upstream claims that these are all
83 # bugs in jruby. By removing the failing tests we can at
84 # least run the remainder. See bug 321055 for details.
85 rm -f test/test_minitest_unit.rb || die
86 ;;
87 *)
88 ;;
89 esac
90 }