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/arel: arel-2.0.10-r1.ebuild ChangeLog arel-2.0.10.ebuild
Date: Mon, 04 Jul 2011 18:00:29
Message-Id: 20110704180019.D02BC2004B@flycatcher.gentoo.org
1 graaff 11/07/04 18:00:19
2
3 Modified: ChangeLog
4 Added: arel-2.0.10-r1.ebuild
5 Removed: arel-2.0.10.ebuild
6 Log:
7 Fix version number in gem specification.
8
9 (Portage version: 2.1.10.3/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.8 dev-ruby/arel/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/arel/ChangeLog?rev=1.8&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/arel/ChangeLog?rev=1.8&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/arel/ChangeLog?r1=1.7&r2=1.8
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/arel/ChangeLog,v
21 retrieving revision 1.7
22 retrieving revision 1.8
23 diff -u -r1.7 -r1.8
24 --- ChangeLog 4 Jul 2011 08:58:38 -0000 1.7
25 +++ ChangeLog 4 Jul 2011 18:00:19 -0000 1.8
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-ruby/arel
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/arel/ChangeLog,v 1.7 2011/07/04 08:58:38 graaff Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/arel/ChangeLog,v 1.8 2011/07/04 18:00:19 graaff Exp $
31 +
32 +*arel-2.0.10-r1 (04 Jul 2011)
33 +
34 + 04 Jul 2011; Hans de Graaff <graaff@g.o> -arel-2.0.10.ebuild,
35 + +arel-2.0.10-r1.ebuild:
36 + Fix version number in gem specification.
37
38 *arel-2.0.10 (04 Jul 2011)
39
40
41
42
43 1.1 dev-ruby/arel/arel-2.0.10-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/arel/arel-2.0.10-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/arel/arel-2.0.10-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: arel-2.0.10-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/arel/arel-2.0.10-r1.ebuild,v 1.1 2011/07/04 18:00:19 graaff Exp $
53
54 EAPI="2"
55 USE_RUBY="ruby18 ree18 jruby"
56
57 RUBY_FAKEGEM_TASK_DOC="docs"
58 RUBY_FAKEGEM_DOCDIR="doc"
59 RUBY_FAKEGEM_EXTRADOC="History.txt README.markdown"
60
61 # Use the ruby specifications since parsing the yaml metadata causes
62 # jruby to crash.
63 RUBY_FAKEGEM_GEMSPEC="arel.gemspec"
64
65 inherit ruby-fakegem
66
67 DESCRIPTION="Arel is a Relational Algebra for Ruby."
68 HOMEPAGE="http://github.com/rails/arel"
69 LICENSE="MIT"
70 SLOT="2.0"
71 KEYWORDS="~amd64 ~x86"
72 IUSE=""
73
74 ruby_add_bdepend "
75 doc? ( >=dev-ruby/hoe-2.6.2 )
76 test? (
77 >=dev-ruby/hoe-2.6.2
78 virtual/ruby-minitest
79 )"
80
81 all_ruby_prepare() {
82 # Fix the version number in the gemspec.
83 sed -i -e 's/2.0.9.20110222133018/2.0.10/' arel.gemspec || die
84 }