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/multi_json: multi_json-0.0.4.ebuild ChangeLog
Date: Sat, 02 Oct 2010 12:22:23
Message-Id: 20101002122212.394A620051@flycatcher.gentoo.org
1 graaff 10/10/02 12:22:11
2
3 Modified: multi_json-0.0.4.ebuild ChangeLog
4 Log:
5 Remove bundler code because it requires all optional dependencies to be installed. Fix RSpec dependency.
6 (Portage version: 2.1.8.3/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.2 dev-ruby/multi_json/multi_json-0.0.4.ebuild
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/multi_json/multi_json-0.0.4.ebuild?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/multi_json/multi_json-0.0.4.ebuild?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/multi_json/multi_json-0.0.4.ebuild?r1=1.1&r2=1.2
14
15 Index: multi_json-0.0.4.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/multi_json/multi_json-0.0.4.ebuild,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- multi_json-0.0.4.ebuild 19 Jun 2010 17:33:02 -0000 1.1
22 +++ multi_json-0.0.4.ebuild 2 Oct 2010 12:22:11 -0000 1.2
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2010 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/multi_json/multi_json-0.0.4.ebuild,v 1.1 2010/06/19 17:33:02 flameeyes Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/multi_json/multi_json-0.0.4.ebuild,v 1.2 2010/10/02 12:22:11 graaff Exp $
28
29 EAPI=2
30
31 @@ -27,6 +27,10 @@
32 # I've switched one of the tests from requiring yajl to requiring
33 # json-pure since it's the only implementation that is available for
34 # all the Ruby interpreters we support.
35 -ruby_add_bdepend "test? ( dev-ruby/rspec dev-ruby/json )"
36 +ruby_add_bdepend "test? ( dev-ruby/rspec:0 dev-ruby/json )"
37
38 RUBY_PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
39 +
40 +all_ruby_prepare() {
41 + sed -i -e '/[Bb]undler/d' spec/spec_helper.rb || die "Unable to remove bundler."
42 +}
43
44
45
46 1.4 dev-ruby/multi_json/ChangeLog
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/multi_json/ChangeLog?rev=1.4&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/multi_json/ChangeLog?rev=1.4&content-type=text/plain
50 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/multi_json/ChangeLog?r1=1.3&r2=1.4
51
52 Index: ChangeLog
53 ===================================================================
54 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/multi_json/ChangeLog,v
55 retrieving revision 1.3
56 retrieving revision 1.4
57 diff -u -r1.3 -r1.4
58 --- ChangeLog 19 Jun 2010 17:33:02 -0000 1.3
59 +++ ChangeLog 2 Oct 2010 12:22:11 -0000 1.4
60 @@ -1,6 +1,10 @@
61 # ChangeLog for dev-ruby/multi_json
62 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
63 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/multi_json/ChangeLog,v 1.3 2010/06/19 17:33:02 flameeyes Exp $
64 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/multi_json/ChangeLog,v 1.4 2010/10/02 12:22:11 graaff Exp $
65 +
66 + 02 Oct 2010; Hans de Graaff <graaff@g.o> multi_json-0.0.4.ebuild:
67 + Remove bundler code because it requires all optional dependencies to be
68 + installed. Fix RSpec dependency.
69
70 *multi_json-0.0.4 (19 Jun 2010)