diff options
Diffstat (limited to 'math/py-PyWavelets')
-rw-r--r-- | math/py-PyWavelets/Makefile | 26 | ||||
-rw-r--r-- | math/py-PyWavelets/distinfo | 3 | ||||
-rw-r--r-- | math/py-PyWavelets/files/patch-pyproject.toml | 43 | ||||
-rw-r--r-- | math/py-PyWavelets/pkg-descr | 5 |
4 files changed, 0 insertions, 77 deletions
diff --git a/math/py-PyWavelets/Makefile b/math/py-PyWavelets/Makefile deleted file mode 100644 index bcd76711e774..000000000000 --- a/math/py-PyWavelets/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -PORTNAME= PyWavelets -PORTVERSION= 1.4.1 -PORTREVISION= 2 -CATEGORIES= math python -MASTER_SITES= PYPI -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} - -MAINTAINER= makc@FreeBSD.org -COMMENT= Discrete Wavelet Transforms in Python -WWW= https://github.com/PyWavelets/pywt - -LICENSE= MIT -LICENSE_FILE= ${WRKSRC}/LICENSE - -BUILD_DEPENDS= ${PYNUMPY} \ - ${PYTHON_PKGNAMEPREFIX}setuptools>=0:devel/py-setuptools@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR} -RUN_DEPENDS= ${PYNUMPY} - -USES= python -USE_PYTHON= autoplist cython pep517 - -post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/pywt/_extensions/*.so - -.include <bsd.port.mk> diff --git a/math/py-PyWavelets/distinfo b/math/py-PyWavelets/distinfo deleted file mode 100644 index 2ad92327aea6..000000000000 --- a/math/py-PyWavelets/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -TIMESTAMP = 1724843132 -SHA256 (PyWavelets-1.4.1.tar.gz) = 6437af3ddf083118c26d8f97ab43b0724b956c9f958e9ea788659f6a2834ba93 -SIZE (PyWavelets-1.4.1.tar.gz) = 4589677 diff --git a/math/py-PyWavelets/files/patch-pyproject.toml b/math/py-PyWavelets/files/patch-pyproject.toml deleted file mode 100644 index a4df3902ae8e..000000000000 --- a/math/py-PyWavelets/files/patch-pyproject.toml +++ /dev/null @@ -1,43 +0,0 @@ ---- pyproject.toml.orig 2022-09-16 08:55:28 UTC -+++ pyproject.toml -@@ -9,39 +9,5 @@ requires = [ - "wheel", - "setuptools<65", - "Cython>=0.29.24,<3.0", -- -- # NumPy dependencies - to update these, sync from -- # https://github.com/scipy/oldest-supported-numpy/, and then -- # update minimum version to match our install_requires min version -- # ---------------------------------------------------------------- -- -- # numpy 1.19 was the first minor release to provide aarch64 wheels, but -- # wheels require fixes contained in numpy 1.19.2 -- "numpy==1.19.2; python_version=='3.8' and platform_machine=='aarch64'", -- # aarch64 for py39 is covered by default requirement below -- -- # arm64 on Darwin supports Python 3.8 and above requires numpy>=1.20.0 -- "numpy==1.20.0; python_version=='3.8' and platform_machine=='arm64' and platform_system=='Darwin'", -- "numpy==1.20.0; python_version=='3.9' and platform_machine=='arm64' and platform_system=='Darwin'", -- -- # On Windows we need to avoid 1.21.6, 1.22.0 and 1.22.1 because they were -- # built with vc142. 1.22.3 is the first version that has 32-bit Windows -- # wheels *and* was built with vc141. So use that: -- "numpy==1.22.3; python_version=='3.10' and platform_system=='Windows' and platform_python_implementation != 'PyPy'", -- -- # default numpy requirements -- "numpy==1.17.3; python_version=='3.8' and (platform_machine!='arm64' or platform_system!='Darwin') and platform_machine!='aarch64' and platform_python_implementation != 'PyPy'", -- "numpy==1.19.3; python_version=='3.9' and (platform_machine!='arm64' or platform_system!='Darwin') and platform_python_implementation != 'PyPy'", -- # Note that 1.21.3 was the first version with a complete set of 3.10 wheels, -- # however macOS was broken and it's safe C API/ABI-wise to build against 1.21.6 -- # (see oldest-supported-numpy issues gh-28 and gh-45) -- "numpy==1.21.6; python_version=='3.10' and (platform_system!='Windows' and platform_machine!='loongarch64') and platform_python_implementation != 'PyPy'", -- "numpy==1.23.3; python_version=='3.11' and platform_python_implementation != 'PyPy'", -- -- # For Python versions which aren't yet officially supported, -- # we specify an unpinned NumPy which allows source distributions -- # to be used and allows wheels to be used as soon as they -- # become available. -- "numpy; python_version>='3.12'", -- "numpy; python_version>='3.8' and platform_python_implementation=='PyPy'", -+ "numpy", - ] diff --git a/math/py-PyWavelets/pkg-descr b/math/py-PyWavelets/pkg-descr deleted file mode 100644 index 99847a6ec1ba..000000000000 --- a/math/py-PyWavelets/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -PyWavelets is a free Open Source library for wavelet transforms in Python. -Wavelets are mathematical basis functions that are localized in both time and -frequency. Wavelet transforms are time-frequency transforms employing wavelets. -They are similar to Fourier transforms, the difference being that Fourier -transforms are localized only in frequency instead of in time and frequency. |