Gentoo Archives: gentoo-commits

From: "Lukasz Strzygowski (lucass)" <lucass@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/lxml: ChangeLog lxml-1.3.6.ebuild lxml-1.3.4.ebuild
Date: Sat, 15 Dec 2007 10:06:26
Message-Id: E1J3TuS-0003F4-8D@stork.gentoo.org
1 lucass 07/12/15 10:06:16
2
3 Modified: ChangeLog
4 Added: lxml-1.3.6.ebuild
5 Removed: lxml-1.3.4.ebuild
6 Log:
7 Version bump (bug #201389). Dropped old version.
8 (Portage version: 2.1.4_rc9)
9
10 Revision Changes Path
11 1.25 dev-python/lxml/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/lxml/ChangeLog?rev=1.25&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/lxml/ChangeLog?rev=1.25&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/lxml/ChangeLog?r1=1.24&r2=1.25
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/lxml/ChangeLog,v
20 retrieving revision 1.24
21 retrieving revision 1.25
22 diff -u -r1.24 -r1.25
23 --- ChangeLog 31 Aug 2007 18:47:00 -0000 1.24
24 +++ ChangeLog 15 Dec 2007 10:06:15 -0000 1.25
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/lxml
27 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/lxml/ChangeLog,v 1.24 2007/08/31 18:47:00 pythonhead Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/lxml/ChangeLog,v 1.25 2007/12/15 10:06:15 lucass Exp $
30 +
31 +*lxml-1.3.6 (15 Dec 2007)
32 +
33 + 15 Dec 2007; Lukasz Strzygowski <lucass@g.o> -lxml-1.3.4.ebuild,
34 + +lxml-1.3.6.ebuild:
35 + Version bump (bug #201389). Dropped old version.
36
37 *lxml-1.3.4 (31 Aug 2007)
38
39
40
41
42 1.1 dev-python/lxml/lxml-1.3.6.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/lxml/lxml-1.3.6.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/lxml/lxml-1.3.6.ebuild?rev=1.1&content-type=text/plain
46
47 Index: lxml-1.3.6.ebuild
48 ===================================================================
49 # Copyright 1999-2007 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/lxml/lxml-1.3.6.ebuild,v 1.1 2007/12/15 10:06:15 lucass Exp $
52
53 NEED_PYTHON=2.3
54
55 inherit distutils eutils multilib
56
57 DESCRIPTION="lxml is a Pythonic binding for the libxml2 and libxslt libraries"
58 HOMEPAGE="http://codespeak.net/lxml/"
59 SRC_URI="http://codespeak.net/lxml/${P}.tgz"
60
61 LICENSE="BSD GPL-2 as-is"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ia64 ~ppc ~x86"
64 IUSE="doc examples"
65
66 # Note: This version comes with it's own bundled svn version of pyrex
67 DEPEND=">=dev-libs/libxml2-2.6.16
68 >=dev-libs/libxslt-1.1.12
69 >=dev-python/setuptools-0.6_rc5"
70
71 src_install() {
72 distutils_src_install
73
74 if use doc; then
75 dohtml doc/html/*
76 dodoc *.txt
77 docinto doc
78 dodoc doc/*.txt
79 fi
80
81 if use examples; then
82 insinto /usr/share/doc/${PF}/examples
83 doins -r samples/*
84 fi
85 }
86
87 src_test() {
88 distutils_python_version
89 python setup.py build_ext -i || die "building extensions for test use failed"
90 einfo "Running test"
91 python test.py || die "tests failed"
92 export PYTHONPATH="${PYTHONPATH}:${S}/src"
93 einfo "Running selftest"
94 python selftest.py || die "selftest failed"
95 einfo "Running selftest2"
96 python selftest2.py || die "selftest2 failed"
97 }
98
99
100
101 --
102 gentoo-commits@g.o mailing list