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/libxml: libxml-2.0.4.ebuild ChangeLog
Date: Tue, 03 May 2011 05:33:27
Message-Id: 20110503053311.8E93F20054@flycatcher.gentoo.org
1 graaff 11/05/03 05:33:11
2
3 Modified: ChangeLog
4 Added: libxml-2.0.4.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.1.9.42/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.35 dev-ruby/libxml/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/libxml/ChangeLog?rev=1.35&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/libxml/ChangeLog?rev=1.35&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/libxml/ChangeLog?r1=1.34&r2=1.35
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/libxml/ChangeLog,v
20 retrieving revision 1.34
21 retrieving revision 1.35
22 diff -u -r1.34 -r1.35
23 --- ChangeLog 21 Apr 2011 05:35:50 -0000 1.34
24 +++ ChangeLog 3 May 2011 05:33:11 -0000 1.35
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/libxml
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/libxml/ChangeLog,v 1.34 2011/04/21 05:35:50 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/libxml/ChangeLog,v 1.35 2011/05/03 05:33:11 graaff Exp $
30 +
31 +*libxml-2.0.4 (03 May 2011)
32 +
33 + 03 May 2011; Hans de Graaff <graaff@g.o> +libxml-2.0.4.ebuild:
34 + Version bump.
35
36 *libxml-2.0.2 (21 Apr 2011)
37
38
39
40
41 1.1 dev-ruby/libxml/libxml-2.0.4.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/libxml/libxml-2.0.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/libxml/libxml-2.0.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libxml-2.0.4.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/libxml/libxml-2.0.4.ebuild,v 1.1 2011/05/03 05:33:11 graaff Exp $
51
52 EAPI=2
53
54 USE_RUBY="ruby18 ree18 ruby19"
55
56 RUBY_FAKEGEM_NAME="libxml-ruby"
57
58 RUBY_FAKEGEM_DOCDIR="doc"
59 RUBY_FAKEGEM_EXTRADOC="README.rdoc HISTORY"
60
61 inherit ruby-fakegem
62
63 DESCRIPTION="Ruby libxml with a user friendly API, akin to REXML, but feature complete and significantly faster."
64 HOMEPAGE="http://libxml.rubyforge.org"
65
66 LICENSE="as-is"
67 SLOT="0"
68 KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
69 IUSE=""
70
71 RDEPEND="${RDEPEND} dev-libs/libxml2"
72 DEPEND="${DEPEND} dev-libs/libxml2"
73
74 all_ruby_prepare() {
75 # Remove grancher tasks only needed for publishing the website
76 sed -i -e '/grancher/d' -e '/Grancher/,$d' Rakefile || die
77
78 # We don't have the hanna template available.
79 sed -i -e 's/hanna/rake/' Rakefile || die
80 }
81
82 each_ruby_configure() {
83 ${RUBY} -C ext/libxml extconf.rb || die
84 }
85
86 each_ruby_compile() {
87 emake -C ext/libxml
88 cp ext/libxml/libxml_ruby.so lib/ || die
89 }