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/ox: ox-2.0.9-r1.ebuild ChangeLog
Date: Sat, 05 Oct 2013 11:21:44
Message-Id: 20131005112140.74EFC2004C@flycatcher.gentoo.org
1 mrueg 13/10/05 11:21:40
2
3 Modified: ChangeLog
4 Added: ox-2.0.9-r1.ebuild
5 Log:
6 Add ruby20 target.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key )
9
10 Revision Changes Path
11 1.3 dev-ruby/ox/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ox/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ox/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ox/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/ox/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 2 Sep 2013 22:46:12 -0000 1.2
24 +++ ChangeLog 5 Oct 2013 11:21:40 -0000 1.3
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/ox
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ox/ChangeLog,v 1.2 2013/09/02 22:46:12 mrueg Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ox/ChangeLog,v 1.3 2013/10/05 11:21:40 mrueg Exp $
30 +
31 +*ox-2.0.9-r1 (05 Oct 2013)
32 +
33 + 05 Oct 2013; Manuel RĂ¼ger <mrueg@g.o> +ox-2.0.9-r1.ebuild:
34 + Add ruby20 target.
35
36 *ox-2.0.9 (02 Sep 2013)
37
38
39
40
41 1.1 dev-ruby/ox/ox-2.0.9-r1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ox/ox-2.0.9-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ox/ox-2.0.9-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ox-2.0.9-r1.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/ox/ox-2.0.9-r1.ebuild,v 1.1 2013/10/05 11:21:40 mrueg Exp $
51
52 EAPI=5
53 USE_RUBY="ruby18 ruby19 ruby20"
54
55 RUBY_FAKEGEM_EXTRADOC="README.md"
56 RUBY_FAKEGEM_TASK_DOC=""
57
58 inherit ruby-fakegem
59
60 DESCRIPTION="A fast XML parser and Object marshaller"
61 HOMEPAGE="http://www.ohler.com/ox/ https://github.com/ohler55/ox"
62 SRC_URI="https://github.com/ohler55/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
63 LICENSE="BSD"
64
65 KEYWORDS="~amd64"
66 SLOT="0"
67 IUSE=""
68
69 each_ruby_configure() {
70 ${RUBY} -Cext/ox extconf.rb || die
71 }
72
73 each_ruby_compile() {
74 emake V=1 -Cext/ox
75 cp ext/ox/ox$(get_modname) lib/ || die
76 }
77
78 each_ruby_test() {
79 ${RUBY} test/tests.rb || die
80 }