From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4A8CA15802E for ; Thu, 27 Jun 2024 15:49:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 90E35E2A68; Thu, 27 Jun 2024 15:49:48 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 23CE0E2A68 for ; Thu, 27 Jun 2024 15:49:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1AD8C3406C2 for ; Thu, 27 Jun 2024 15:49:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A2DDE1D6B for ; Thu, 27 Jun 2024 15:49:45 +0000 (UTC) From: "Alexander Puck Neuwirth" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexander Puck Neuwirth" Message-ID: <1719503333.fe4938466d4ed8d54fb1b4501220b78feec057e4.alexander@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/awkward/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/awkward/awkward-2.6.6.ebuild X-VCS-Directories: dev-python/awkward/ X-VCS-Committer: alexander X-VCS-Committer-Name: Alexander Puck Neuwirth X-VCS-Revision: fe4938466d4ed8d54fb1b4501220b78feec057e4 X-VCS-Branch: master Date: Thu, 27 Jun 2024 15:49:45 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: cb439693-08f1-4311-bf58-2595e6c11058 X-Archives-Hash: 790b897d91895cdac53b8ada00abf442 commit: fe4938466d4ed8d54fb1b4501220b78feec057e4 Author: Alexander Puck Neuwirth neuwirth-informatik de> AuthorDate: Thu Jun 27 15:48:53 2024 +0000 Commit: Alexander Puck Neuwirth neuwirth-informatik de> CommitDate: Thu Jun 27 15:48:53 2024 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=fe493846 dev-python/awkward: add 2.6.6 Signed-off-by: Alexander Puck Neuwirth neuwirth-informatik.de> dev-python/awkward/awkward-2.6.6.ebuild | 44 +++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/dev-python/awkward/awkward-2.6.6.ebuild b/dev-python/awkward/awkward-2.6.6.ebuild new file mode 100644 index 000000000..bd393bcd2 --- /dev/null +++ b/dev-python/awkward/awkward-2.6.6.ebuild @@ -0,0 +1,44 @@ +EAPI=8 + +PYTHON_COMPAT=( python3_{10..12} ) +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/numpy-1.18.0[${PYTHON_USEDEP}] + ~dev-python/awkward-cpp-35[${PYTHON_USEDEP}] + dev-python/fsspec[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + >=dev-python/importlib-metadata-4.13.0[${PYTHON_USEDEP}] + ' python3_{10..11}) + $(python_gen_cond_dep ' + >=dev-python/typing-extensions-4.1.0[${PYTHON_USEDEP}] + ' python3_10) +" +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/ +) + +distutils_enable_tests pytest