Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/spyder: spyder-2.3.3.ebuild ChangeLog
Date: Sat, 28 Feb 2015 07:57:10
Message-Id: 20150228075702.7CC0212B88@oystercatcher.gentoo.org
1 patrick 15/02/28 07:57:02
2
3 Modified: ChangeLog
4 Added: spyder-2.3.3.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.17/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.36 dev-python/spyder/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/spyder/ChangeLog?rev=1.36&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/spyder/ChangeLog?rev=1.36&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/spyder/ChangeLog?r1=1.35&r2=1.36
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/spyder/ChangeLog,v
20 retrieving revision 1.35
21 retrieving revision 1.36
22 diff -u -r1.35 -r1.36
23 --- ChangeLog 17 Dec 2014 04:34:37 -0000 1.35
24 +++ ChangeLog 28 Feb 2015 07:57:02 -0000 1.36
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/spyder
27 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/spyder/ChangeLog,v 1.35 2014/12/17 04:34:37 idella4 Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/spyder/ChangeLog,v 1.36 2015/02/28 07:57:02 patrick Exp $
31 +
32 +*spyder-2.3.3 (28 Feb 2015)
33 +
34 + 28 Feb 2015; Patrick Lauer <patrick@g.o> +spyder-2.3.3.ebuild:
35 + Bump
36
37 *spyder-2.3.2 (17 Dec 2014)
38
39
40
41
42 1.1 dev-python/spyder/spyder-2.3.3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/spyder/spyder-2.3.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/spyder/spyder-2.3.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: spyder-2.3.3.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/spyder/spyder-2.3.3.ebuild,v 1.1 2015/02/28 07:57:02 patrick Exp $
52
53 EAPI=5
54
55 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
56
57 inherit distutils-r1
58
59 DESCRIPTION="Python IDE with matlab-like features"
60 HOMEPAGE="http://code.google.com/p/spyderlib/ https://bitbucket.org/spyder-ide/spyderlib"
61 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
62
63 LICENSE="MIT"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
66 IUSE="doc ipython matplotlib numpy pep8 +pyflakes pylint +rope scipy sphinx"
67
68 # rope requires no version bordering since all are >= miniumum version
69 RDEPEND="
70 || ( dev-python/PyQt4[${PYTHON_USEDEP},svg,webkit]
71 dev-python/pyside[${PYTHON_USEDEP},svg,webkit] )
72 ipython? ( dev-python/ipython[qt4,${PYTHON_USEDEP}] )
73 matplotlib? ( dev-python/matplotlib[${PYTHON_USEDEP}] )
74 numpy? ( dev-python/numpy[${PYTHON_USEDEP}] )
75 pep8? ( dev-python/pep8[${PYTHON_USEDEP}] )
76 pyflakes? ( >=dev-python/pyflakes-0.5[${PYTHON_USEDEP}] )
77 pylint? ( dev-python/pylint[${PYTHON_USEDEP}] )
78 rope? ( $(python_gen_cond_dep 'dev-python/rope[${PYTHON_USEDEP}]' python2_7) )
79 scipy? ( sci-libs/scipy[${PYTHON_USEDEP}] )
80 sphinx? ( >=dev-python/sphinx-0.6.0[${PYTHON_USEDEP}] )"
81 DEPEND="${RDEPEND}
82 app-arch/unzip
83 doc? ( >=dev-python/sphinx-0.6.0[${PYTHON_USEDEP}] )"
84
85 # Courtesy of Arfrever
86 PATCHES=( "${FILESDIR}"/${PN}-2.3.1-build.patch )
87
88 python_compile_all() {
89 if use doc; then
90 einfo "Generation of documentation"
91 PYTHONPATH="{BUILD_DIR}" \
92 sphinx-build doc doc/html || die "Generation of documentation failed"
93 fi
94 }
95
96 python_install_all() {
97 distutils-r1_python_install_all
98 doicon spyderlib/images/spyder.svg
99 make_desktop_entry spyder Spyder spyder "Development;IDE"
100 use doc && dohtml -r doc/html/
101 }