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