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/
Date: Mon, 02 Oct 2017 14:02:26
Message-Id: 1506952923.a9cc2d5dde31b49dc8a1f3dad79f7ec4d7b21a43.grozin@gentoo
1 commit: a9cc2d5dde31b49dc8a1f3dad79f7ec4d7b21a43
2 Author: Andrey Grozin <grozin <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 2 14:01:26 2017 +0000
4 Commit: Andrey Grozin <grozin <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 2 14:02:03 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9cc2d5d
7
8 dev-python/mpmath: cleaning 0.18
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.3
11
12 dev-python/mpmath/Manifest | 1 -
13 dev-python/mpmath/mpmath-0.18.ebuild | 62 ------------------------------------
14 2 files changed, 63 deletions(-)
15
16 diff --git a/dev-python/mpmath/Manifest b/dev-python/mpmath/Manifest
17 index 710b5dcace9..ae1ebd51797 100644
18 --- a/dev-python/mpmath/Manifest
19 +++ b/dev-python/mpmath/Manifest
20 @@ -1,3 +1,2 @@
21 DIST mpmath-1.0.0.tar.gz 511349 SHA256 d32ba7afffbae688229a15f54fbc37c11f4989e4fac628c99b3c5b6889aee03d SHA512 b225f237008e1cfee52b2f0dca0dce1445b932b6eaef92879d7feca30d728e3f88810bfa80882ad8776ba846a636807e59bebe0b9f690cd878c089e9418bd8b7 WHIRLPOOL 5dc18ab6f81a529c06bcc968dd3e9da0a5123740b2a5b2829e98b303b5e3d8208956122a7fd7698ad275d4246aafcbd1756bc0922801d32a535b809cf749b3ac
22 -DIST mpmath-all-0.18.tar.gz 2122954 SHA256 47cc9587ea10202cdfb1afce4fb7410821e91ae6ecb1b54d62be1adfce80ee40 SHA512 a22e1c82f33a30584c975d196601e7bddaf33d4a41b1f288216a9df038ba5a45fd1002c5aa5f15084d05bee3abad944168ad131ac7e4feb218aac22789d8a63f WHIRLPOOL 7544b09310fbb262f2a4f487fa29af429196142e3fcab5822c1383420c7d8948a70b0f505adc0ce4fd7c0e6b6936b8dc6832a5e3d92e7c7cb71d05f6343dd79a
23 DIST mpmath-all-0.19.tar.gz 2123129 SHA256 21a824db176799f42843e4510da4bc6db36ef92b5a43fff70fad7e29bffb9c86 SHA512 5a6ed0b5fad84c1e8399467ea7a1295f9b77c8e673b821c11e3298e88df6c48d9967eed84e2979bf12868e2f9b42bffba01a0c1836a6d82ac42d5f423fed6580 WHIRLPOOL 360fedc4d6942a138b33c63867f8a5e4ce4c101a8f7221c61503933e75073807676cbb240c9bddea765159cb134efd608256c9b921b7d282763b57d2897eefdb
24
25 diff --git a/dev-python/mpmath/mpmath-0.18.ebuild b/dev-python/mpmath/mpmath-0.18.ebuild
26 deleted file mode 100644
27 index 0fca73968d1..00000000000
28 --- a/dev-python/mpmath/mpmath-0.18.ebuild
29 +++ /dev/null
30 @@ -1,62 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -
36 -PYTHON_COMPAT=( python2_7 )
37 -
38 -inherit distutils-r1 eutils
39 -
40 -MY_PN=${PN}-all
41 -MY_P=${MY_PN}-${PV}
42 -
43 -DESCRIPTION="Python library for arbitrary-precision floating-point arithmetic"
44 -HOMEPAGE="https://code.google.com/p/mpmath"
45 -SRC_URI="mirror://pypi/m/${PN}/${MY_P}.tar.gz"
46 -
47 -LICENSE="BSD"
48 -SLOT="0"
49 -KEYWORDS="~amd64 ~arm ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
50 -
51 -IUSE="doc examples gmp matplotlib test"
52 -
53 -RDEPEND="
54 - gmp? ( dev-python/gmpy )
55 - matplotlib? ( dev-python/matplotlib )"
56 -DEPEND="${RDEPEND}
57 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
58 - test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
59 -
60 -S="${WORKDIR}/${MY_P}"
61 -
62 -python_prepare_all() {
63 - local PATCHES=(
64 - "${FILESDIR}/${PN}.patch"
65 - )
66 -
67 - # this fails with the current version of dev-python/py
68 - rm ${PN}/conftest.py || die
69 -
70 - # this test requires X
71 - rm ${PN}/tests/test_visualization.py || die
72 -
73 - distutils-r1_python_prepare_all
74 -}
75 -
76 -python_compile_all() {
77 - if use doc; then
78 - einfo "Generation of documentation"
79 - cd doc || die
80 - "${PYTHON}" build.py || die "Generation of documentation failed"
81 - fi
82 -}
83 -
84 -python_test() {
85 - py.test -v || die
86 -}
87 -
88 -python_install_all() {
89 - use doc && local HTML_DOCS=( doc/build/. )
90 - use examples && local EXAMPLES=( demo/. )
91 - distutils-r1_python_install_all
92 -}