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/trimesh/
Date: Sat, 02 Jul 2022 04:47:15
Message-Id: 1656737207.fe84d2a44dc52702c1d275015e009da5099b64e9.mgorny@gentoo
1 commit: fe84d2a44dc52702c1d275015e009da5099b64e9
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 2 03:15:46 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 2 04:46:47 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe84d2a4
7
8 dev-python/trimesh: Bump to 3.12.7
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/trimesh/Manifest | 1 +
13 dev-python/trimesh/trimesh-3.12.7.ebuild | 65 ++++++++++++++++++++++++++++++++
14 2 files changed, 66 insertions(+)
15
16 diff --git a/dev-python/trimesh/Manifest b/dev-python/trimesh/Manifest
17 index 2ed7be8fe675..f468126de127 100644
18 --- a/dev-python/trimesh/Manifest
19 +++ b/dev-python/trimesh/Manifest
20 @@ -1,2 +1,3 @@
21 DIST trimesh-3.12.5.gh.tar.gz 10755276 BLAKE2B ced596c4182b085df8c59bc007977aebb94702edd364ed67ee0114376b235fe020bbeee130853e1e0fbabd1f1d0f6523faaf268ffba1b4c7c30f3f794b64e51b SHA512 d467bd6ceb5b567182ac80ea38374f28b85b9ab983edf98428e09c8f799c206d23e282c03c808227c92e2dcb37f3faabea8d5db74b8ac419265751bcbaa396e1
22 DIST trimesh-3.12.6.gh.tar.gz 10755102 BLAKE2B 69336781530f0195c71e65d67ba3362314ad39c3dd349e9b88174136d85b3f72c5e64c93a0ca64572c1595292e2b241bea6552c1e33671fea48bc0aa42f21d13 SHA512 2c6d64ba3307cb50148f345db0f6fbf8f94838ba2171698fad31b2d26205860afa98cc803ccf7264422ca3cad65cb8cddb0f55dfac45f430d012a4579d5c08de
23 +DIST trimesh-3.12.7.gh.tar.gz 10756892 BLAKE2B af1f40b5de1eb60ec3241d342b3ed99fc7dc5e906c71a7669578e539d7c45ab4b037038423efb324cc462dc34a8ac1d1a8134f6b775f1965f2512acd76a8af14 SHA512 35f8039e46f55a3b2e713249d66a658ef48eb8c4a0a6e196f34933fc28052ad0a73953cc4736377bb7b79606ea08b78b132bb9d709fc50da11b2e96aa0e231e6
24
25 diff --git a/dev-python/trimesh/trimesh-3.12.7.ebuild b/dev-python/trimesh/trimesh-3.12.7.ebuild
26 new file mode 100644
27 index 000000000000..3f0d690d3a99
28 --- /dev/null
29 +++ b/dev-python/trimesh/trimesh-3.12.7.ebuild
30 @@ -0,0 +1,65 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DISTUTILS_USE_PEP517=setuptools
37 +PYTHON_COMPAT=( python3_{8..10} )
38 +
39 +inherit distutils-r1 multiprocessing optfeature
40 +
41 +DESCRIPTION="Python library for loading and using triangular meshes"
42 +HOMEPAGE="
43 + https://trimsh.org/
44 + https://github.com/mikedh/trimesh/
45 + https://pypi.org/project/trimesh/
46 +"
47 +SRC_URI="
48 + https://github.com/mikedh/${PN}/archive/${PV}.tar.gz
49 + -> ${P}.gh.tar.gz
50 +"
51 +
52 +LICENSE="MIT"
53 +SLOT="0"
54 +KEYWORDS="~amd64 ~arm64 ~x86"
55 +
56 +RDEPEND="
57 + dev-python/chardet[${PYTHON_USEDEP}]
58 + dev-python/colorlog[${PYTHON_USEDEP}]
59 + dev-python/jsonschema[${PYTHON_USEDEP}]
60 + dev-python/lxml[${PYTHON_USEDEP}]
61 + dev-python/msgpack[${PYTHON_USEDEP}]
62 + dev-python/networkx[${PYTHON_USEDEP}]
63 + dev-python/numpy[${PYTHON_USEDEP}]
64 + dev-python/pillow[${PYTHON_USEDEP}]
65 + dev-python/pycollada[${PYTHON_USEDEP}]
66 + dev-python/pyglet[${PYTHON_USEDEP}]
67 + dev-python/requests[${PYTHON_USEDEP}]
68 + dev-python/scipy[${PYTHON_USEDEP}]
69 + dev-python/setuptools[${PYTHON_USEDEP}]
70 + dev-python/svg-path[${PYTHON_USEDEP}]
71 + dev-python/sympy[${PYTHON_USEDEP}]
72 + dev-python/xxhash[${PYTHON_USEDEP}]
73 + sci-libs/rtree[${PYTHON_USEDEP}]
74 + >=sci-libs/shapely-1.8.2[${PYTHON_USEDEP}]
75 +"
76 +BDEPEND="
77 + test? (
78 + dev-python/pytest-xdist[${PYTHON_USEDEP}]
79 + )
80 +"
81 +
82 +distutils_enable_tests pytest
83 +
84 +python_test() {
85 + epytest -n "$(makeopts_jobs)"
86 +}
87 +
88 +pkg_postinst() {
89 + optfeature_header "${PN} functionality can be extended by installing the following packages:"
90 + optfeature "making GUI applications with 3D stuff" dev-python/glooey
91 + optfeature "2D triangulations of polygons" dev-python/mapbox_earcut
92 + optfeature "loading a number of additional mesh formats" dev-python/meshio
93 + optfeature "figuring out how much memory we have" dev-python/psutil
94 + optfeature "marching cubes and other nice stuff" sci-libs/scikit-image
95 +}