commit: 8a9cae1a5f97e65e3ce33886587bc491daddee02
Author: Rick Farina <zerochaos <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 4 15:31:45 2022 +0000
Commit: Rick Farina <zerochaos <AT> gentoo <DOT> org>
CommitDate: Mon Apr 4 15:31:59 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a9cae1a
dev-python/pyFFTW: drop 0.12.0-r1
Signed-off-by: Rick Farina <zerochaos <AT> gentoo.org>
dev-python/pyFFTW/Manifest | 1 -
dev-python/pyFFTW/pyFFTW-0.12.0-r1.ebuild | 42 -------------------------------
2 files changed, 43 deletions(-)
diff --git a/dev-python/pyFFTW/Manifest b/dev-python/pyFFTW/Manifest
index 7857d7f47f2b..f4fedb44f500 100644
--- a/dev-python/pyFFTW/Manifest
+++ b/dev-python/pyFFTW/Manifest
@@ -1,2 +1 @@
-DIST pyFFTW-0.12.0.tar.gz 147372 BLAKE2B
1ea1f1f8de6759c42781a535b30d7119c0cb02dffea3abfe4130a97c465e000aa9b3064a219718569552304513a77ac51aa309f1be29f9eecae25c63cce70c6c
SHA512
e4d7258d5c053b5367d8c4f1892eba8e595f9d540c1c3e6caf61e0c113d598ba872b5e72a21edace66be70d9ad75c599e4b1fbc692e0015c3c1ae35e9a7ba599
DIST pyFFTW-0.13.0.tar.gz 158660 BLAKE2B
c54096f0814625d49832094a6d823c6d258801a0831b07846993da97a713238a5df5b59beddc38b7e940685403178b2f3100f5713334fc9861757420bc87303a
SHA512
1d4c69cc19dd00f2433037f25ea90335544403b542c0c5ca00cb055e0fde076ec9e00990f02da2385466be171ed8c910a5ce06a7cfa5efbc6544b2383bbce599
diff --git a/dev-python/pyFFTW/pyFFTW-0.12.0-r1.ebuild
b/dev-python/pyFFTW/pyFFTW-0.12.0-r1.ebuild
deleted file mode 100644
index 8ec87a34fe67..000000000000
--- a/dev-python/pyFFTW/pyFFTW-0.12.0-r1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..9} )
-inherit distutils-r1
-
-DESCRIPTION="A pythonic python wrapper around FFTW"
-HOMEPAGE="https://github.com/pyFFTW/pyFFTW"
-
-LICENSE="BSD"
-SLOT="0"
-if [[ "${PV}" = "9999" ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/pyFFTW/pyFFTW.git"
-else
- KEYWORDS="~amd64 ~x86"
- SRC_URI="https://github.com/pyFFTW/pyFFTW/archive/v${PV}.tar.gz ->
${P}.tar.gz"
-fi
-
-DEPEND="
- dev-python/numpy[${PYTHON_USEDEP}]
- >=sci-libs/fftw-3.3:3.0=[threads]
-"
-RDEPEND="${DEPEND}"
-BDEPEND="
- dev-python/cython[${PYTHON_USEDEP}]
- test? (
- dev-python/dask[${PYTHON_USEDEP}]
- dev-python/scipy[${PYTHON_USEDEP}]
- )
-"
-
-distutils_enable_tests unittest
-
-python_test() {
- cp -r -l -n test/ "${BUILD_DIR}/lib" || die
- cd "${BUILD_DIR}/lib" || die
- eunittest
- rm -r test/ || die
-}