Gentoo Archives: gentoo-commits

From: "Manuel Rueger (mrueg)" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/ruby_parser: ruby_parser-3.6.2.ebuild ChangeLog ruby_parser-3.4.1.ebuild ruby_parser-3.6.0.ebuild
Date: Fri, 01 Aug 2014 17:37:53
Message-Id: 20140801173746.F0F0D2004E@flycatcher.gentoo.org
1 mrueg 14/08/01 17:37:45
2
3 Modified: ChangeLog
4 Added: ruby_parser-3.6.2.ebuild
5 Removed: ruby_parser-3.4.1.ebuild ruby_parser-3.6.0.ebuild
6 Log:
7 Version bump. Cleanup old.
8
9 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key )
10
11 Revision Changes Path
12 1.63 dev-ruby/ruby_parser/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ruby_parser/ChangeLog?rev=1.63&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ruby_parser/ChangeLog?rev=1.63&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ruby_parser/ChangeLog?r1=1.62&r2=1.63
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/ruby_parser/ChangeLog,v
21 retrieving revision 1.62
22 retrieving revision 1.63
23 diff -u -r1.62 -r1.63
24 --- ChangeLog 18 May 2014 19:56:51 -0000 1.62
25 +++ ChangeLog 1 Aug 2014 17:37:45 -0000 1.63
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-ruby/ruby_parser
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby_parser/ChangeLog,v 1.62 2014/05/18 19:56:51 graaff Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby_parser/ChangeLog,v 1.63 2014/08/01 17:37:45 mrueg Exp $
31 +
32 +*ruby_parser-3.6.2 (01 Aug 2014)
33 +
34 + 01 Aug 2014; Manuel RĂ¼ger <mrueg@g.o> +ruby_parser-3.6.2.ebuild,
35 + -ruby_parser-3.4.1.ebuild, -ruby_parser-3.6.0.ebuild:
36 + Version bump. Cleanup old.
37
38 18 May 2014; Hans de Graaff <graaff@g.o> ruby_parser-3.6.1.ebuild:
39 Add ruby21.
40
41
42
43 1.1 dev-ruby/ruby_parser/ruby_parser-3.6.2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ruby_parser/ruby_parser-3.6.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ruby_parser/ruby_parser-3.6.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: ruby_parser-3.6.2.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby_parser/ruby_parser-3.6.2.ebuild,v 1.1 2014/08/01 17:37:45 mrueg Exp $
53
54 EAPI=5
55
56 USE_RUBY="ruby19 ruby20 ruby21 jruby"
57
58 RUBY_FAKEGEM_TASK_DOC="docs"
59 RUBY_FAKEGEM_DOCDIR="doc"
60 RUBY_FAKEGEM_EXTRADOC="README.txt History.txt"
61
62 inherit ruby-fakegem
63
64 DESCRIPTION="A ruby parser written in pure ruby."
65 HOMEPAGE="https://github.com/seattlerb/ruby_parser"
66
67 LICENSE="MIT"
68 SLOT="3"
69 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
70 IUSE=""
71
72 ruby_add_rdepend ">=dev-ruby/sexp_processor-4.1:4
73 !<dev-ruby/ruby_parser-2.3.1-r1"
74
75 ruby_add_bdepend "doc? ( >=dev-ruby/hoe-2.9.1 )"
76 ruby_add_bdepend "test? ( >=dev-ruby/minitest-4.3 )"
77
78 all_ruby_prepare() {
79 # Remove reference to perforce method that is not in a released
80 # version of hoe-seattlerb.
81 #sed -i -e '/perforce/d' Rakefile || die
82 sed -i -e '/license/d' Rakefile || die
83 sed -i -e '/Hoe.plugin :isolate/ s:^:#:' Rakefile || die
84 }
85
86 each_ruby_prepare() {
87 case ${RUBY} in
88 *jruby)
89 # Disable tests failing on jruby related to //n regexp
90 # https://github.com/seattlerb/ruby_parser/issues/117
91 rm test/test_ruby_parser.rb || die
92 ;;
93 esac
94 }