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 CAB8515808B for ; Sat, 17 Feb 2024 17:20:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1310CE29A6; Sat, 17 Feb 2024 17:20:49 +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 E4971E29A6 for ; Sat, 17 Feb 2024 17:20: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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AED1033BF3C for ; Sat, 17 Feb 2024 17:20:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DE9FA11CF for ; Sat, 17 Feb 2024 17:20:44 +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: <1708190421.7579c62f6059345520e175b41a0cad394db37c1f.alexander@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/vector/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/vector/metadata.xml dev-python/vector/vector-1.1.1.ebuild X-VCS-Directories: dev-python/vector/ X-VCS-Committer: alexander X-VCS-Committer-Name: Alexander Puck Neuwirth X-VCS-Revision: 7579c62f6059345520e175b41a0cad394db37c1f X-VCS-Branch: master Date: Sat, 17 Feb 2024 17:20:44 +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: ff352b07-99e6-4721-a803-6b4e3ff770ea X-Archives-Hash: fec01ca4bdad3d55b9000b2e8a031567 commit: 7579c62f6059345520e175b41a0cad394db37c1f Author: Alexander Puck Neuwirth neuwirth-informatik de> AuthorDate: Thu Feb 1 21:45:19 2024 +0000 Commit: Alexander Puck Neuwirth neuwirth-informatik de> CommitDate: Sat Feb 17 17:20:21 2024 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=7579c62f dev-python/vector: new package, add 1.1.1 Signed-off-by: Alexander Puck Neuwirth neuwirth-informatik.de> Co-authored-by: Andrew Ammerlaan gentoo.org> Closes: https://github.com/gentoo/sci/pull/1234 Signed-off-by: Alexander Puck Neuwirth neuwirth-informatik.de> dev-python/vector/metadata.xml | 19 +++++++++++++++++++ dev-python/vector/vector-1.1.1.ebuild | 20 ++++++++++++++++++++ 2 files changed, 39 insertions(+) diff --git a/dev-python/vector/metadata.xml b/dev-python/vector/metadata.xml new file mode 100644 index 000000000..b6aaa9af7 --- /dev/null +++ b/dev-python/vector/metadata.xml @@ -0,0 +1,19 @@ + + + + + sci@gentoo.org + Gentoo Science Project + + + alexander@neuwirth-informatik.de + Alexander Puck Neuwirth + + + Vector is a Python 3.8+ library (Python 3.6 and 3.7 supported till v0.9.0 and v1.0.0, respectively) for 2D, 3D, and Lorentz vectors, especially arrays of vectors, to solve common physics problems in a NumPy-like way. + + + vector + scikit-hep/vector + + diff --git a/dev-python/vector/vector-1.1.1.ebuild b/dev-python/vector/vector-1.1.1.ebuild new file mode 100644 index 000000000..936578e50 --- /dev/null +++ b/dev-python/vector/vector-1.1.1.ebuild @@ -0,0 +1,20 @@ +EAPI=8 + +PYTHON_COMPAT=( python3_{10..12} ) +DISTUTILS_USE_PEP517=hatchling +inherit distutils-r1 pypi + +DESCRIPTION="Vector classes and utilities" +HOMEPAGE="https://github.com/scikit-hep/vector" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + >=dev-python/numpy-1.13.3[${PYTHON_USEDEP}] + dev-python/hatch-vcs[${PYTHON_USEDEP}] +" +BDEPEND="${RDEPEND}" + +export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}