From 0b84f330c7cd058ed78d2123b53a0e684d25838d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Tue, 8 Sep 2026 07:15:42 +0200 Subject: [PATCH] dev-python/pywavelets: Bump to 1.10.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- dev-python/pywavelets/Manifest | 1 + .../pywavelets/pywavelets-1.10.0.ebuild | 50 +++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 dev-python/pywavelets/pywavelets-1.10.0.ebuild diff --git a/dev-python/pywavelets/Manifest b/dev-python/pywavelets/Manifest index e81fcca9b6de1..5e5073408e2c9 100644 --- a/dev-python/pywavelets/Manifest +++ b/dev-python/pywavelets/Manifest @@ -1 +1,2 @@ +DIST pywavelets-1.10.0.tar.gz 3948163 BLAKE2B aaa7d070220206953868e036e2886fc2a91d9ad43cb5cf641b6b2a49b9a3b9ba3d8a6f193590198a7e7f070238a6f0816fe9da5c272089afc9e366e16501bf4d SHA512 67e14e73024bc0fc79b257a4b58caedab697734831d16e74014b5d77ee0836bbf778bdeba05aea8bfc7869bb4ce1c992735563994e1df60a69ded6f275666983 DIST pywavelets-1.9.0.tar.gz 3938340 BLAKE2B c8bbf217d7c00f4711a6dfb58f34c6120d40f9806208198ab6ba68437b069a504b9980bfc987aea9138fd89b6c0f9a230b157c5784187caf32df2dcf6e8a9dae SHA512 81928f8a2488047bdfeca0784efc9ec6db5312877b4c011921325d3bc5fa31478399f5868181da55fadbec80808ca01c3bcda98e805e3829ec7928a92038e957 diff --git a/dev-python/pywavelets/pywavelets-1.10.0.ebuild b/dev-python/pywavelets/pywavelets-1.10.0.ebuild new file mode 100644 index 0000000000000..80de0a59ca804 --- /dev/null +++ b/dev-python/pywavelets/pywavelets-1.10.0.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_EXT=1 +DISTUTILS_USE_PEP517=meson-python +PYPI_PN="PyWavelets" +PYTHON_COMPAT=( python3_{12..15} ) + +inherit distutils-r1 pypi + +DESCRIPTION="Discrete Wavelet Transforms in Python" +HOMEPAGE=" + https://pywavelets.readthedocs.io/en/latest/ + https://github.com/PyWavelets/pywt/ + https://pypi.org/project/PyWavelets/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~riscv ~x86" +IUSE="examples" + +RDEPEND=" + dev-python/matplotlib[${PYTHON_USEDEP}] + =dev-python/numpy-1.23.6[${PYTHON_USEDEP}] +" +BDEPEND=" + ${RDEPEND} + >=dev-python/cython-3.0.4[${PYTHON_USEDEP}] +" + +EPYTEST_PLUGINS=() +distutils_enable_tests pytest + +python_test() { + rm -rf pywt || die + epytest --pyargs pywt +} + +python_install_all() { + distutils-r1_python_install_all + if use examples; then + docinto examples + dodoc -r demo + docompress -x /usr/share/doc/${PF}/examples + fi +}