Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/libxml: libxml-0.9.8.ebuild ChangeLog libxml-0.9.6.ebuild libxml-0.3.8.4.ebuild libxml-0.8.3.ebuild libxml-0.3.8.ebuild libxml-0.9.5.ebuild
Date: Sun, 25 Jan 2009 15:14:18
Message-Id: E1LR6gi-0001pB-2C@stork.gentoo.org
1 flameeyes 09/01/25 15:14:16
2
3 Modified: ChangeLog
4 Added: libxml-0.9.8.ebuild
5 Removed: libxml-0.9.6.ebuild libxml-0.3.8.4.ebuild
6 libxml-0.8.3.ebuild libxml-0.3.8.ebuild
7 libxml-0.9.5.ebuild
8 Log:
9 Version bump, and remove some older versions, 0.9.7 is candidate for stable, given that dev-ruby/osmlib-base works with that.
10 (Portage version: 2.2_rc23/cvs/Linux x86_64)
11
12 Revision Changes Path
13 1.22 dev-ruby/libxml/ChangeLog
14
15 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/libxml/ChangeLog?rev=1.22&view=markup
16 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/libxml/ChangeLog?rev=1.22&content-type=text/plain
17 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/libxml/ChangeLog?r1=1.21&r2=1.22
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/libxml/ChangeLog,v
22 retrieving revision 1.21
23 retrieving revision 1.22
24 diff -u -r1.21 -r1.22
25 --- ChangeLog 13 Dec 2008 14:23:46 -0000 1.21
26 +++ ChangeLog 25 Jan 2009 15:14:15 -0000 1.22
27 @@ -1,6 +1,14 @@
28 # ChangeLog for dev-ruby/libxml
29 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/libxml/ChangeLog,v 1.21 2008/12/13 14:23:46 flameeyes Exp $
31 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
32 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/libxml/ChangeLog,v 1.22 2009/01/25 15:14:15 flameeyes Exp $
33 +
34 +*libxml-0.9.8 (25 Jan 2009)
35 +
36 + 25 Jan 2009; Diego E. Pettenò <flameeyes@g.o>
37 + -libxml-0.3.8.ebuild, -libxml-0.3.8.4.ebuild, -libxml-0.8.3.ebuild,
38 + -libxml-0.9.5.ebuild, -libxml-0.9.6.ebuild, +libxml-0.9.8.ebuild:
39 + Version bump, and remove some older versions, 0.9.7 is candidate for
40 + stable, given that dev-ruby/osmlib-base works with that.
41
42 *libxml-0.9.7 (13 Dec 2008)
43
44
45
46
47 1.1 dev-ruby/libxml/libxml-0.9.8.ebuild
48
49 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/libxml/libxml-0.9.8.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/libxml/libxml-0.9.8.ebuild?rev=1.1&content-type=text/plain
51
52 Index: libxml-0.9.8.ebuild
53 ===================================================================
54 # Copyright 1999-2009 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/libxml/libxml-0.9.8.ebuild,v 1.1 2009/01/25 15:14:15 flameeyes Exp $
57
58 inherit ruby
59
60 MY_P=${PN}-ruby-${PV}
61
62 DESCRIPTION="Ruby libxml with a user friendly API, akin to REXML, but feature complete and significantly faster."
63 HOMEPAGE="http://libxml.rubyforge.org"
64 SRC_URI="mirror://rubyforge/${PN}/${MY_P}.tgz"
65
66 LICENSE="as-is"
67 SLOT="0"
68 KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
69 IUSE="doc"
70
71 RDEPEND=">=dev-libs/libxml2-2.6.6"
72 DEPEND="${RDEPEND}
73 dev-ruby/rake"
74
75 S="${WORKDIR}/${MY_P}"
76
77 USE_RUBY="ruby18"
78
79 src_compile() {
80 rake extensions || die "rake extensions failed"
81
82 if use doc; then
83 rake rdoc || die "rake rdoc failed"
84 fi
85 }
86
87 src_test() {
88 rake test || die "rake test failed"
89 }
90
91 src_install() {
92 cd "${S}"/lib
93 doruby -r * || die "doruby failed"
94
95 cd "${S}"/ext/libxml
96 ruby_einstall || die "ruby_einstall failed"
97
98 cd "${S}"
99
100 dodoc README CHANGES || die "dodoc failed"
101
102 if use doc; then
103 dohtml -r doc/* || die "dohtml failed"
104 fi
105 }