Gentoo Archives: gentoo-commits

From: Rick Farina <zerochaos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyFFTW/
Date: Mon, 04 Apr 2022 15:32:06
Message-Id: 1649086319.8a9cae1a5f97e65e3ce33886587bc491daddee02.zerochaos@gentoo
1 commit: 8a9cae1a5f97e65e3ce33886587bc491daddee02
2 Author: Rick Farina <zerochaos <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 4 15:31:45 2022 +0000
4 Commit: Rick Farina <zerochaos <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 4 15:31:59 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a9cae1a
7
8 dev-python/pyFFTW: drop 0.12.0-r1
9
10 Signed-off-by: Rick Farina <zerochaos <AT> gentoo.org>
11
12 dev-python/pyFFTW/Manifest | 1 -
13 dev-python/pyFFTW/pyFFTW-0.12.0-r1.ebuild | 42 -------------------------------
14 2 files changed, 43 deletions(-)
15
16 diff --git a/dev-python/pyFFTW/Manifest b/dev-python/pyFFTW/Manifest
17 index 7857d7f47f2b..f4fedb44f500 100644
18 --- a/dev-python/pyFFTW/Manifest
19 +++ b/dev-python/pyFFTW/Manifest
20 @@ -1,2 +1 @@
21 -DIST pyFFTW-0.12.0.tar.gz 147372 BLAKE2B 1ea1f1f8de6759c42781a535b30d7119c0cb02dffea3abfe4130a97c465e000aa9b3064a219718569552304513a77ac51aa309f1be29f9eecae25c63cce70c6c SHA512 e4d7258d5c053b5367d8c4f1892eba8e595f9d540c1c3e6caf61e0c113d598ba872b5e72a21edace66be70d9ad75c599e4b1fbc692e0015c3c1ae35e9a7ba599
22 DIST pyFFTW-0.13.0.tar.gz 158660 BLAKE2B c54096f0814625d49832094a6d823c6d258801a0831b07846993da97a713238a5df5b59beddc38b7e940685403178b2f3100f5713334fc9861757420bc87303a SHA512 1d4c69cc19dd00f2433037f25ea90335544403b542c0c5ca00cb055e0fde076ec9e00990f02da2385466be171ed8c910a5ce06a7cfa5efbc6544b2383bbce599
23
24 diff --git a/dev-python/pyFFTW/pyFFTW-0.12.0-r1.ebuild b/dev-python/pyFFTW/pyFFTW-0.12.0-r1.ebuild
25 deleted file mode 100644
26 index 8ec87a34fe67..000000000000
27 --- a/dev-python/pyFFTW/pyFFTW-0.12.0-r1.ebuild
28 +++ /dev/null
29 @@ -1,42 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{8..9} )
36 -inherit distutils-r1
37 -
38 -DESCRIPTION="A pythonic python wrapper around FFTW"
39 -HOMEPAGE="https://github.com/pyFFTW/pyFFTW"
40 -
41 -LICENSE="BSD"
42 -SLOT="0"
43 -if [[ "${PV}" = "9999" ]]; then
44 - inherit git-r3
45 - EGIT_REPO_URI="https://github.com/pyFFTW/pyFFTW.git"
46 -else
47 - KEYWORDS="~amd64 ~x86"
48 - SRC_URI="https://github.com/pyFFTW/pyFFTW/archive/v${PV}.tar.gz -> ${P}.tar.gz"
49 -fi
50 -
51 -DEPEND="
52 - dev-python/numpy[${PYTHON_USEDEP}]
53 - >=sci-libs/fftw-3.3:3.0=[threads]
54 -"
55 -RDEPEND="${DEPEND}"
56 -BDEPEND="
57 - dev-python/cython[${PYTHON_USEDEP}]
58 - test? (
59 - dev-python/dask[${PYTHON_USEDEP}]
60 - dev-python/scipy[${PYTHON_USEDEP}]
61 - )
62 -"
63 -
64 -distutils_enable_tests unittest
65 -
66 -python_test() {
67 - cp -r -l -n test/ "${BUILD_DIR}/lib" || die
68 - cd "${BUILD_DIR}/lib" || die
69 - eunittest
70 - rm -r test/ || die
71 -}