commit: 2c97799a8af0666076deaa091862cf6683df54b2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Tue Feb 10 07:20:32 2026 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Tue Feb 10 07:36:21 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c97799a
dev-python/awkward: Bump to 2.9.0 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-python/awkward/Manifest | 2 ++ dev-python/awkward/awkward-2.9.0.ebuild | 56 +++++++++++++++++++++++++++++++++ 2 files changed, 58 insertions(+) diff --git a/dev-python/awkward/Manifest b/dev-python/awkward/Manifest index fb40db551f6b..9cf6fec5714b 100644 --- a/dev-python/awkward/Manifest +++ b/dev-python/awkward/Manifest @@ -1,2 +1,4 @@ DIST awkward-2.8.12.tar.gz 6284797 BLAKE2B e855886447c4ada79e4c11402d44b4a645c66d69359520d611173c886bc1dac84547eab1ec08feafa010cf86eacd29ad17897bbbb6d99af6f7293a0c0dee5cda SHA512 b6eb4370227e2ce2653adde113cc14a92af66351af352e14161e6380c4c5b4faf6e3c366c15e967b124dbc4b4367c41c099971f83a03b69d78d143062a4ac5e3 DIST awkward-2.8.12.tar.gz.provenance 9488 BLAKE2B 23349e92197a22146a483ab042f07949dadee31f672526d6010ff78e2baad4cbe2f50fa4fd1d38ee8d6e627acc4e3a46d9adf5c22e5db0934fea5a9991cd8308 SHA512 7a21812ba97b901972e675a69fc1ddf17c65183c9f72328098aa9b83e189f0de3146daab1e7c7781cca306950eea20ccd5fe77b761435f88ab015732d0c16250 +DIST awkward-2.9.0.tar.gz 6287845 BLAKE2B b8a329b3b3a89b8785122d95c915a9ddf48371236991434622e5d22bd23871c2e9cf3be7b59d7c86af9f42462e8e37a0345271dfa32a848309efe61e9d53d667 SHA512 a8292b9d149016030b80eb159cb634572ad337a1224f9725bbe51c23a1a757a9e3ee2438e33bc0dc343d0758afc91fa3e6c72f6382aa2567b5f0856d42bfe8be +DIST awkward-2.9.0.tar.gz.provenance 9327 BLAKE2B 9a6aff4f547024fb9c3de4a4608def000bb093bbb40ac8e8229da8edceecd466b9ea6ac8cda9f68b6a9c91243227c2eb03968ae8dc4423dcae533a61cc3e5079 SHA512 51ec3f09b3e9607701a2fbd5f85825d7c0f9d3bb835093c023110ea8d50f41196cf2037cab4102f171a05e3bf14be4ed8764674645a3647908d6f318f4847b40 diff --git a/dev-python/awkward/awkward-2.9.0.ebuild b/dev-python/awkward/awkward-2.9.0.ebuild new file mode 100644 index 000000000000..525e99a71a2d --- /dev/null +++ b/dev-python/awkward/awkward-2.9.0.ebuild @@ -0,0 +1,56 @@ +# Copyright 2025-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=hatchling +PYPI_VERIFY_REPO=https://github.com/scikit-hep/awkward +PYTHON_COMPAT=( python3_{11..14} ) + +inherit distutils-r1 pypi + +DESCRIPTION="Manipulate JSON-like data with NumPy-like idioms" +HOMEPAGE=" + https://github.com/scikit-hep/awkward/ + https://pypi.org/project/awkward/ + https://doi.org/10.5281/zenodo.4341376 +" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + ~dev-python/awkward-cpp-52[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + >=dev-python/importlib-metadata-4.13.0[${PYTHON_USEDEP}] + ' 3.11) + >=dev-python/numpy-1.21.3[${PYTHON_USEDEP}] + dev-python/packaging[${PYTHON_USEDEP}] + >=dev-python/fsspec-2022.11.0[${PYTHON_USEDEP}] +" +BDEPEND=" + dev-python/hatch-vcs[${PYTHON_USEDEP}] + dev-python/hatch-fancy-pypi-readme[${PYTHON_USEDEP}] + dev-python/packaging[${PYTHON_USEDEP}] + test? ( + dev-libs/apache-arrow[zstd] + dev-python/pyarrow[${PYTHON_USEDEP}] + dev-python/numexpr[${PYTHON_USEDEP}] + dev-python/pandas[${PYTHON_USEDEP}] + ) +" + #dev-python/numba[${PYTHON_USEDEP}] # needs numba from sci + +EPYTEST_IGNORE=( + # fails if just caffe2 but not pytorch is installed + tests/test_3259_to_torch_from_torch.py +) + +EPYTEST_PLUGINS=() +distutils_enable_tests pytest + +python_test() { + # CUDA tests require cupy + epytest tests +}
