Github messages for voidlinux
 help / color / mirror / Atom feed
From: karl-nilsson <karl-nilsson@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] Trimesh: update to 3.10.7
Date: Sat, 02 Apr 2022 22:20:53 +0200	[thread overview]
Message-ID: <20220402202053.Gip8OWyFmarxTZ0thFf8lRyKNLFtx4SBebnskIxf8cM@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-36406@inbox.vuxu.org>

[-- Attachment #1: Type: text/plain, Size: 899 bytes --]

There is an updated pull request by karl-nilsson against master on the void-packages repository

https://github.com/karl-nilsson/void-packages trimesh
https://github.com/void-linux/void-packages/pull/36406

Trimesh: update to 3.10.7
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

#### Local build testing
- I built this PR locally for my native architecture, x64_glibc

This PR also updates pycollada

The unit tests throw a few deprecation warnings from the dependencies (numpy, scipy, shapely)

A patch file from https://github.com/void-linux/void-packages/pull/36406.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-trimesh-36406.patch --]
[-- Type: text/x-diff, Size: 2950 bytes --]

From 2d4329dc8247039b17f2f0a3aee21fab1238f3d5 Mon Sep 17 00:00:00 2001
From: Karl Nilsson <karl.robert.nilsson@gmail.com>
Date: Tue, 29 Mar 2022 13:16:51 -0400
Subject: [PATCH 1/2] python3-pycollada: update to 0.7.2.

---
 srcpkgs/python3-pycollada/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python3-pycollada/template b/srcpkgs/python3-pycollada/template
index 7aae12006353..89e7c15a05b1 100644
--- a/srcpkgs/python3-pycollada/template
+++ b/srcpkgs/python3-pycollada/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-pycollada'
 pkgname=python3-pycollada
-version=0.7.1
-revision=3
+version=0.7.2
+revision=1
 wrksrc="pycollada-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
@@ -12,7 +12,7 @@ maintainer="Karl Nilsson <karl.robert.nilsson@gmail.com>"
 license="BSD-3-Clause"
 homepage="https://pycollada.readthedocs.io/en/latest/"
 distfiles="https://github.com/pycollada/pycollada/archive/v${version}.tar.gz"
-checksum=b0b8e1fd17e3e5a7c1befcb5ec4fa0ead1318c5ca340bb930f62f9809fbce8a1
+checksum=e3c29857a65b3dd9c0375c1074195195fc3dada95d6b5c78d246b005f2e85c93
 
 post_install() {
 	vlicense COPYING

From d9cc06b62aae99c994f0b98dd8187b2de51402ae Mon Sep 17 00:00:00 2001
From: Karl Nilsson <karl.robert.nilsson@gmail.com>
Date: Tue, 14 Dec 2021 14:45:51 -0500
Subject: [PATCH 2/2] python3-trimesh: update to 3.10.7.

---
 srcpkgs/python3-trimesh/template | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python3-trimesh/template b/srcpkgs/python3-trimesh/template
index e716da771676..e51b6eb62f9d 100644
--- a/srcpkgs/python3-trimesh/template
+++ b/srcpkgs/python3-trimesh/template
@@ -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

  parent reply	other threads:[~2022-04-02 20:20 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-03-29 17:54 [PR PATCH] " karl-nilsson
2022-03-29 18:43 ` [PR PATCH] [Updated] " karl-nilsson
2022-04-02 19:23 ` karl-nilsson
2022-04-02 19:29 ` karl-nilsson
2022-04-02 20:20 ` karl-nilsson [this message]
2022-04-02 21:04 ` [PR PATCH] [Merged]: " paper42

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220402202053.Gip8OWyFmarxTZ0thFf8lRyKNLFtx4SBebnskIxf8cM@z \
    --to=karl-nilsson@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).