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