dev-python/tables: Bump to 3.11.1

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2026-03-02 03:58:06 +01:00
parent cdbea14028
commit 6fbae4816b
2 changed files with 80 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST tables-3.10.2.tar.gz 4779722 BLAKE2B 3242a1a4ec167f5f21496e8602fcf319fa387ad9245955d17c74605cec97a6222f92197ad7c2f7d3d53fa72740c5bfe9c0c759500698999e3fa5aea036e6ff7e SHA512 c2a1781113d31b35a75a2ce34fe0e922824340efd3077df419913ec6bdb4b0a59ee0601736423c34baf9d61aa0a7122f0b0440e4000cfe61a6dde5f369574450
DIST tables-3.11.0.tar.gz 4790450 BLAKE2B 50fb6273e11516f401e57f26803c8406056e3a86d4def51b42296abcc255835c109e08a4cda1cc8b8071bec0bf6e5d9a8309212c625185d77f834fcc45e9ac9f SHA512 0ac18f5355fb57266b576faae97c01fe6ecacfa018b5f99b77338b5037af44c04fca760890ce63ff76ecae0c0542a36f4b774e5a62bbae99913807706ecc1f13
DIST tables-3.11.1.tar.gz 4790533 BLAKE2B a88a0e117ba9c1dc93e5231a99ebe14cb4c8586c508d37c30105a99097e17c3c87a511430321b75c3f051e2880f5ebdb4fbd9d95e2e68be0b560b54e263a8653 SHA512 4e398a2b481e199a9d9dc0e46787f87fa1b8e01ad0e742c748b7bec814cad610a3cabb9a8ef6ab115596d7240e03f28775bdba724fe03b235531ab3b2f6578d9

View File

@@ -0,0 +1,79 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_EXT=1
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( pypy3_11 python3_{11..14} )
PYTHON_REQ_USE="threads(+)"
inherit distutils-r1 prefix pypi
DESCRIPTION="Hierarchical datasets for Python"
HOMEPAGE="
https://www.pytables.org/
https://github.com/PyTables/PyTables/
https://pypi.org/project/tables/
"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~sparc ~x86"
IUSE="+cpudetection examples test"
RESTRICT="!test? ( test )"
DEPEND="
app-arch/bzip2:0=
app-arch/lz4:0=
>=app-arch/zstd-1.0.0:=
>=dev-libs/c-blosc-1.11.1:0=
>=dev-libs/c-blosc2-2.11.0:=
dev-libs/lzo:2=
>=dev-python/numpy-1.19.0:=[${PYTHON_USEDEP}]
>=sci-libs/hdf5-1.8.4:=
"
RDEPEND="
${DEPEND}
>=dev-python/numexpr-2.6.2[${PYTHON_USEDEP}]
dev-python/packaging[${PYTHON_USEDEP}]
cpudetection? ( dev-python/py-cpuinfo[${PYTHON_USEDEP}] )
"
BDEPEND="
>=dev-python/cython-3.1[${PYTHON_USEDEP}]
virtual/pkgconfig
cpudetection? ( dev-python/py-cpuinfo[${PYTHON_USEDEP}] )
test? (
${RDEPEND}
)
"
python_prepare_all() {
distutils-r1_python_prepare_all
rm -r c-blosc/{blosc,internal-complibs} || die
sed -i -e '/blosc2/d' pyproject.toml || die
hprefixify -w '/prefixes =/' setup.py
# TODO
sed -i -e 's:test_write_chunk_filtermask:_&:' \
tables/tests/test_direct_chunk.py || die
export PYTABLES_NO_EMBEDDED_LIBS=1
export USE_PKGCONFIG=TRUE
}
python_test() {
cd "${BUILD_DIR}/install$(python_get_sitedir)" || die
"${EPYTHON}" tables/tests/test_all.py -v || die
}
python_install_all() {
distutils-r1_python_install_all
if use examples; then
dodoc -r contrib examples
docompress -x /usr/share/doc/${PF}/{contrib,examples}
fi
}