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/pry: pry-0.9.12.6-r1.ebuild ChangeLog
Date: Fri, 25 Jul 2014 13:57:56
Message-Id: 20140725135752.5FFBD2004E@flycatcher.gentoo.org
1 mrueg 14/07/25 13:57:52
2
3 Modified: ChangeLog
4 Added: pry-0.9.12.6-r1.ebuild
5 Log:
6 Add ruby20, ruby21 targets. 3 tests failing.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key )
9
10 Revision Changes Path
11 1.14 dev-ruby/pry/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/pry/ChangeLog?rev=1.14&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/pry/ChangeLog?rev=1.14&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/pry/ChangeLog?r1=1.13&r2=1.14
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/pry/ChangeLog,v
20 retrieving revision 1.13
21 retrieving revision 1.14
22 diff -u -r1.13 -r1.14
23 --- ChangeLog 5 Apr 2014 17:55:23 -0000 1.13
24 +++ ChangeLog 25 Jul 2014 13:57:52 -0000 1.14
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/pry
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/pry/ChangeLog,v 1.13 2014/04/05 17:55:23 mrueg Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/pry/ChangeLog,v 1.14 2014/07/25 13:57:52 mrueg Exp $
30 +
31 +*pry-0.9.12.6-r1 (25 Jul 2014)
32 +
33 + 25 Jul 2014; Manuel Rüger <mrueg@g.o> +pry-0.9.12.6-r1.ebuild:
34 + Add ruby20, ruby21 targets. 3 tests failing.
35
36 05 Apr 2014; Manuel Rüger <mrueg@g.o> -pry-0.9.7.4-r1.ebuild,
37 -pry-0.9.7.4.ebuild:
38
39
40
41 1.1 dev-ruby/pry/pry-0.9.12.6-r1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/pry/pry-0.9.12.6-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/pry/pry-0.9.12.6-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pry-0.9.12.6-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/pry/pry-0.9.12.6-r1.ebuild,v 1.1 2014/07/25 13:57:52 mrueg Exp $
51
52 EAPI=5
53
54 USE_RUBY="ruby19 ruby20 ruby21"
55
56 RUBY_FAKEGEM_TASK_DOC=""
57 RUBY_FAKEGEM_EXTRADOC="README.markdown"
58 RUBY_FAKEGEM_GEMSPEC=${PN}.gemspec
59
60 inherit ruby-fakegem
61
62 DESCRIPTION="Pry is a powerful alternative to the standard IRB shell for Ruby"
63 HOMEPAGE="https://github.com/pry/pry/wiki"
64 IUSE=""
65 SLOT="ruby19"
66
67 LICENSE="MIT"
68 KEYWORDS="~amd64 ~ppc64 ~x86"
69
70 ruby_add_rdepend "
71 >=dev-ruby/coderay-1.0.5
72 >=dev-ruby/slop-3.4.1:3
73 >=dev-ruby/method_source-0.8"
74
75 ruby_add_bdepend "
76 test? (
77 >=dev-ruby/bacon-1.2
78 >=dev-ruby/open4-1.3
79 >=dev-ruby/rake-0.9
80 >=dev-ruby/mocha-0.13.1
81 )"
82
83 all_ruby_prepare() {
84 # Avoid unneeded dependency on git.
85 # Loosen coderay dependency.
86 sed -e '/git ls-files/d' \
87 -e '/coderay/s/~>/>=/' \
88 -i ${RUBY_FAKEGEM_GEMSPEC} || die
89 }
90 each_ruby_test() {
91 ${RUBY} -S bacon -Ispec -q spec/*_spec.rb spec/*/*_spec.rb || die
92 }