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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9412115813A for ; Mon, 20 Jan 2025 13:40:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 182DAE07EA; Mon, 20 Jan 2025 13:40:09 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EE430E07EA for ; Mon, 20 Jan 2025 13:40:08 +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 EBB7D34120D for ; Mon, 20 Jan 2025 13:40:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1B27422FF for ; Mon, 20 Jan 2025 13:40:06 +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: <1737380033.b175b16607dd3f024b5dba360b1f022128b1b35e.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.6.0.ebuild X-VCS-Directories: dev-python/vector/ X-VCS-Committer: alexander X-VCS-Committer-Name: Alexander Puck Neuwirth X-VCS-Revision: b175b16607dd3f024b5dba360b1f022128b1b35e X-VCS-Branch: master Date: Mon, 20 Jan 2025 13:40:06 +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: da0fc354-3748-4a5b-895c-9d0e43557cf2 X-Archives-Hash: 621f9f2fbda32454af40da2df0b19f41 commit: b175b16607dd3f024b5dba360b1f022128b1b35e Author: Alexander Puck Neuwirth neuwirth-informatik de> AuthorDate: Mon Jan 20 13:33:53 2025 +0000 Commit: Alexander Puck Neuwirth neuwirth-informatik de> CommitDate: Mon Jan 20 13:33:53 2025 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=b175b166 dev-python/vector: add 1.6.0 Signed-off-by: Alexander Puck Neuwirth neuwirth-informatik.de> dev-python/vector/vector-1.6.0.ebuild | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/dev-python/vector/vector-1.6.0.ebuild b/dev-python/vector/vector-1.6.0.ebuild new file mode 100644 index 000000000..b9c06d278 --- /dev/null +++ b/dev-python/vector/vector-1.6.0.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 +}