python3-trimesh: update to 3.10.7.

This commit is contained in:
Karl Nilsson 2021-12-14 14:45:51 -05:00 committed by Echo
parent 6211084fe2
commit 12cb61ce2d

View file

@ -1,6 +1,6 @@
# Template file for 'python3-trimesh'
pkgname=python3-trimesh
version=3.9.34
version=3.10.7
revision=1
wrksrc="trimesh-${version}"
build_style=python3-module
@ -10,14 +10,13 @@ depends="python3-numpy python3-scipy python3-networkx python3-lxml
python3-pyglet python3-shapely python3-rtree python3-Pillow python3-svg.path
python3-jsonschema python3-psutil python3-chardet python3-sympy python3-msgpack
python3-pycollada python3-requests"
# unit tests fail on x86 https://github.com/mikedh/trimesh/issues/690
checkdepends="$depends python3-pytest"
short_desc="Python3 library for loading and using triangular meshes"
maintainer="Karl Nilsson <karl.robert.nilsson@gmail.com>"
license="MIT"
homepage="https://trimsh.org/"
distfiles="https://github.com/mikedh/trimesh/archive/${version}.tar.gz"
checksum=713a959be0f93c049d0735f573b814cfa704c5bbfaf0c607facb61ede5a8ab2e
checksum=e98fd2dff632729fc6fb963653b91d9f4a5a6a9a1f79493dd885e3e4d1f9c4da
post_install() {
vlicense LICENSE.md
@ -29,3 +28,8 @@ do_check() {
vsed -i 's/coveralls//' setup.py
python3 -m pytest
}
# disable tests for i686
if [ "$XBPS_WORDSIZE" -eq "32" ]; then
make_check=no # https://github.com/mikedh/trimesh/issues/690;
fi