Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/meshio/
Date: Thu, 24 Feb 2022 22:00:14
Message-Id: 1645740002.1a3052c631a979d23c9fb91ce367a3b1c498b797.mgorny@gentoo
1 commit: 1a3052c631a979d23c9fb91ce367a3b1c498b797
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 24 21:40:21 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 24 22:00:02 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a3052c6
7
8 dev-python/meshio: Bump to 5.3.2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/meshio/Manifest | 1 +
13 dev-python/meshio/meshio-5.3.2.ebuild | 30 ++++++++++++++++++++++++++++++
14 2 files changed, 31 insertions(+)
15
16 diff --git a/dev-python/meshio/Manifest b/dev-python/meshio/Manifest
17 index ad8706dcafa4..739f12db6010 100644
18 --- a/dev-python/meshio/Manifest
19 +++ b/dev-python/meshio/Manifest
20 @@ -1 +1,2 @@
21 DIST meshio-5.3.0.tar.gz 491246 BLAKE2B 0fd867c2ddabb29cd88dfdea1b5ef04ebf8d63ed957df5df7c426a00f0de409dcd556de4530dec91e71126671e7048af071f734e3d1c375fc67de0403edd7f37 SHA512 2304c75b74093120655cbfae6ec7b770de6bfdbe677c84e997449df91d7d3fd6b61c946d00bf57eba99e5812a08a032c55bf2d4c81316b356016d818b329f795
22 +DIST meshio-5.3.2.tar.gz 491651 BLAKE2B 537f76f7b69a64777b631344da4b6a3e1cee33be1df05726406aceeddb68ed6589abb210f30cb74dbd899688a417ec9140fa6d8a5f7eb94ce5d85e99f315a731 SHA512 91a5d6064b69b8e631a60c613e0b06e784b475c296cc9572d4f9111dac932b0e75cf7ef1e6849329354a9708de1d32bafc1b297297d94a5554962f6807123921
23
24 diff --git a/dev-python/meshio/meshio-5.3.2.ebuild b/dev-python/meshio/meshio-5.3.2.ebuild
25 new file mode 100644
26 index 000000000000..8a22053a774c
27 --- /dev/null
28 +++ b/dev-python/meshio/meshio-5.3.2.ebuild
29 @@ -0,0 +1,30 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..10} )
36 +DISTUTILS_USE_PEP517=setuptools
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Input/output for many mesh formats"
41 +HOMEPAGE="https://github.com/nschloe/meshio"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~amd64"
47 +IUSE="hdf5 netcdf"
48 +
49 +RDEPEND="
50 + dev-python/numpy[${PYTHON_USEDEP}]
51 + dev-python/rich[${PYTHON_USEDEP}]
52 + hdf5? ( dev-python/h5py[${PYTHON_USEDEP}] )
53 + netcdf? ( dev-python/netcdf4-python[${PYTHON_USEDEP}] )
54 +"
55 +BDEPEND="
56 + test? ( dev-python/h5py[${PYTHON_USEDEP}] )
57 +"
58 +
59 +distutils_enable_tests pytest