commit: d61a287383289cb772f969dd7c1a9e7783f814fc
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 19 05:33:20 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Oct 19 06:03:47 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d61a2873
dev-python/gsd: Bump to 3.4.0
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/gsd/Manifest | 1 +
dev-python/gsd/gsd-3.4.0.ebuild | 40 ++++++++++++++++++++++++++++++++++++++++
2 files changed, 41 insertions(+)
diff --git a/dev-python/gsd/Manifest b/dev-python/gsd/Manifest
index 3707fa6a37e9..4a2dca1ddb4f 100644
--- a/dev-python/gsd/Manifest
+++ b/dev-python/gsd/Manifest
@@ -1 +1,2 @@
DIST gsd-3.3.2.tar.gz 108492 BLAKE2B
cc585c4de8462891fbedd5a15bbfa5c531ee31cf2082b32600098d7ef8291a7067a195338384e4c42d0f64536d3feb5dc98b5099dc2bfe0ffd328447fc54389b
SHA512
1ba704e5cbee3a1b9c2f8ac1b4f6d1afb9819d66b10b069965e25ad6b30f3143cdc721be204a4c34ecd0bf2ddc7eb65a1421f754cafdcc17fac2edad4fc58911
+DIST gsd-3.4.0.tar.gz 109605 BLAKE2B
ae0b107a143fefe738a08928874eb007d4f03a13a53c8cdb542b3303f96583ddb5982e49bf797658547735679c98cebcb33c77e6f26273b505c9032fb2e0c873
SHA512
7176d546636488e402a76b02273e6dec0debdcad487b4b54bdeddbaf0a41148e031f4fd6c4bde974035c61b65d7877864318456969a3ee403ff8a0597af13e38
diff --git a/dev-python/gsd/gsd-3.4.0.ebuild b/dev-python/gsd/gsd-3.4.0.ebuild
new file mode 100644
index 000000000000..b809f912dc06
--- /dev/null
+++ b/dev-python/gsd/gsd-3.4.0.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
+}