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