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/envisagecore: ChangeLog envisagecore-3.2.0.ebuild
Date: Sun, 30 Jan 2011 17:56:54
Message-Id: 20110130175645.2514420054@flycatcher.gentoo.org
1 arfrever 11/01/30 17:56:45
2
3 Modified: ChangeLog
4 Added: envisagecore-3.2.0.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.8 dev-python/envisagecore/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/envisagecore/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/envisagecore/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/envisagecore/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/envisagecore/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 18 Oct 2010 14:34:38 -0000 1.7
24 +++ ChangeLog 30 Jan 2011 17:56:45 -0000 1.8
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/envisagecore
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/envisagecore/ChangeLog,v 1.7 2010/10/18 14:34:38 arfrever Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/envisagecore/ChangeLog,v 1.8 2011/01/30 17:56:45 arfrever Exp $
31 +
32 +*envisagecore-3.2.0 (30 Jan 2011)
33 +
34 + 30 Jan 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
35 + -envisagecore-3.1.3.ebuild, +envisagecore-3.2.0.ebuild:
36 + Version bump.
37
38 *envisagecore-3.1.3 (18 Oct 2010)
39
40
41
42
43 1.1 dev-python/envisagecore/envisagecore-3.2.0.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/envisagecore/envisagecore-3.2.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/envisagecore/envisagecore-3.2.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: envisagecore-3.2.0.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-python/envisagecore/envisagecore-3.2.0.ebuild,v 1.1 2011/01/30 17:56:45 arfrever Exp $
53
54 EAPI="3"
55 PYTHON_DEPEND="2"
56 SUPPORT_PYTHON_ABIS="1"
57 RESTRICT_PYTHON_ABIS="3.* *-jython"
58 DISTUTILS_SRC_TEST="setup.py"
59
60 inherit distutils virtualx
61
62 MY_PN="EnvisageCore"
63 MY_P="${MY_PN}-${PV}"
64
65 DESCRIPTION="Enthought Tool Suite: Extensible application framework"
66 HOMEPAGE="http://code.enthought.com/projects/envisage/ http://pypi.python.org/pypi/EnvisageCore"
67 SRC_URI="http://www.enthought.com/repo/ETS/${MY_P}.tar.gz"
68
69 LICENSE="BSD"
70 SLOT="0"
71 KEYWORDS="~amd64 ~x86"
72 IUSE="doc examples test"
73
74 RDEPEND=">=dev-python/apptools-3.4.1
75 >=dev-python/enthoughtbase-3.1.0
76 >=dev-python/traits-3.6.0"
77 DEPEND="${RDEPEND}
78 dev-python/setuptools
79 doc? ( dev-python/sphinx )
80 test? (
81 dev-python/coverage
82 dev-python/nose
83 media-fonts/font-cursor-misc
84 media-fonts/font-misc-misc
85 x11-apps/xhost
86 )"
87
88 S="${WORKDIR}/${MY_P}"
89
90 PYTHON_MODNAME="enthought"
91
92 src_compile() {
93 distutils_src_compile
94
95 if use doc; then
96 einfo "Generation of documentation"
97 pushd docs > /dev/null
98 emake html || die "Generation of documentation failed"
99 popd > /dev/null
100 fi
101 }
102
103 src_test() {
104 maketype="distutils_src_test" virtualmake
105 }
106
107 src_install() {
108 distutils_src_install
109
110 if use doc; then
111 pushd docs/build/html > /dev/null
112 insinto /usr/share/doc/${PF}/html
113 doins -r [a-z]* _static || die "Installation of documentation failed"
114 popd > /dev/null
115 fi
116
117 if use examples; then
118 insinto /usr/share/doc/${PF}/examples
119 doins -r examples/* || die "Installation of examples failed"
120 fi
121 }