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/fakefs: ChangeLog fakefs-0.6.0.ebuild
Date: Fri, 03 Oct 2014 05:49:24
Message-Id: 20141003054919.49AB26D2A@oystercatcher.gentoo.org
1 graaff 14/10/03 05:49:19
2
3 Modified: ChangeLog
4 Added: fakefs-0.6.0.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.52 dev-ruby/fakefs/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/fakefs/ChangeLog?rev=1.52&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/fakefs/ChangeLog?rev=1.52&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/fakefs/ChangeLog?r1=1.51&r2=1.52
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/fakefs/ChangeLog,v
20 retrieving revision 1.51
21 retrieving revision 1.52
22 diff -u -r1.51 -r1.52
23 --- ChangeLog 26 Aug 2014 05:07:11 -0000 1.51
24 +++ ChangeLog 3 Oct 2014 05:49:19 -0000 1.52
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/fakefs
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fakefs/ChangeLog,v 1.51 2014/08/26 05:07:11 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fakefs/ChangeLog,v 1.52 2014/10/03 05:49:19 graaff Exp $
30 +
31 +*fakefs-0.6.0 (03 Oct 2014)
32 +
33 + 03 Oct 2014; Hans de Graaff <graaff@g.o> +fakefs-0.6.0.ebuild:
34 + Version bump.
35
36 *fakefs-0.5.3 (26 Aug 2014)
37
38
39
40
41 1.1 dev-ruby/fakefs/fakefs-0.6.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/fakefs/fakefs-0.6.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/fakefs/fakefs-0.6.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: fakefs-0.6.0.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/fakefs/fakefs-0.6.0.ebuild,v 1.1 2014/10/03 05:49:19 graaff Exp $
51
52 EAPI=5
53
54 USE_RUBY="ruby19 ruby20 ruby21 jruby"
55
56 RUBY_FAKEGEM_RECIPE_TEST="none"
57
58 # requires sdoc
59 RUBY_FAKEGEM_TASK_DOC=""
60
61 RUBY_FAKEGEM_EXTRADOC="CONTRIBUTORS README.markdown"
62
63 inherit ruby-fakegem eutils
64
65 DESCRIPTION="A fake filesystem. Use it in your tests"
66 HOMEPAGE="http://github.com/defunkt/fakefs"
67
68 LICENSE="MIT"
69 SLOT="0"
70 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
71 IUSE=""
72
73 ruby_add_bdepend "
74 test? (
75 dev-ruby/rspec:2
76 >=dev-ruby/test-unit-2.5.1-r1
77 )"
78
79 all_ruby_prepare() {
80 # Remove bundler
81 rm Gemfile || die
82 }
83
84 each_ruby_prepare() {
85 case ${RUBY} in
86 *jruby)
87 # Ignore failing tests: upstream is aware and doing the same
88 # on Travis.
89 rm test/fakefs_test.rb test/file/stat_test.rb || die
90 ;;
91 *)
92 ;;
93 esac
94 }
95
96 each_ruby_test() {
97 ruby-ng_rspec
98 ruby-ng_testrb-2 -Ilib:test test/**/*_test.rb
99 }