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