Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyamg/
Date: Mon, 28 Dec 2020 15:50:18
Message-Id: 1609170594.dcf936a95ada57c565378424f9b81c2c9265b7d1.soap@gentoo
1 commit: dcf936a95ada57c565378424f9b81c2c9265b7d1
2 Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
3 AuthorDate: Mon Dec 28 15:49:54 2020 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 28 15:49:54 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcf936a9
7
8 dev-python/pyamg: Remove old
9
10 Closes: https://github.com/gentoo/gentoo/pull/18761
11 Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
12 Signed-off-by: David Seifert <soap <AT> gentoo.org>
13
14 dev-python/pyamg/Manifest | 1 -
15 dev-python/pyamg/pyamg-3.2.1-r1.ebuild | 32 --------------------------------
16 2 files changed, 33 deletions(-)
17
18 diff --git a/dev-python/pyamg/Manifest b/dev-python/pyamg/Manifest
19 index 27a0eed3b90..a1a195d6759 100644
20 --- a/dev-python/pyamg/Manifest
21 +++ b/dev-python/pyamg/Manifest
22 @@ -1,2 +1 @@
23 -DIST pyamg-3.2.1.tar.gz 765723 BLAKE2B 72c59c0fe93363f73d8ba4c6297920dd1ca8406b048cf0357baec5f2390bdb524421a35ef65e790be45b543e9e162067ee8f8f09327b464a4bc5c9cec368b003 SHA512 6be0dd068417389934ce97813321367920abf6f9f5e94ce2df8bd796edc797cedd492c9153b62466f7d68055a05821447dcf21578ccdfe3294766a49a9ac220e
24 DIST pyamg-4.0.0.tar.gz 717171 BLAKE2B 16483d829e8a938359827ca8ebe3093c890685244125576e05220910b66e9aeec278472134d10c589e58dfbd363930cdd7ae13d16c9b9d54c1bd5250e66f4677 SHA512 cdd27834c12ef18f023e78b5b946c06bc2c35f73cf65fc4c76da2fab75f23466e6c1a4b3dccb8506be3ada7e0bafda38122d3d7315deebc7959d2e5300d9add1
25
26 diff --git a/dev-python/pyamg/pyamg-3.2.1-r1.ebuild b/dev-python/pyamg/pyamg-3.2.1-r1.ebuild
27 deleted file mode 100644
28 index cc9224f2094..00000000000
29 --- a/dev-python/pyamg/pyamg-3.2.1-r1.ebuild
30 +++ /dev/null
31 @@ -1,32 +0,0 @@
32 -# Copyright 1999-2020 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -PYTHON_COMPAT=( python3_{6,7} )
38 -
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="Algebraic multigrid solvers in Python"
42 -HOMEPAGE="https://pyamg.org"
43 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 -
45 -LICENSE="BSD"
46 -SLOT="0"
47 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
48 -IUSE="test"
49 -RESTRICT="!test? ( test )"
50 -
51 -RDEPEND="
52 - dev-python/numpy[${PYTHON_USEDEP}]
53 - dev-python/scipy[${PYTHON_USEDEP}]
54 -"
55 -DEPEND="${RDEPEND}
56 - test? ( dev-python/nose[${PYTHON_USEDEP}] )
57 -"
58 -
59 -python_test() {
60 - distutils_install_for_testing
61 - cd "${T}" || die # need to be away source directory
62 - nosetests --verbose pyamg || die
63 -}