Gentoo Archives: gentoo-commits

From: "Andrey Grozin (grozin)" <grozin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/mpmath: ChangeLog mpmath-0.11.ebuild mpmath-0.9.ebuild
Date: Wed, 28 Jan 2009 15:21:40
Message-Id: E1LSCEU-0008OT-Mr@stork.gentoo.org
1 grozin 09/01/28 15:21:38
2
3 Modified: ChangeLog
4 Added: mpmath-0.11.ebuild
5 Removed: mpmath-0.9.ebuild
6 Log:
7 Version bump
8 (Portage version: 2.2_rc23/cvs/Linux i686)
9
10 Revision Changes Path
11 1.4 dev-python/mpmath/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/mpmath/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/mpmath/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/mpmath/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/mpmath/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 20 Oct 2008 10:55:21 -0000 1.3
24 +++ ChangeLog 28 Jan 2009 15:21:38 -0000 1.4
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/mpmath
27 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/ChangeLog,v 1.3 2008/10/20 10:55:21 grozin Exp $
29 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/ChangeLog,v 1.4 2009/01/28 15:21:38 grozin Exp $
31 +
32 +*mpmath-0.11 (28 Jan 2009)
33 +
34 + 28 Jan 2009; Andrey Grozin <grozin@g.o> -mpmath-0.9.ebuild,
35 + +mpmath-0.11.ebuild:
36 + Version bump
37
38 *mpmath-0.10 (20 Oct 2008)
39
40
41
42
43 1.1 dev-python/mpmath/mpmath-0.11.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/mpmath/mpmath-0.11.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/mpmath/mpmath-0.11.ebuild?rev=1.1&content-type=text/plain
47
48 Index: mpmath-0.11.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/mpmath-0.11.ebuild,v 1.1 2009/01/28 15:21:38 grozin Exp $
53
54 NEED_PYTHON=2.4
55 inherit distutils
56
57 DESCRIPTION="A python library for arbitrary-precision floating-point arithmetic"
58 HOMEPAGE="http://code.google.com/p/${PN}/"
59 SRC_URI="http://mpmath.googlecode.com/files/${P}.tar.gz"
60
61 LICENSE="BSD"
62 SLOT="0"
63 KEYWORDS="~x86"
64 IUSE="doc examples gmp test"
65
66 DEPEND="doc? ( dev-python/sphinx )
67 gmp? ( dev-python/gmpy )
68 test? ( dev-python/py )"
69
70 src_install() {
71 DOCS="CHANGES"
72 distutils_src_install
73
74 if use doc; then
75 cd doc
76 "${python}" build.py
77 dohtml -r build/*
78 cd ..
79 fi
80
81 if use examples; then
82 insinto /usr/share/doc/${PF}/examples
83 doins demo/*
84 fi
85 }
86
87 src_test() {
88 cd mpmath/tests
89 py.test || die "tests failed"
90 }