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/mocha: ChangeLog mocha-0.9.11.ebuild
Date: Fri, 04 Feb 2011 07:37:27
Message-Id: 20110204073718.74A6420054@flycatcher.gentoo.org
1 graaff 11/02/04 07:37:18
2
3 Modified: ChangeLog
4 Added: mocha-0.9.11.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.1.9.25/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.30 dev-ruby/mocha/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/mocha/ChangeLog?rev=1.30&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/mocha/ChangeLog?rev=1.30&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/mocha/ChangeLog?r1=1.29&r2=1.30
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/mocha/ChangeLog,v
20 retrieving revision 1.29
21 retrieving revision 1.30
22 diff -u -r1.29 -r1.30
23 --- ChangeLog 28 Jan 2011 10:14:54 -0000 1.29
24 +++ ChangeLog 4 Feb 2011 07:37:18 -0000 1.30
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/mocha
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mocha/ChangeLog,v 1.29 2011/01/28 10:14:54 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mocha/ChangeLog,v 1.30 2011/02/04 07:37:18 graaff Exp $
30 +
31 +*mocha-0.9.11 (04 Feb 2011)
32 +
33 + 04 Feb 2011; Hans de Graaff <graaff@g.o> +mocha-0.9.11.ebuild:
34 + Version bump.
35
36 *mocha-0.9.10-r1 (28 Jan 2011)
37
38
39
40
41 1.1 dev-ruby/mocha/mocha-0.9.11.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/mocha/mocha-0.9.11.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/mocha/mocha-0.9.11.ebuild?rev=1.1&content-type=text/plain
45
46 Index: mocha-0.9.11.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/mocha/mocha-0.9.11.ebuild,v 1.1 2011/02/04 07:37:18 graaff Exp $
51
52 EAPI=2
53 USE_RUBY="ruby18 ree18 ruby19 jruby"
54
55 RUBY_FAKEGEM_TASK_TEST="test:units"
56
57 RUBY_FAKEGEM_DOCDIR="doc"
58 RUBY_FAKEGEM_EXTRADOC="README.rdoc RELEASE.rdoc"
59
60 inherit ruby-fakegem
61
62 DESCRIPTION="A Ruby library for mocking and stubbing using a syntax like that of JMock, and SchMock"
63 HOMEPAGE="http://mocha.rubyforge.org/"
64
65 LICENSE="MIT"
66 SLOT="0"
67 KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
68 IUSE=""
69
70 ruby_add_bdepend "
71 test? ( virtual/ruby-test-unit )
72 doc? ( dev-ruby/coderay )"
73
74 all_ruby_compile() {
75 all_fakegem_compile
76
77 if use doc; then
78 rake examples || die
79 fi
80 }
81
82 all_ruby_install() {
83 all_fakegem_install
84
85 docinto examples
86 dodoc examples/*.rb || die
87 }