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 (4096 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 39A60158042 for ; Tue, 22 Oct 2024 08:34:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 550BFE0815; Tue, 22 Oct 2024 08:34:30 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 3F867E0815 for ; Tue, 22 Oct 2024 08:34:30 +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 5B03A342FB0 for ; Tue, 22 Oct 2024 08:34:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BFE291F41 for ; Tue, 22 Oct 2024 08:34:27 +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: <1729585933.e648b39e3708fc70539270e5be799c2296c34381.alexander@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/vector/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/vector/vector-1.5.2.ebuild X-VCS-Directories: dev-python/vector/ X-VCS-Committer: alexander X-VCS-Committer-Name: Alexander Puck Neuwirth X-VCS-Revision: e648b39e3708fc70539270e5be799c2296c34381 X-VCS-Branch: master Date: Tue, 22 Oct 2024 08:34:27 +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: f8e403fb-9b66-4225-ada2-83f866ed779f X-Archives-Hash: 5095c394ea9027e72f91f82ea9a6232b commit: e648b39e3708fc70539270e5be799c2296c34381 Author: Alexander Puck Neuwirth neuwirth-informatik de> AuthorDate: Sat Oct 19 10:09:40 2024 +0000 Commit: Alexander Puck Neuwirth neuwirth-informatik de> CommitDate: Tue Oct 22 08:32:13 2024 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=e648b39e dev-python/vector: add 1.5.2 Signed-off-by: Alexander Puck Neuwirth neuwirth-informatik.de> dev-python/vector/vector-1.5.2.ebuild | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/dev-python/vector/vector-1.5.2.ebuild b/dev-python/vector/vector-1.5.2.ebuild new file mode 100644 index 000000000..b9c06d278 --- /dev/null +++ b/dev-python/vector/vector-1.5.2.ebuild @@ -0,0 +1,33 @@ +EAPI=8 + +PYTHON_COMPAT=( python3_{10..13} ) +DISTUTILS_USE_PEP517=hatchling +inherit distutils-r1 pypi optfeature + +DESCRIPTION="Vector classes and utilities" +HOMEPAGE=" + https://github.com/scikit-hep/vector + https://vector.readthedocs.io/ + https://doi.org/10.5281/zenodo.7054478 +" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" +# tests need numba +RESTRICT="test" + +RDEPEND=" + >=dev-python/numpy-1.13.3[${PYTHON_USEDEP}] + >=dev-python/packaging-19[${PYTHON_USEDEP}] +" +BDEPEND=" + dev-python/hatch-vcs[${PYTHON_USEDEP}] +" + +export SETUPTOOLS_SCM_PRETEND_VERSION=${PV} + +pkg_postinst() { + optfeature "awkward array support" dev-python/awkward + optfeature "sympy support" dev-python/sympy +}