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: fakefs-0.5.2.ebuild ChangeLog
Date: Mon, 24 Mar 2014 06:23:02
Message-Id: 20140324062259.16C4B20054@flycatcher.gentoo.org
1 graaff 14/03/24 06:22:58
2
3 Modified: ChangeLog
4 Added: fakefs-0.5.2.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.46 dev-ruby/fakefs/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/fakefs/ChangeLog?rev=1.46&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/fakefs/ChangeLog?rev=1.46&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/fakefs/ChangeLog?r1=1.45&r2=1.46
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/fakefs/ChangeLog,v
20 retrieving revision 1.45
21 retrieving revision 1.46
22 diff -u -r1.45 -r1.46
23 --- ChangeLog 5 Mar 2014 22:39:15 -0000 1.45
24 +++ ChangeLog 24 Mar 2014 06:22:58 -0000 1.46
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.45 2014/03/05 22:39:15 mrueg Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fakefs/ChangeLog,v 1.46 2014/03/24 06:22:58 graaff Exp $
30 +
31 +*fakefs-0.5.2 (24 Mar 2014)
32 +
33 + 24 Mar 2014; Hans de Graaff <graaff@g.o> +fakefs-0.5.2.ebuild:
34 + Version bump.
35
36 *fakefs-0.5.1 (05 Mar 2014)
37
38
39
40
41 1.1 dev-ruby/fakefs/fakefs-0.5.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/fakefs/fakefs-0.5.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/fakefs/fakefs-0.5.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: fakefs-0.5.2.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.5.2.ebuild,v 1.1 2014/03/24 06:22:58 graaff Exp $
51
52 EAPI=5
53
54 USE_RUBY="ruby18 ruby19 ruby20 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 }