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/etsdevtools: ChangeLog etsdevtools-3.1.1.ebuild
Date: Sun, 30 Jan 2011 15:08:25
Message-Id: 20110130150814.3D30720054@flycatcher.gentoo.org
1 arfrever 11/01/30 15:08:14
2
3 Modified: ChangeLog
4 Added: etsdevtools-3.1.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha19_p24/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.13 dev-python/etsdevtools/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/etsdevtools/ChangeLog?rev=1.13&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/etsdevtools/ChangeLog?rev=1.13&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/etsdevtools/ChangeLog?r1=1.12&r2=1.13
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/etsdevtools/ChangeLog,v
20 retrieving revision 1.12
21 retrieving revision 1.13
22 diff -u -r1.12 -r1.13
23 --- ChangeLog 27 Jan 2011 10:00:52 -0000 1.12
24 +++ ChangeLog 30 Jan 2011 15:08:13 -0000 1.13
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/etsdevtools
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/etsdevtools/ChangeLog,v 1.12 2011/01/27 10:00:52 hwoarang Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/etsdevtools/ChangeLog,v 1.13 2011/01/30 15:08:13 arfrever Exp $
30 +
31 +*etsdevtools-3.1.1 (30 Jan 2011)
32 +
33 + 30 Jan 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
34 + +etsdevtools-3.1.1.ebuild:
35 + Version bump.
36
37 27 Jan 2011; Markos Chandras <hwoarang@g.o> etsdevtools-3.1.0.ebuild:
38 Stable on amd64 wrt bug #347107
39
40
41
42 1.1 dev-python/etsdevtools/etsdevtools-3.1.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/etsdevtools/etsdevtools-3.1.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/etsdevtools/etsdevtools-3.1.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: etsdevtools-3.1.1.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/etsdevtools/etsdevtools-3.1.1.ebuild,v 1.1 2011/01/30 15:08:13 arfrever Exp $
52
53 EAPI="3"
54 PYTHON_DEPEND="2"
55 SUPPORT_PYTHON_ABIS="1"
56 RESTRICT_PYTHON_ABIS="3.* *-jython"
57
58 inherit distutils
59
60 MY_PN="ETSDevTools"
61 MY_P="${MY_PN}-${PV}"
62
63 DESCRIPTION="Enthought tools to support Python development"
64 HOMEPAGE="http://code.enthought.com/projects/ets_dev_tools.php http://pypi.python.org/pypi/ETSDevTools"
65 SRC_URI="http://www.enthought.com/repo/ETS/${MY_P}.tar.gz"
66
67 LICENSE="BSD"
68 SLOT="0"
69 KEYWORDS="~amd64 ~ppc ~x86"
70 IUSE="doc examples wxwidgets"
71
72 RDEPEND="dev-python/docutils
73 dev-python/nose
74 dev-python/numpy
75 dev-python/setuptools
76 >=dev-python/traitsgui-3.6.0
77 wxwidgets? ( dev-python/wxpython:2.8 )"
78 DEPEND="${RDEPEND}
79 doc? ( dev-python/sphinx )"
80
81 S="${WORKDIR}/${MY_P}"
82
83 PYTHON_MODNAME="enthought"
84
85 src_compile() {
86 distutils_src_compile
87
88 if use doc; then
89 einfo "Generation of documentation"
90 pushd docs > /dev/null
91 emake html || die "Generation of documentation failed"
92 popd > /dev/null
93 fi
94 }
95
96 src_install() {
97 find -name "*LICENSE.txt" -delete
98 distutils_src_install
99
100 if use doc; then
101 dodoc docs/*/*.pdf || die "Installation of PDF documentation failed"
102 pushd docs/build/html > /dev/null
103 insinto /usr/share/doc/${PF}/html
104 doins -r [a-z]* _static || die "Installation of documentation failed"
105 popd > /dev/null
106 fi
107
108 if use examples; then
109 insinto /usr/share/doc/${PF}/examples
110 doins -r examples/* || die "Installation of examples failed"
111 fi
112 }