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-5.0.0.ebuild ChangeLog
Date: Tue, 24 Dec 2013 16:03:58
Message-Id: 20131224160353.34F262004C@flycatcher.gentoo.org
1 graaff 13/12/24 16:03:53
2
3 Modified: ChangeLog
4 Added: arel-5.0.0.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.37 dev-ruby/arel/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/arel/ChangeLog?rev=1.37&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/arel/ChangeLog?rev=1.37&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/arel/ChangeLog?r1=1.36&r2=1.37
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/arel/ChangeLog,v
20 retrieving revision 1.36
21 retrieving revision 1.37
22 diff -u -r1.36 -r1.37
23 --- ChangeLog 24 Dec 2013 15:59:29 -0000 1.36
24 +++ ChangeLog 24 Dec 2013 16:03:53 -0000 1.37
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/arel
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/arel/ChangeLog,v 1.36 2013/12/24 15:59:29 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/arel/ChangeLog,v 1.37 2013/12/24 16:03:53 graaff Exp $
30 +
31 +*arel-5.0.0 (24 Dec 2013)
32 +
33 + 24 Dec 2013; Hans de Graaff <graaff@g.o> +arel-5.0.0.ebuild:
34 + Version bump.
35
36 24 Dec 2013; Hans de Graaff <graaff@g.o> -arel-4.0.0.ebuild:
37 Cleanup.
38
39
40
41 1.1 dev-ruby/arel/arel-5.0.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/arel/arel-5.0.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/arel/arel-5.0.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: arel-5.0.0.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/arel/arel-5.0.0.ebuild,v 1.1 2013/12/24 16:03:52 graaff Exp $
51
52 EAPI=5
53 USE_RUBY="ruby19 ruby20"
54
55 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
56 RUBY_FAKEGEM_DOCDIR="doc"
57 RUBY_FAKEGEM_EXTRADOC="History.txt README.markdown"
58
59 # Generating the gemspec from metadata causes a crash in jruby
60 RUBY_FAKEGEM_GEMSPEC="arel.gemspec"
61
62 inherit ruby-fakegem versionator
63
64 DESCRIPTION="Arel is a Relational Algebra for Ruby."
65 HOMEPAGE="http://github.com/rails/arel"
66 LICENSE="MIT"
67 SLOT="$(get_version_component_range 1-2)"
68 KEYWORDS="~amd64 ~arm ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
69 IUSE=""
70
71 ruby_add_bdepend "
72 test? (
73 dev-ruby/test-unit:2
74 virtual/ruby-minitest
75 )"
76
77 all_ruby_prepare() {
78 # Put the proper version number in the gemspec.
79 sed -i -e "s/ s.version = \".*\"/ s.version = \"${PV}\"/" arel.gemspec || die
80 }
81
82 each_ruby_test() {
83 ruby-ng_testrb-2 -Ilib test/test_*.rb
84 }