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/method_source: ChangeLog method_source-0.8.ebuild
Date: Fri, 06 Jul 2012 06:54:26
Message-Id: 20120706065414.1573E2004B@flycatcher.gentoo.org
1 graaff 12/07/06 06:54:14
2
3 Modified: ChangeLog
4 Added: method_source-0.8.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.1.10.65/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.11 dev-ruby/method_source/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/method_source/ChangeLog?rev=1.11&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/method_source/ChangeLog?rev=1.11&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/method_source/ChangeLog?r1=1.10&r2=1.11
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/method_source/ChangeLog,v
20 retrieving revision 1.10
21 retrieving revision 1.11
22 diff -u -r1.10 -r1.11
23 --- ChangeLog 6 Jul 2012 06:52:06 -0000 1.10
24 +++ ChangeLog 6 Jul 2012 06:54:13 -0000 1.11
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/method_source
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/method_source/ChangeLog,v 1.10 2012/07/06 06:52:06 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/method_source/ChangeLog,v 1.11 2012/07/06 06:54:13 graaff Exp $
30 +
31 +*method_source-0.8 (06 Jul 2012)
32 +
33 + 06 Jul 2012; Hans de Graaff <graaff@g.o> +method_source-0.8.ebuild:
34 + Version bump.
35
36 06 Jul 2012; Hans de Graaff <graaff@g.o> -method_source-0.6.7.ebuild,
37 -method_source-0.7.0.ebuild:
38
39
40
41 1.1 dev-ruby/method_source/method_source-0.8.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/method_source/method_source-0.8.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/method_source/method_source-0.8.ebuild?rev=1.1&content-type=text/plain
45
46 Index: method_source-0.8.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/method_source/method_source-0.8.ebuild,v 1.1 2012/07/06 06:54:13 graaff Exp $
51
52 EAPI=4
53 USE_RUBY="ruby18 ruby19 ree18 jruby"
54
55 RUBY_FAKEGEM_TASK_TEST="none"
56 RUBY_FAKEGEM_TASK_DOC=""
57 RUBY_FAKEGEM_EXTRADOC="README.markdown"
58
59 RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
60
61 inherit ruby-fakegem
62
63 DESCRIPTION="Retrieve the source code for a method."
64 HOMEPAGE="http://github.com/banister/method_source"
65 IUSE=""
66 SLOT="0"
67
68 LICENSE="MIT"
69 KEYWORDS="~amd64 ~ppc64 ~x86"
70
71 ruby_add_bdepend "test? ( >=dev-ruby/bacon-1.1.0 )"
72
73 all_ruby_prepare() {
74 sed -i -e '/version/s:0\.7\.0:0.7.1:' \
75 ${RUBY_FAKEGEM_GEMSPEC} || die
76 }
77
78 each_ruby_test() {
79 ${RUBY} -I. -S bacon -k test/test.rb || die "Tests failed."
80 }