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/simplecov: ChangeLog simplecov-0.9.1.ebuild
Date: Sun, 28 Sep 2014 06:13:43
Message-Id: 20140928061338.232F5671C@oystercatcher.gentoo.org
1 graaff 14/09/28 06:13:38
2
3 Modified: ChangeLog
4 Added: simplecov-0.9.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.10 dev-ruby/simplecov/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/simplecov/ChangeLog?rev=1.10&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/simplecov/ChangeLog?rev=1.10&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/simplecov/ChangeLog?r1=1.9&r2=1.10
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/simplecov/ChangeLog,v
20 retrieving revision 1.9
21 retrieving revision 1.10
22 diff -u -r1.9 -r1.10
23 --- ChangeLog 27 Jul 2014 07:03:53 -0000 1.9
24 +++ ChangeLog 28 Sep 2014 06:13:38 -0000 1.10
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/simplecov
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/simplecov/ChangeLog,v 1.9 2014/07/27 07:03:53 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/simplecov/ChangeLog,v 1.10 2014/09/28 06:13:38 graaff Exp $
30 +
31 +*simplecov-0.9.1 (28 Sep 2014)
32 +
33 + 28 Sep 2014; Hans de Graaff <graaff@g.o> +simplecov-0.9.1.ebuild:
34 + Version bump.
35
36 *simplecov-0.9.0 (27 Jul 2014)
37
38
39
40
41 1.1 dev-ruby/simplecov/simplecov-0.9.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/simplecov/simplecov-0.9.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/simplecov/simplecov-0.9.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: simplecov-0.9.1.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/simplecov/simplecov-0.9.1.ebuild,v 1.1 2014/09/28 06:13:38 graaff Exp $
51
52 EAPI=5
53 USE_RUBY="ruby19 ruby20 ruby21"
54
55 RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
56
57 RUBY_FAKEGEM_DOCDIR="doc"
58 RUBY_FAKEGEM_TASK_DOC=""
59
60 inherit ruby-fakegem
61
62 DESCRIPTION="Code coverage with a configuration library and automatic merging of coverage across test suites"
63 HOMEPAGE="https://www.ruby-toolbox.com/projects/simplecov https://github.com/colszowka/simplecov"
64 LICENSE="MIT"
65
66 KEYWORDS="~amd64"
67 SLOT="0.8"
68 IUSE="doc"
69
70 ruby_add_rdepend ">=dev-ruby/multi_json-1.0
71 dev-ruby/simplecov-html:0.8
72 >=dev-ruby/docile-1.1.0"
73
74 ruby_add_bdepend "test? (
75 dev-ruby/rspec
76 dev-ruby/shoulda
77 dev-ruby/test-unit:2
78 dev-util/cucumber
79 dev-util/aruba
80 dev-ruby/capybara
81 )"
82
83 all_ruby_prepare() {
84 sed -i -e '/[Bb]undler/ s:^:#:' test/helper.rb features/support/env.rb || die
85
86 # Avoid currently failing test, needs further research.
87 rm test/test_merge_helpers.rb || die
88 }
89
90 each_ruby_test() {
91 ruby-ng_testrb-2 -Ilib test/test_*.rb
92
93 # ${RUBY} -S cucumber features || die
94 }