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: minitest-2.2.1.ebuild ChangeLog
Date: Wed, 01 Jun 2011 06:15:27
Message-Id: 20110601061514.4A67820054@flycatcher.gentoo.org
1 graaff 11/06/01 06:15:14
2
3 Modified: ChangeLog
4 Added: minitest-2.2.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.1.9.42/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.42 dev-ruby/minitest/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/minitest/ChangeLog?rev=1.42&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/minitest/ChangeLog?rev=1.42&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/minitest/ChangeLog?r1=1.41&r2=1.42
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/minitest/ChangeLog,v
20 retrieving revision 1.41
21 retrieving revision 1.42
22 diff -u -r1.41 -r1.42
23 --- ChangeLog 23 Apr 2011 17:30:24 -0000 1.41
24 +++ ChangeLog 1 Jun 2011 06:15:14 -0000 1.42
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.41 2011/04/23 17:30:24 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/minitest/ChangeLog,v 1.42 2011/06/01 06:15:14 graaff Exp $
30 +
31 +*minitest-2.2.1 (01 Jun 2011)
32 +
33 + 01 Jun 2011; Hans de Graaff <graaff@g.o> +minitest-2.2.1.ebuild:
34 + Version bump.
35
36 23 Apr 2011; Raúl Porcel <armin76@g.o> minitest-2.0.2.ebuild:
37 alpha stable
38
39
40
41 1.1 dev-ruby/minitest/minitest-2.2.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/minitest/minitest-2.2.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/minitest/minitest-2.2.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: minitest-2.2.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.2.1.ebuild,v 1.1 2011/06/01 06:15:14 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 ~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_test() {
80 case ${RUBY} in
81 *jruby)
82 eqawarn "Skipping tests on JRuby, bug 321055."
83 ;;
84 *)
85 each_fakegem_test
86 ;;
87 esac
88 }