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/ruby_parser: ChangeLog ruby_parser-2.3.1.ebuild
Date: Wed, 28 Dec 2011 09:26:01
Message-Id: 20111228092550.792132004B@flycatcher.gentoo.org
1 graaff 11/12/28 09:25:50
2
3 Modified: ChangeLog ruby_parser-2.3.1.ebuild
4 Log:
5 Add ruby19. Bump sexp-processor dependency to avoid many test failures with ruby 1.9.
6
7 (Portage version: 2.1.10.41/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.35 dev-ruby/ruby_parser/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ruby_parser/ChangeLog?rev=1.35&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ruby_parser/ChangeLog?rev=1.35&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ruby_parser/ChangeLog?r1=1.34&r2=1.35
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/ruby_parser/ChangeLog,v
19 retrieving revision 1.34
20 retrieving revision 1.35
21 diff -u -r1.34 -r1.35
22 --- ChangeLog 24 Dec 2011 07:43:05 -0000 1.34
23 +++ ChangeLog 28 Dec 2011 09:25:50 -0000 1.35
24 @@ -1,6 +1,10 @@
25 # ChangeLog for dev-ruby/ruby_parser
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby_parser/ChangeLog,v 1.34 2011/12/24 07:43:05 graaff Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby_parser/ChangeLog,v 1.35 2011/12/28 09:25:50 graaff Exp $
29 +
30 + 28 Dec 2011; Hans de Graaff <graaff@g.o> ruby_parser-2.3.1.ebuild:
31 + Add ruby19. Bump sexp-processor dependency to avoid many test failures with
32 + ruby 1.9.
33
34 24 Dec 2011; Hans de Graaff <graaff@g.o> -ruby_parser-2.0.6.ebuild,
35 -ruby_parser-2.1.0.ebuild, -ruby_parser-2.2.0.ebuild:
36
37
38
39 1.3 dev-ruby/ruby_parser/ruby_parser-2.3.1.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ruby_parser/ruby_parser-2.3.1.ebuild?rev=1.3&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ruby_parser/ruby_parser-2.3.1.ebuild?rev=1.3&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ruby_parser/ruby_parser-2.3.1.ebuild?r1=1.2&r2=1.3
44
45 Index: ruby_parser-2.3.1.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/ruby_parser/ruby_parser-2.3.1.ebuild,v
48 retrieving revision 1.2
49 retrieving revision 1.3
50 diff -u -r1.2 -r1.3
51 --- ruby_parser-2.3.1.ebuild 5 Dec 2011 00:56:48 -0000 1.2
52 +++ ruby_parser-2.3.1.ebuild 28 Dec 2011 09:25:50 -0000 1.3
53 @@ -1,10 +1,10 @@
54 # Copyright 1999-2011 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby_parser/ruby_parser-2.3.1.ebuild,v 1.2 2011/12/05 00:56:48 naota Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby_parser/ruby_parser-2.3.1.ebuild,v 1.3 2011/12/28 09:25:50 graaff Exp $
58
59 EAPI=2
60
61 -USE_RUBY="ruby18 ree18 jruby"
62 +USE_RUBY="ruby18 ruby19 ree18 jruby"
63
64 RUBY_FAKEGEM_TASK_DOC="docs"
65 RUBY_FAKEGEM_DOCDIR="doc"
66 @@ -20,7 +20,8 @@
67 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
68 IUSE=""
69
70 -ruby_add_rdepend ">=dev-ruby/sexp-processor-3.0.1"
71 +# The sexp-processor dependency is needed to make tests pass for ruby 1.9.
72 +ruby_add_rdepend ">=dev-ruby/sexp-processor-3.0.9"
73 ruby_add_bdepend "doc? ( >=dev-ruby/hoe-2.9.1 )"
74 ruby_add_bdepend "test? ( virtual/ruby-test-unit >=dev-ruby/sexp-processor-3.0.6 )"
75
76 @@ -28,4 +29,6 @@
77 # Remove reference to perforce method that is not in a released
78 # version of hoe-seattlerb.
79 sed -i -e '/perforce/d' Rakefile || die
80 +
81 + sed -i -e '/Hoe.plugin :isolate/ s:^:#:' Rakefile || die
82 }