Gentoo Archives: gentoo-commits

From: Andrey Grozin <grozin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/mpmath/, dev-python/mpmath/files/
Date: Mon, 02 Oct 2017 13:58:14
Message-Id: 1506952664.5e9b8034cae7d50a58361bd4f124e04ebb747c5a.grozin@gentoo
1 commit: 5e9b8034cae7d50a58361bd4f124e04ebb747c5a
2 Author: Andrey Grozin <grozin <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 2 13:56:43 2017 +0000
4 Commit: Andrey Grozin <grozin <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 2 13:57:44 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e9b8034
7
8 dev-python/mpmath: bump to 1.0.0
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.3
11
12 dev-python/mpmath/Manifest | 1 +
13 dev-python/mpmath/files/mpmath-1.0.0.patch | 9 +++++++
14 dev-python/mpmath/mpmath-1.0.0.ebuild | 42 ++++++++++++++++++++++++++++++
15 3 files changed, 52 insertions(+)
16
17 diff --git a/dev-python/mpmath/Manifest b/dev-python/mpmath/Manifest
18 index c09501166a7..710b5dcace9 100644
19 --- a/dev-python/mpmath/Manifest
20 +++ b/dev-python/mpmath/Manifest
21 @@ -1,2 +1,3 @@
22 +DIST mpmath-1.0.0.tar.gz 511349 SHA256 d32ba7afffbae688229a15f54fbc37c11f4989e4fac628c99b3c5b6889aee03d SHA512 b225f237008e1cfee52b2f0dca0dce1445b932b6eaef92879d7feca30d728e3f88810bfa80882ad8776ba846a636807e59bebe0b9f690cd878c089e9418bd8b7 WHIRLPOOL 5dc18ab6f81a529c06bcc968dd3e9da0a5123740b2a5b2829e98b303b5e3d8208956122a7fd7698ad275d4246aafcbd1756bc0922801d32a535b809cf749b3ac
23 DIST mpmath-all-0.18.tar.gz 2122954 SHA256 47cc9587ea10202cdfb1afce4fb7410821e91ae6ecb1b54d62be1adfce80ee40 SHA512 a22e1c82f33a30584c975d196601e7bddaf33d4a41b1f288216a9df038ba5a45fd1002c5aa5f15084d05bee3abad944168ad131ac7e4feb218aac22789d8a63f WHIRLPOOL 7544b09310fbb262f2a4f487fa29af429196142e3fcab5822c1383420c7d8948a70b0f505adc0ce4fd7c0e6b6936b8dc6832a5e3d92e7c7cb71d05f6343dd79a
24 DIST mpmath-all-0.19.tar.gz 2123129 SHA256 21a824db176799f42843e4510da4bc6db36ef92b5a43fff70fad7e29bffb9c86 SHA512 5a6ed0b5fad84c1e8399467ea7a1295f9b77c8e673b821c11e3298e88df6c48d9967eed84e2979bf12868e2f9b42bffba01a0c1836a6d82ac42d5f423fed6580 WHIRLPOOL 360fedc4d6942a138b33c63867f8a5e4ce4c101a8f7221c61503933e75073807676cbb240c9bddea765159cb134efd608256c9b921b7d282763b57d2897eefdb
25
26 diff --git a/dev-python/mpmath/files/mpmath-1.0.0.patch b/dev-python/mpmath/files/mpmath-1.0.0.patch
27 new file mode 100644
28 index 00000000000..3a88f38c992
29 --- /dev/null
30 +++ b/dev-python/mpmath/files/mpmath-1.0.0.patch
31 @@ -0,0 +1,9 @@
32 +diff -r -U1 mpmath-1.0.0.orig/setup.py mpmath-1.0.0/setup.py
33 +--- mpmath-1.0.0.orig/setup.py 2017-09-27 21:42:12.000000000 +0700
34 ++++ mpmath-1.0.0/setup.py 2017-10-02 20:36:02.919554100 +0700
35 +@@ -15,4 +15,3 @@
36 + 'mpmath.functions',
37 +- 'mpmath.matrices',
38 +- 'mpmath.tests'],
39 ++ 'mpmath.matrices'],
40 + classifiers=['Topic :: Scientific/Engineering :: Mathematics']
41
42 diff --git a/dev-python/mpmath/mpmath-1.0.0.ebuild b/dev-python/mpmath/mpmath-1.0.0.ebuild
43 new file mode 100644
44 index 00000000000..06c4d284851
45 --- /dev/null
46 +++ b/dev-python/mpmath/mpmath-1.0.0.ebuild
47 @@ -0,0 +1,42 @@
48 +# Copyright 1999-2017 Gentoo Foundation
49 +# Distributed under the terms of the GNU General Public License v2
50 +
51 +EAPI=5
52 +
53 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
54 +
55 +inherit distutils-r1 eutils
56 +
57 +DESCRIPTION="Python library for arbitrary-precision floating-point arithmetic"
58 +HOMEPAGE="http://mpmath.org/"
59 +SRC_URI="http://mpmath.org/files/${P}.tar.gz"
60 +
61 +LICENSE="BSD"
62 +SLOT="0"
63 +KEYWORDS="~amd64 ~arm ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
64 +
65 +IUSE="gmp matplotlib test"
66 +
67 +RDEPEND="
68 + gmp? ( dev-python/gmpy )
69 + matplotlib? ( dev-python/matplotlib[${PYTHON_USEDEP}] )"
70 +DEPEND="${RDEPEND}
71 + test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
72 +
73 +python_prepare_all() {
74 + local PATCHES=(
75 + "${FILESDIR}/${P}.patch"
76 + )
77 +
78 + # this fails with the current version of dev-python/py
79 + rm ${PN}/conftest.py || die
80 +
81 + # this test requires X
82 + rm ${PN}/tests/test_visualization.py || die
83 +
84 + distutils-r1_python_prepare_all
85 +}
86 +
87 +python_test() {
88 + py.test -v || die
89 +}