From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 finch.gentoo.org (Postfix) with ESMTPS id 3B9861581F0 for ; Wed, 22 Jan 2025 13:34:38 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 1D3A7340C53 for ; Wed, 22 Jan 2025 13:34:38 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 00D3611042C; Wed, 22 Jan 2025 13:34:37 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id E7F4411042C for ; Wed, 22 Jan 2025 13:34:36 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7D36E340BDE for ; Wed, 22 Jan 2025 13:34:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 95A521263 for ; Wed, 22 Jan 2025 13:34:34 +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: <1737552733.ed4eb2cf255c1d8f625581aeec23545adbdecd4f.alexander@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/awkward-cpp/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/awkward-cpp/awkward-cpp-43.ebuild X-VCS-Directories: dev-python/awkward-cpp/ X-VCS-Committer: alexander X-VCS-Committer-Name: Alexander Puck Neuwirth X-VCS-Revision: ed4eb2cf255c1d8f625581aeec23545adbdecd4f X-VCS-Branch: master Date: Wed, 22 Jan 2025 13:34:34 +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: 12cdf3f3-84d3-40d3-968a-108c03c449e1 X-Archives-Hash: 5d5103c490c3bd21f237380d9497b62e commit: ed4eb2cf255c1d8f625581aeec23545adbdecd4f Author: Alexander Puck Neuwirth neuwirth-informatik de> AuthorDate: Wed Jan 22 13:32:13 2025 +0000 Commit: Alexander Puck Neuwirth neuwirth-informatik de> CommitDate: Wed Jan 22 13:32:13 2025 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=ed4eb2cf dev-python/awkward-cpp: add 43 Signed-off-by: Alexander Puck Neuwirth neuwirth-informatik.de> dev-python/awkward-cpp/awkward-cpp-43.ebuild | 33 ++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/dev-python/awkward-cpp/awkward-cpp-43.ebuild b/dev-python/awkward-cpp/awkward-cpp-43.ebuild new file mode 100644 index 000000000..2477e97b0 --- /dev/null +++ b/dev-python/awkward-cpp/awkward-cpp-43.ebuild @@ -0,0 +1,33 @@ +EAPI=8 + +PYTHON_COMPAT=( python3_{10..13} ) + +CMAKE_MAKEFILE_GENERATOR="emake" +DISTUTILS_USE_PEP517=scikit-build-core +DISTUTILS_EXT=1 + +inherit pypi distutils-r1 + +DESCRIPTION="awkward-cpp bindings for Python" +HOMEPAGE="https://github.com/scikit-hep/awkward/" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND=" + >=dev-python/numpy-1.18.0[${PYTHON_USEDEP}] +" +RDEPEND="${DEPEND}" +BDEPEND=" + >=dev-python/scikit-build-core-0.10[${PYTHON_USEDEP}] + dev-python/pybind11[${PYTHON_USEDEP}] +" + +src_prepare() { + default + # https://github.com/scikit-build/scikit-build-core/issues/912 + sed -i -e '/scikit-build-core/s:0\.10:0.8:' pyproject.toml || die +} + +distutils_enable_tests pytest