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/pry: ChangeLog pry-0.9.7.4.ebuild
Date: Sat, 24 Dec 2011 07:47:25
Message-Id: 20111224074713.89FDD2004B@flycatcher.gentoo.org
1 graaff 11/12/24 07:47:13
2
3 Modified: ChangeLog
4 Added: pry-0.9.7.4.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.1.10.41/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.2 dev-ruby/pry/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/pry/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/pry/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/pry/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/pry/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 24 Oct 2011 18:43:59 -0000 1.1
24 +++ ChangeLog 24 Dec 2011 07:47:13 -0000 1.2
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/pry
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/pry/ChangeLog,v 1.1 2011/10/24 18:43:59 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/pry/ChangeLog,v 1.2 2011/12/24 07:47:13 graaff Exp $
30 +
31 +*pry-0.9.7.4 (24 Dec 2011)
32 +
33 + 24 Dec 2011; Hans de Graaff <graaff@g.o> +pry-0.9.7.4.ebuild:
34 + Version bump.
35
36 *pry-0.9.6.2 (24 Oct 2011)
37
38
39
40
41 1.1 dev-ruby/pry/pry-0.9.7.4.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/pry/pry-0.9.7.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/pry/pry-0.9.7.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pry-0.9.7.4.ebuild
47 ===================================================================
48 # Copyright 1999-2011 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.7.4.ebuild,v 1.1 2011/12/24 07:47:13 graaff Exp $
51
52 EAPI=4
53
54 USE_RUBY="ruby18 ree18"
55
56 RUBY_FAKEGEM_TASK_DOC=""
57 RUBY_FAKEGEM_EXTRADOC="README.markdown"
58
59 inherit ruby-fakegem
60
61 DESCRIPTION="Pry is a powerful alternative to the standard IRB shell for Ruby."
62 HOMEPAGE="https://github.com/pry/pry/wiki"
63 IUSE=""
64 SLOT="0"
65
66 LICENSE="MIT"
67 KEYWORDS="~amd64"
68
69 ruby_add_rdepend ">=dev-ruby/ruby_parser-2.0.5
70 >=dev-ruby/coderay-0.9.8
71 >=dev-ruby/slop-2.1.0
72 >=dev-ruby/method_source-0.6.7"
73
74 ruby_add_bdepend "test? ( >=dev-ruby/bacon-1.1.0 )"
75
76 all_ruby_prepare() {
77 # Make version dependencies more lenient to avoid problems with
78 # compatible upgrades.
79 sed -i -e 's/~> 2.0.5/>= 2.0.5/' \
80 -e 's/~> 0.9.8/>= 0.9.8/' \
81 -e 's/~> 2.1.0/>= 2.1.0/' \
82 -e 's/~> 0.6.7/>= 0.6.7/' \
83 pry.gemspec || die
84 }
85
86 each_ruby_test() {
87 ${RUBY} -S bacon -Itest -a -q || die
88 }