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/envisageplugins: ChangeLog envisageplugins-3.1.1.ebuild envisageplugins-3.0.1.ebuild
Date: Sun, 06 Sep 2009 15:51:51
Message-Id: E1MkK1t-0007lk-BN@stork.gentoo.org
1 arfrever 09/09/06 15:51:49
2
3 Modified: ChangeLog
4 Added: envisageplugins-3.1.1.ebuild
5 Removed: envisageplugins-3.0.1.ebuild
6 Log:
7 Version bump. Set SUPPORT_PYTHON_ABIS.
8 (Portage version: 14208-svn/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.3 dev-python/envisageplugins/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/envisageplugins/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/envisageplugins/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/envisageplugins/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/envisageplugins/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 27 Mar 2009 10:40:37 -0000 1.2
24 +++ ChangeLog 6 Sep 2009 15:51:49 -0000 1.3
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/envisageplugins
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/envisageplugins/ChangeLog,v 1.2 2009/03/27 10:40:37 bicatali Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/envisageplugins/ChangeLog,v 1.3 2009/09/06 15:51:49 arfrever Exp $
30 +
31 +*envisageplugins-3.1.1 (06 Sep 2009)
32 +
33 + 06 Sep 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
34 + -envisageplugins-3.0.1.ebuild, +envisageplugins-3.1.1.ebuild:
35 + Version bump. Set SUPPORT_PYTHON_ABIS.
36
37 *envisageplugins-3.1.0 (27 Mar 2009)
38
39
40
41
42 1.1 dev-python/envisageplugins/envisageplugins-3.1.1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/envisageplugins/envisageplugins-3.1.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/envisageplugins/envisageplugins-3.1.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: envisageplugins-3.1.1.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/envisageplugins/envisageplugins-3.1.1.ebuild,v 1.1 2009/09/06 15:51:49 arfrever Exp $
52
53 EAPI="2"
54 SUPPORT_PYTHON_ABIS="1"
55
56 inherit distutils
57
58 MY_PN="EnvisagePlugins"
59 MY_P="${MY_PN}-${PV}"
60 DESCRIPTION="Enthought Tool Suite plugins for the Envisage framework"
61 HOMEPAGE="http://code.enthought.com/projects/envisage_plugins.php"
62 SRC_URI="http://www.enthought.com/repo/ETS/${MY_P}.tar.gz"
63
64 IUSE="examples"
65 #IUSE="examples test"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 LICENSE="BSD"
69
70 RDEPEND=">=dev-python/envisagecore-3.1.1
71 >=dev-python/traitsgui-3.1.0"
72
73 DEPEND="dev-python/setuptools"
74 # tests need an X display
75 # test? ( >=dev-python/nose-0.10.3
76 # >=dev-python/enthoughtbase-3.0.3 )"
77 RESTRICT_PYTHON_ABIS="3.*"
78 RESTRICT="test"
79
80 S="${WORKDIR}/${MY_P}"
81 PYTHON_MODNAME="enthought"
82
83 src_prepare() {
84 sed -e "s/self.run_command('build_docs')/pass/" -i setup.py || die
85 }
86
87 src_test() {
88 testing() {
89 PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" setup.py build -b "build-${PYTHON_ABI}" test
90 }
91 python_execute_function testing
92 }
93
94 src_install() {
95 find "${S}" -name \*LICENSE.txt -delete
96 distutils_src_install
97 insinto /usr/share/doc/${PF}
98 if use examples; then
99 doins -r examples || die
100 fi
101 }