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 21D3B1580E0 for ; Mon, 27 Jan 2025 14:07: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 03C963434FD for ; Mon, 27 Jan 2025 14:07:38 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 20CB911046F; Mon, 27 Jan 2025 14:07:34 +0000 (UTC) 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 bobolink.gentoo.org (Postfix) with ESMTPS id 149CB11046F for ; Mon, 27 Jan 2025 14:07:33 +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 6D672343471 for ; Mon, 27 Jan 2025 14:07:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 03976190B for ; Mon, 27 Jan 2025 14:07:32 +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: <1737986613.72ddcfd53bf46c158c602d2e314bbe715ceef1a7.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-44.ebuild X-VCS-Directories: dev-python/awkward-cpp/ X-VCS-Committer: alexander X-VCS-Committer-Name: Alexander Puck Neuwirth X-VCS-Revision: 72ddcfd53bf46c158c602d2e314bbe715ceef1a7 X-VCS-Branch: master Date: Mon, 27 Jan 2025 14:07:32 +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: ef9399f3-22f3-43cc-b920-323ce0cc1974 X-Archives-Hash: e7acd91c4363195a0fa09158d0a25a0e commit: 72ddcfd53bf46c158c602d2e314bbe715ceef1a7 Author: Alexander Puck Neuwirth neuwirth-informatik de> AuthorDate: Mon Jan 27 14:03:33 2025 +0000 Commit: Alexander Puck Neuwirth neuwirth-informatik de> CommitDate: Mon Jan 27 14:03:33 2025 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=72ddcfd5 dev-python/awkward-cpp: add 44 Signed-off-by: Alexander Puck Neuwirth neuwirth-informatik.de> dev-python/awkward-cpp/awkward-cpp-44.ebuild | 33 ++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/dev-python/awkward-cpp/awkward-cpp-44.ebuild b/dev-python/awkward-cpp/awkward-cpp-44.ebuild new file mode 100644 index 000000000..2477e97b0 --- /dev/null +++ b/dev-python/awkward-cpp/awkward-cpp-44.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