diff options
author | Patrick Lauer <patrick@gentoo.org> | 2009-09-04 15:43:11 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2009-09-04 15:43:11 +0000 |
commit | 006a2ea218c64117975c58f8cd086777f57e9bae (patch) | |
tree | 77bef4ff50be60fa59588457b4e8476f43f968fc /dev-python/sympy | |
parent | Remove old (diff) | |
download | gentoo-2-006a2ea218c64117975c58f8cd086777f57e9bae.tar.gz gentoo-2-006a2ea218c64117975c58f8cd086777f57e9bae.tar.bz2 gentoo-2-006a2ea218c64117975c58f8cd086777f57e9bae.zip |
Remove old
(Portage version: 2.2_rc40/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/sympy')
-rw-r--r-- | dev-python/sympy/ChangeLog | 5 | ||||
-rw-r--r-- | dev-python/sympy/sympy-0.6.4.ebuild | 72 |
2 files changed, 4 insertions, 73 deletions
diff --git a/dev-python/sympy/ChangeLog b/dev-python/sympy/ChangeLog index 01c8bf1393c9..b89cc7be834f 100644 --- a/dev-python/sympy/ChangeLog +++ b/dev-python/sympy/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-python/sympy # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/sympy/ChangeLog,v 1.5 2009/07/19 10:10:51 grozin Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/sympy/ChangeLog,v 1.6 2009/09/04 15:43:11 patrick Exp $ + + 04 Sep 2009; Patrick Lauer <patrick@gentoo.org> -sympy-0.6.4.ebuild: + Remove old *sympy-0.6.5 (19 Jul 2009) diff --git a/dev-python/sympy/sympy-0.6.4.ebuild b/dev-python/sympy/sympy-0.6.4.ebuild deleted file mode 100644 index e63c087ad4bd..000000000000 --- a/dev-python/sympy/sympy-0.6.4.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/sympy/sympy-0.6.4.ebuild,v 1.1 2009/04/13 18:34:07 grozin Exp $ -EAPI=2 -NEED_PYTHON=2.4 -inherit distutils - -DESCRIPTION="Computer algebra system (CAS) in Python" -HOMEPAGE="http://code.google.com/p/sympy/" -SRC_URI="http://sympy.googlecode.com/files/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="doc examples gtk imaging ipython latex mathml opengl pdf png test texmacs" - -RDEPEND="mathml? ( dev-libs/libxml2[python] - dev-libs/libxslt[python] - gtk? ( x11-libs/gtkmathview[gtk] ) ) - latex? ( virtual/latex-base - png? ( app-text/dvipng ) - pdf? ( virtual/ghostscript ) ) - texmacs? ( app-office/texmacs ) - ipython? ( dev-python/ipython ) - opengl? ( dev-python/pyopengl ) - imaging? ( dev-python/imaging ) - || ( dev-python/ctypes >=dev-lang/python-2.5 ) - >=dev-python/pexpect-2.0" -DEPEND="doc? ( dev-python/sphinx ) - test? ( >=dev-python/py-0.9.0 )" - -src_unpack() { - distutils_src_unpack - - # use local sphinx - epatch "${FILESDIR}"/${P}-sphinx.patch -} - -src_compile() { - distutils_src_compile - - if use doc; then - cd doc - PYTHONPATH=.. emake SPHINXBUILD=sphinx-build html \ - || die "emake html failed" - cd .. - fi -} - -src_test() { - PYTHONPATH=build/lib/ "${python}" setup.py test || die "Unit tests failed!" -} - -src_install() { - distutils_src_install - - if use doc; then - dohtml -r doc/_build/html/* - fi - - if use examples; then - insinto /usr/share/doc/${P} - doins -r examples - fi - - if use texmacs; then - exeinto /usr/libexec/TeXmacs/bin/ - doexe data/TeXmacs/bin/tm_sympy - insinto /usr/share/TeXmacs/plugins/sympy/ - doins -r data/TeXmacs/progs - fi -} |