From 060eec373447a94fbdaf733f0b847553e5e7b758 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Thu, 14 Nov 2024 04:42:49 +0100 Subject: [PATCH] dev-python/gsd: Bump to 3.4.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- dev-python/gsd/Manifest | 1 + dev-python/gsd/gsd-3.4.2.ebuild | 40 +++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 dev-python/gsd/gsd-3.4.2.ebuild diff --git a/dev-python/gsd/Manifest b/dev-python/gsd/Manifest index 16ec35cc6ae6a..d0c3a42d08196 100644 --- a/dev-python/gsd/Manifest +++ b/dev-python/gsd/Manifest @@ -1 +1,2 @@ DIST gsd-3.4.1.tar.gz 109640 BLAKE2B 92584927ed01808b8c116ef3fe446336f4adc9fb8eaa26ca0c8739493dd92f7fb0de39b4fda59a19e12051630837f4e5e40d10335adc84a89690acda50c26bea SHA512 802340f98f40dee8d583e92ab0043c88c822f00d9de3e83233916b0c6686dc973cddd569e9de01d515fe339b11c6651ecbfd551f5376d01922e71d217d9e74ba +DIST gsd-3.4.2.tar.gz 109691 BLAKE2B 160b53d465607c8248ee9b2cecf1c2aafb55a89317e294b613615c1f12e19988841d024823ec27ad7b6c9003a1be26aa9941f509467eded87fb72baeaf229bce SHA512 e1e8310873c81473a6e718295da47b435a765428f42b885c577ef9d509bae76f54c9e99ee9d5f74dd5cf0848817e27dadc21e9717004065b63ed1f6cf6853cfb diff --git a/dev-python/gsd/gsd-3.4.2.ebuild b/dev-python/gsd/gsd-3.4.2.ebuild new file mode 100644 index 0000000000000..008c9a922b917 --- /dev/null +++ b/dev-python/gsd/gsd-3.4.2.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_EXT=1 +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..13} ) + +inherit distutils-r1 + +DESCRIPTION="GSD - file format specification and a library to read and write it" +HOMEPAGE=" + https://github.com/glotzerlab/gsd/ + https://pypi.org/project/gsd/ +" +SRC_URI=" + https://github.com/glotzerlab/gsd/releases/download/v${PV}/${P}.tar.gz +" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND=" + dev-python/numpy[${PYTHON_USEDEP}] +" +RDEPEND=" + ${DEPEND} +" +BDEPEND=" + dev-python/cython[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest + +python_test() { + cd "${T}" || die + epytest --pyargs gsd +}