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.5.2-r1.ebuild
Date: Thu, 10 Jul 2014 08:07:34
Message-Id: 20140710080730.E61F82004E@flycatcher.gentoo.org
1 graaff 14/07/10 08:07:30
2
3 Modified: ChangeLog
4 Added: fakefs-0.5.2-r1.ebuild
5 Log:
6 Add ruby21. Drop sparc keyword, bug 465948.
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.48 dev-ruby/fakefs/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/fakefs/ChangeLog?rev=1.48&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/fakefs/ChangeLog?rev=1.48&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/fakefs/ChangeLog?r1=1.47&r2=1.48
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/fakefs/ChangeLog,v
20 retrieving revision 1.47
21 retrieving revision 1.48
22 diff -u -r1.47 -r1.48
23 --- ChangeLog 24 Apr 2014 16:55:54 -0000 1.47
24 +++ ChangeLog 10 Jul 2014 08:07:30 -0000 1.48
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.47 2014/04/24 16:55:54 mrueg Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fakefs/ChangeLog,v 1.48 2014/07/10 08:07:30 graaff Exp $
30 +
31 +*fakefs-0.5.2-r1 (10 Jul 2014)
32 +
33 + 10 Jul 2014; Hans de Graaff <graaff@g.o> +fakefs-0.5.2-r1.ebuild:
34 + Add ruby21. Drop sparc keyword, bug 465948.
35
36 24 Apr 2014; Manuel RĂ¼ger <mrueg@g.o> -fakefs-0.4.3-r1.ebuild,
37 -fakefs-0.5.0.ebuild, -fakefs-0.5.1.ebuild, fakefs-0.4.2.ebuild,
38
39
40
41 1.1 dev-ruby/fakefs/fakefs-0.5.2-r1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/fakefs/fakefs-0.5.2-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/fakefs/fakefs-0.5.2-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: fakefs-0.5.2-r1.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-r1.ebuild,v 1.1 2014/07/10 08:07:30 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 ~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 }