Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
patrick 12/03/09 09:12:03
Modified: ChangeLog
Added: spyder-2.1.7.ebuild
Log:
Bump
(Portage version: 2.2.0_alpha90/cvs/Linux x86_64)
Revision Changes Path
1.26 dev-python/spyder/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/spyder/ChangeLog?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/spyder/ChangeLog?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/spyder/ChangeLog?r1=1.25&r2=1.26
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/spyder/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog 25 Feb 2012 01:58:24 -0000 1.25
+++ ChangeLog 9 Mar 2012 09:12:03 -0000 1.26
@@ -1,6 +1,11 @@
# ChangeLog for dev-python/spyder
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/spyder/ChangeLog,v 1.25 2012/02/25 01:58:24 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/spyder/ChangeLog,v 1.26 2012/03/09 09:12:03 patrick Exp $
+
+*spyder-2.1.7 (09 Mar 2012)
+
+ 09 Mar 2012; Patrick Lauer <patrick@g.o> +spyder-2.1.7.ebuild:
+ Bump
25 Feb 2012; Patrick Lauer <patrick@g.o> spyder-2.1.2.ebuild,
spyder-2.1.6.ebuild:
1.1 dev-python/spyder/spyder-2.1.7.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/spyder/spyder-2.1.7.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/spyder/spyder-2.1.7.ebuild?rev=1.1&content-type=text/plain
Index: spyder-2.1.7.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/spyder/spyder-2.1.7.ebuild,v 1.1 2012/03/09 09:12:03 patrick Exp $
EAPI="3"
PYTHON_DEPEND="2:2.5"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.4 3.* *-jython 2.7-pypy-*"
inherit distutils eutils
DESCRIPTION="Python IDE with matlab-like features"
HOMEPAGE="http://code.google.com/p/spyderlib/ http://pypi.python.org/pypi/spyder"
SRC_URI="http://spyderlib.googlecode.com/files/${P}.zip"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc ipython matplotlib numpy pep8 +pyflakes pylint +rope scipy sphinx"
RDEPEND=">=dev-python/PyQt4-4.4[webkit]
ipython? ( dev-python/ipython )
matplotlib? ( dev-python/matplotlib )
numpy? ( dev-python/numpy )
pep8? ( dev-python/pep8 )
pyflakes? ( >=dev-python/pyflakes-0.3 )
pylint? ( dev-python/pylint )
rope? ( >=dev-python/rope-0.9.3 )
scipy? ( sci-libs/scipy )
sphinx? ( dev-python/sphinx )"
DEPEND="${RDEPEND}
doc? ( dev-python/sphinx )"
PYTHON_MODNAME="spyderlib spyderplugins"
src_prepare() {
distutils_src_prepare
epatch "${FILESDIR}/${PN}-2.1.2-disable_sphinx_dependency.patch"
}
src_compile() {
distutils_src_compile
if use doc; then
einfo "Generation of documentation"
PYTHONPATH="build-$(PYTHON -f --ABI)" \
sphinx-build doc doc_output || die "Generation of documentation failed"
fi
}
src_install() {
distutils_src_install
doicon spyderlib/images/spyder.svg || die
make_desktop_entry spyder Spyder spyder "Development;IDE"
if use doc; then
pushd doc_output > /dev/null
insinto /usr/share/doc/${PF}/html
doins -r [a-z]* _images _static || die "Installation of documentation failed"
popd > /dev/null
fi
}
|
|