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/ox: ChangeLog ox-2.2.1.ebuild
Date: Fri, 31 Jul 2015 05:20:26
Message-Id: 20150731052019.B3962113@oystercatcher.gentoo.org
1 graaff 15/07/31 05:20:19
2
3 Modified: ChangeLog
4 Added: ox-2.2.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.19 dev-ruby/ox/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ox/ChangeLog?rev=1.19&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ox/ChangeLog?rev=1.19&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ox/ChangeLog?r1=1.18&r2=1.19
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/ox/ChangeLog,v
20 retrieving revision 1.18
21 retrieving revision 1.19
22 diff -u -r1.18 -r1.19
23 --- ChangeLog 11 Jul 2015 20:20:38 -0000 1.18
24 +++ ChangeLog 31 Jul 2015 05:20:19 -0000 1.19
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/ox
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ox/ChangeLog,v 1.18 2015/07/11 20:20:38 zlogene Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ox/ChangeLog,v 1.19 2015/07/31 05:20:19 graaff Exp $
30 +
31 +*ox-2.2.1 (31 Jul 2015)
32 +
33 + 31 Jul 2015; Hans de Graaff <graaff@g.o> +ox-2.2.1.ebuild:
34 + Version bump.
35
36 11 Jul 2015; Mikle Kolyada <zlogene@g.o> ox-2.2.0-r1.ebuild:
37 Add ~x86 keyword wrt bug #554410
38
39
40
41 1.1 dev-ruby/ox/ox-2.2.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ox/ox-2.2.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ox/ox-2.2.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ox-2.2.1.ebuild
47 ===================================================================
48 # Copyright 1999-2015 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.2.1.ebuild,v 1.1 2015/07/31 05:20:19 graaff Exp $
51
52 EAPI=5
53 USE_RUBY="ruby19 ruby20 ruby21 ruby22"
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 ~x86"
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/ox/ || die
76 }
77
78 each_ruby_test() {
79 ${RUBY} test/tests.rb || die
80 }