diff options
author | Patrick Lauer <patrick@gentoo.org> | 2015-03-26 07:22:32 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2015-03-26 07:22:32 +0000 |
commit | c1374bef0df409f6017ad34477c50b1206a25831 (patch) | |
tree | 31ded83487b850eefc78cbf35d65e6a7a53860a1 /dev-python | |
parent | Bump (diff) | |
download | gentoo-2-c1374bef0df409f6017ad34477c50b1206a25831.tar.gz gentoo-2-c1374bef0df409f6017ad34477c50b1206a25831.tar.bz2 gentoo-2-c1374bef0df409f6017ad34477c50b1206a25831.zip |
Bump
(Portage version: 2.2.18/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/spyder/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/spyder/spyder-2.3.4.ebuild | 53 |
2 files changed, 59 insertions, 1 deletions
diff --git a/dev-python/spyder/ChangeLog b/dev-python/spyder/ChangeLog index 02952ab6be71..7b93abdc79a6 100644 --- a/dev-python/spyder/ChangeLog +++ b/dev-python/spyder/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/spyder # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/spyder/ChangeLog,v 1.36 2015/02/28 07:57:02 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/spyder/ChangeLog,v 1.37 2015/03/26 07:22:32 patrick Exp $ + +*spyder-2.3.4 (26 Mar 2015) + + 26 Mar 2015; Patrick Lauer <patrick@gentoo.org> +spyder-2.3.4.ebuild: + Bump *spyder-2.3.3 (28 Feb 2015) diff --git a/dev-python/spyder/spyder-2.3.4.ebuild b/dev-python/spyder/spyder-2.3.4.ebuild new file mode 100644 index 000000000000..78840ff111b1 --- /dev/null +++ b/dev-python/spyder/spyder-2.3.4.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/spyder/spyder-2.3.4.ebuild,v 1.1 2015/03/26 07:22:32 patrick Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_7,3_3,3_4} ) + +inherit distutils-r1 + +DESCRIPTION="Python IDE with matlab-like features" +HOMEPAGE="http://code.google.com/p/spyderlib/ https://bitbucket.org/spyder-ide/spyderlib" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="doc ipython matplotlib numpy pep8 +pyflakes pylint +rope scipy sphinx" + +# rope requires no version bordering since all are >= miniumum version +RDEPEND=" + || ( dev-python/PyQt4[${PYTHON_USEDEP},svg,webkit] + dev-python/pyside[${PYTHON_USEDEP},svg,webkit] ) + ipython? ( dev-python/ipython[qt4,${PYTHON_USEDEP}] ) + matplotlib? ( dev-python/matplotlib[${PYTHON_USEDEP}] ) + numpy? ( dev-python/numpy[${PYTHON_USEDEP}] ) + pep8? ( dev-python/pep8[${PYTHON_USEDEP}] ) + pyflakes? ( >=dev-python/pyflakes-0.5[${PYTHON_USEDEP}] ) + pylint? ( dev-python/pylint[${PYTHON_USEDEP}] ) + rope? ( $(python_gen_cond_dep 'dev-python/rope[${PYTHON_USEDEP}]' python2_7) ) + scipy? ( sci-libs/scipy[${PYTHON_USEDEP}] ) + sphinx? ( >=dev-python/sphinx-0.6.0[${PYTHON_USEDEP}] )" +DEPEND="${RDEPEND} + app-arch/unzip + doc? ( >=dev-python/sphinx-0.6.0[${PYTHON_USEDEP}] )" + +# Courtesy of Arfrever +PATCHES=( "${FILESDIR}"/${PN}-2.3.1-build.patch ) + +python_compile_all() { + if use doc; then + einfo "Generation of documentation" + PYTHONPATH="{BUILD_DIR}" \ + sphinx-build doc doc/html || die "Generation of documentation failed" + fi +} + +python_install_all() { + distutils-r1_python_install_all + doicon spyderlib/images/spyder.svg + make_desktop_entry spyder Spyder spyder "Development;IDE" + use doc && dohtml -r doc/html/ +} |