summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Grozin <grozin@gentoo.org>2009-08-17 16:55:05 +0000
committerAndrey Grozin <grozin@gentoo.org>2009-08-17 16:55:05 +0000
commitf19f2c54350967b67b23f4c2533e9d50198fc03b (patch)
tree46db7319d236885e9ba4284cdc541b057bf41e14 /dev-python/mpmath
parenttcllib dependency updated to match at least 1.11, closing bug #281700 (diff)
downloadgentoo-2-f19f2c54350967b67b23f4c2533e9d50198fc03b.tar.gz
gentoo-2-f19f2c54350967b67b23f4c2533e9d50198fc03b.tar.bz2
gentoo-2-f19f2c54350967b67b23f4c2533e9d50198fc03b.zip
Version bump
(Portage version: 2.2_rc38/cvs/Linux i686)
Diffstat (limited to 'dev-python/mpmath')
-rw-r--r--dev-python/mpmath/ChangeLog8
-rw-r--r--dev-python/mpmath/mpmath-0.13.ebuild (renamed from dev-python/mpmath/mpmath-0.11.ebuild)15
2 files changed, 19 insertions, 4 deletions
diff --git a/dev-python/mpmath/ChangeLog b/dev-python/mpmath/ChangeLog
index efbf9e04e9db..d96906d28e6e 100644
--- a/dev-python/mpmath/ChangeLog
+++ b/dev-python/mpmath/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for dev-python/mpmath
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/ChangeLog,v 1.7 2009/06/11 16:49:28 grozin Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/ChangeLog,v 1.8 2009/08/17 16:55:05 grozin Exp $
+
+*mpmath-0.13 (17 Aug 2009)
+
+ 17 Aug 2009; Andrey Grozin <grozin@gentoo.org> -mpmath-0.11.ebuild,
+ +mpmath-0.13.ebuild:
+ Version bump
*mpmath-0.12-r1 (11 Jun 2009)
diff --git a/dev-python/mpmath/mpmath-0.11.ebuild b/dev-python/mpmath/mpmath-0.13.ebuild
index b744cb3be207..9fb8bbb9a49c 100644
--- a/dev-python/mpmath/mpmath-0.11.ebuild
+++ b/dev-python/mpmath/mpmath-0.13.ebuild
@@ -1,7 +1,8 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/mpmath-0.11.ebuild,v 1.2 2009/02/15 22:32:34 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/mpmath-0.13.ebuild,v 1.1 2009/08/17 16:55:05 grozin Exp $
+EAPI=2
NEED_PYTHON=2.4
inherit distutils
@@ -14,17 +15,25 @@ SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc examples gmp test"
+RDEPEND="gmp? ( dev-python/gmpy )"
DEPEND="doc? ( dev-python/sphinx )
- gmp? ( dev-python/gmpy )
test? ( dev-python/py )"
+src_compile() {
+ distutils_src_compile
+ if use doc; then
+ cd doc
+ "${python}" build.py
+ cd ..
+ fi
+}
+
src_install() {
DOCS="CHANGES"
distutils_src_install
if use doc; then
cd doc
- "${python}" build.py
dohtml -r build/*
cd ..
fi