commit: 24cb1ef661eb27fa74bfd3f7667fe78e932d58f9
Author: Alexander Puck Neuwirth <alexander <AT> neuwirth-informatik <DOT>
de>
AuthorDate: Sat Oct 19 11:15:48 2024 +0000
Commit: Alexander Puck Neuwirth <alexander <AT> neuwirth-informatik <DOT>
de>
CommitDate: Tue Oct 22 08:32:20 2024 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=24cb1ef6
dev-python/awkward: add 2.6.9
Signed-off-by: Alexander Puck Neuwirth <alexander <AT> neuwirth-informatik.de>
dev-python/awkward/awkward-2.6.9.ebuild | 46 +++++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)
diff --git a/dev-python/awkward/awkward-2.6.9.ebuild
b/dev-python/awkward/awkward-2.6.9.ebuild
new file mode 100644
index 000000000..854349168
--- /dev/null
+++ b/dev-python/awkward/awkward-2.6.9.ebuild
@@ -0,0 +1,46 @@
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..13} )
+DISTUTILS_USE_PEP517=hatchling
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+inherit distutils-r1 pypi
+
+DESCRIPTION="Manipulate JSON-like data with NumPy-like idioms."
+HOMEPAGE="https://github.com/scikit-hep/awkward"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+ ~dev-python/awkward-cpp-39[${PYTHON_USEDEP}]
+ $(python_gen_cond_dep '
+ >=dev-python/importlib-metadata-4.13.0[${PYTHON_USEDEP}]
+ ' python3_{10..11})
+ >=dev-python/numpy-1.18.0[${PYTHON_USEDEP}]
+ $(python_gen_cond_dep '
+ >=dev-python/typing-extensions-4.1.0[${PYTHON_USEDEP}]
+ ' python3_10)
+ >=dev-python/fsspec-2022.11.0[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ dev-python/packaging[${PYTHON_USEDEP}]
+ dev-python/hatch-vcs[${PYTHON_USEDEP}]
+ dev-python/hatch-fancy-pypi-readme[${PYTHON_USEDEP}]
+ test? (
+ dev-libs/apache-arrow[zstd]
+ dev-python/pyarrow[${PYTHON_USEDEP}]
+ dev-python/numexpr[${PYTHON_USEDEP}]
+ dev-python/pandas[${PYTHON_USEDEP}]
+ )
+"
+
+EPYTEST_IGNORE=(
+ tests-cuda/
+ tests-cuda-kernels/
+ tests/test_3259_to_torch_from_torch.py # fails if just caffe2 but not
pytorch is installed
+ tests/test_0119_numexpr_and_broadcast_arrays.py # no idea why it fails,
seems to be a numexpr error
+)
+
+distutils_enable_tests pytest