diff options
Diffstat (limited to 'dev-python/mpmath')
-rw-r--r-- | dev-python/mpmath/ChangeLog | 6 | ||||
-rw-r--r-- | dev-python/mpmath/mpmath-0.15.ebuild | 54 |
2 files changed, 5 insertions, 55 deletions
diff --git a/dev-python/mpmath/ChangeLog b/dev-python/mpmath/ChangeLog index d6149dc59e5b..601cc7e81e9e 100644 --- a/dev-python/mpmath/ChangeLog +++ b/dev-python/mpmath/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/mpmath # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/ChangeLog,v 1.16 2010/11/10 17:56:07 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/ChangeLog,v 1.17 2010/12/13 16:22:53 arfrever Exp $ + + 13 Dec 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + -mpmath-0.15.ebuild: + Delete. 10 Nov 2010; Fabian Groffen <grobian@gentoo.org> mpmath-0.16.ebuild: Marked ~x86-linux, ~ppc-macos, bug #341995 diff --git a/dev-python/mpmath/mpmath-0.15.ebuild b/dev-python/mpmath/mpmath-0.15.ebuild deleted file mode 100644 index f94c8cc688b1..000000000000 --- a/dev-python/mpmath/mpmath-0.15.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/mpmath-0.15.ebuild,v 1.3 2010/10/31 16:30:58 grozin Exp $ - -EAPI="3" -PYTHON_DEPEND="2" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.*" -DISTUTILS_SRC_TEST="py.test" - -inherit distutils - -DESCRIPTION="A python library for arbitrary-precision floating-point arithmetic" -HOMEPAGE="http://code.google.com/p/mpmath/ http://pypi.python.org/pypi/mpmath" -SRC_URI="http://mpmath.googlecode.com/files/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc examples gmp" - -RDEPEND="gmp? ( dev-python/gmpy )" -DEPEND="doc? ( dev-python/sphinx ) - test? ( dev-python/py )" - -DOCS="CHANGES" - -src_compile() { - distutils_src_compile - if use doc; then - cd doc - "$(PYTHON -f)" build.py - fi -} - -src_test() { - cd mpmath/tests - distutils_src_test -} - -src_install() { - distutils_src_install - - if use doc; then - cd doc - dohtml -r build/* - cd .. - fi - - if use examples; then - insinto /usr/share/doc/${PF}/examples - doins demo/* - fi -} |