| Summary: | dev-python/spyder-2.3.7 version bump | ||
|---|---|---|---|
| Product: | Gentoo Linux | Reporter: | Roberto Castagnola <roberto.castagnola> |
| Component: | [OLD] Development | Assignee: | Andrey Grozin <grozin> |
| Status: | RESOLVED DUPLICATE | ||
| Severity: | enhancement | CC: | python |
| Priority: | Normal | ||
| Version: | unspecified | ||
| Hardware: | All | ||
| OS: | Linux | ||
| URL: | https://pypi.python.org/pypi/spyder/2.3.7 | ||
| Whiteboard: | |||
| Package list: | Runtime testing required: | --- | |
|
Description
Roberto Castagnola
2015-11-15 20:39:48 UTC
spyder can use jedi instead of rope for code completion: usefull since rope doesn't work with python3 Following my proposed patch to add this dependency: --- /usr/portage/dev-python/spyder/spyder-2.3.5.2.ebuild 2015-08-24 14:01:02.000000000 +0200 +++ spyder-2.3.7.ebuild 2015-11-15 21:20:28.393787326 +0100 @@ -9,19 +9,20 @@ inherit distutils-r1 DESCRIPTION="Python IDE with matlab-like features" -HOMEPAGE="https://code.google.com/p/spyderlib/ https://bitbucket.org/spyder-ide/spyderlib" +HOMEPAGE="https://github.com/spyder-ide/spyder" 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" +IUSE="doc ipython jedi 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}] ) + jedi? ( <dev-python/jedi-0.9.0[${PYTHON_USEDEP}] ) matplotlib? ( dev-python/matplotlib[${PYTHON_USEDEP}] ) numpy? ( dev-python/numpy[${PYTHON_USEDEP}] ) pep8? ( dev-python/pep8[${PYTHON_USEDEP}] ) I have found version bordering from file spyder-2.3.7/spyderlib/utils/introspection/jedi_plugin.py JEDI_REQVER = '>=0.8.1;<0.9.0' Homepage has changed as well. this ebuild hasn't been updated in a while, current version is 3.0.2. it would be nice to have an up-to-date ebuild. sources are now in: https://github.com/spyder-ide/spyder/archive/v3.0.2.zip *** This bug has been marked as a duplicate of bug 602242 *** |