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