commit: 9e906b644ac876f8c4dc0d51f4ef2b4564f3e011
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 22 03:09:04 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Oct 22 03:09:04 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e906b64
dev-python/gsd: Bump to 3.4.1
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/gsd/Manifest | 1 +
dev-python/gsd/gsd-3.4.1.ebuild | 40 ++++++++++++++++++++++++++++++++++++++++
2 files changed, 41 insertions(+)
diff --git a/dev-python/gsd/Manifest b/dev-python/gsd/Manifest
index 13ee28415207..8acbde51d218 100644
--- a/dev-python/gsd/Manifest
+++ b/dev-python/gsd/Manifest
@@ -1 +1,2 @@
DIST gsd-3.4.0.tar.gz 109605 BLAKE2B
ae0b107a143fefe738a08928874eb007d4f03a13a53c8cdb542b3303f96583ddb5982e49bf797658547735679c98cebcb33c77e6f26273b505c9032fb2e0c873
SHA512
7176d546636488e402a76b02273e6dec0debdcad487b4b54bdeddbaf0a41148e031f4fd6c4bde974035c61b65d7877864318456969a3ee403ff8a0597af13e38
+DIST gsd-3.4.1.tar.gz 109640 BLAKE2B
92584927ed01808b8c116ef3fe446336f4adc9fb8eaa26ca0c8739493dd92f7fb0de39b4fda59a19e12051630837f4e5e40d10335adc84a89690acda50c26bea
SHA512
802340f98f40dee8d583e92ab0043c88c822f00d9de3e83233916b0c6686dc973cddd569e9de01d515fe339b11c6651ecbfd551f5376d01922e71d217d9e74ba
diff --git a/dev-python/gsd/gsd-3.4.1.ebuild b/dev-python/gsd/gsd-3.4.1.ebuild
new file mode 100644
index 000000000000..b809f912dc06
--- /dev/null
+++ b/dev-python/gsd/gsd-3.4.1.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-2.0.0[${PYTHON_USEDEP}]
+"
+RDEPEND="
+ ${DEPEND}
+"
+BDEPEND="
+ dev-python/cython[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+ cd "${T}" || die
+ epytest --pyargs gsd
+}