Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pychart: ChangeLog pychart-1.39.ebuild
Date: Sun, 04 Apr 2010 17:04:36
Message-Id: E1NyTFL-00053Q-J7@stork.gentoo.org
1 arfrever 10/04/04 17:04:27
2
3 Modified: ChangeLog pychart-1.39.ebuild
4 Log:
5 Set SUPPORT_PYTHON_ABIS.
6 (Portage version: HEAD/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.14 dev-python/pychart/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pychart/ChangeLog?rev=1.14&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pychart/ChangeLog?rev=1.14&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pychart/ChangeLog?r1=1.13&r2=1.14
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-python/pychart/ChangeLog,v
18 retrieving revision 1.13
19 retrieving revision 1.14
20 diff -u -r1.13 -r1.14
21 --- ChangeLog 26 Dec 2009 17:34:46 -0000 1.13
22 +++ ChangeLog 4 Apr 2010 17:04:27 -0000 1.14
23 @@ -1,6 +1,10 @@
24 # ChangeLog for dev-python/pychart
25 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pychart/ChangeLog,v 1.13 2009/12/26 17:34:46 pva Exp $
27 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pychart/ChangeLog,v 1.14 2010/04/04 17:04:27 arfrever Exp $
29 +
30 + 04 Apr 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
31 + pychart-1.39.ebuild:
32 + Set SUPPORT_PYTHON_ABIS.
33
34 26 Dec 2009; Peter Volkov <pva@g.o> pychart-1.37.ebuild,
35 pychart-1.39.ebuild:
36
37
38
39 1.7 dev-python/pychart/pychart-1.39.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pychart/pychart-1.39.ebuild?rev=1.7&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pychart/pychart-1.39.ebuild?rev=1.7&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/pychart/pychart-1.39.ebuild?r1=1.6&r2=1.7
44
45 Index: pychart-1.39.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/dev-python/pychart/pychart-1.39.ebuild,v
48 retrieving revision 1.6
49 retrieving revision 1.7
50 diff -u -r1.6 -r1.7
51 --- pychart-1.39.ebuild 26 Dec 2009 17:34:46 -0000 1.6
52 +++ pychart-1.39.ebuild 4 Apr 2010 17:04:27 -0000 1.7
53 @@ -1,6 +1,10 @@
54 -# Copyright 1999-2009 Gentoo Foundation
55 +# Copyright 1999-2010 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pychart/pychart-1.39.ebuild,v 1.6 2009/12/26 17:34:46 pva Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pychart/pychart-1.39.ebuild,v 1.7 2010/04/04 17:04:27 arfrever Exp $
59 +
60 +EAPI="3"
61 +PYTHON_DEPEND="2"
62 +SUPPORT_PYTHON_ABIS="1"
63
64 inherit distutils
65
66 @@ -17,15 +21,19 @@
67 IUSE="doc examples"
68
69 DEPEND="app-text/ghostscript-gpl"
70 +RDEPEND="${DEPEND}"
71 +RESTRICT_PYTHON_ABIS="3.*"
72
73 -S=${WORKDIR}/${MY_P}
74 +S="${WORKDIR}/${MY_P}"
75
76 src_install() {
77 distutils_src_install
78 - if use doc ; then
79 - dohtml -r ${WORKDIR}/${PN}/*
80 +
81 + if use doc; then
82 + dohtml -r "${WORKDIR}/${PN}/"* || die "dohtml failed"
83 fi
84 - if use examples ; then
85 +
86 + if use examples; then
87 insinto /usr/share/doc/${PF}/examples
88 doins demos/*
89 fi