Github messages for voidlinux
 help / color / mirror / Atom feed
From: knightcole <knightcole@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] blender: update to 4.3.2
Date: Wed, 08 Jan 2025 04:43:46 +0100	[thread overview]
Message-ID: <20250108034346.E019621E15@inbox.vuxu.org> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-53676@inbox.vuxu.org>

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

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

https://github.com/knightcole/void-packages blender-4.3.2
https://github.com/void-linux/void-packages/pull/53676

blender: update to 4.3.2
<!-- 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 [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)

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

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

From dffe7fe64b26527c49b34a587d1d777bfbbcbc20 Mon Sep 17 00:00:00 2001
From: KnightCole <knightcole@protonmail.com>
Date: Wed, 25 Dec 2024 00:04:41 -0500
Subject: [PATCH] blender: update to 4.3.2

---
 srcpkgs/blender/patches/0001-musl-fixes.patch | 15 +++++++--------
 srcpkgs/blender/template                      |  9 ++++++---
 2 files changed, 13 insertions(+), 11 deletions(-)

diff --git a/srcpkgs/blender/patches/0001-musl-fixes.patch b/srcpkgs/blender/patches/0001-musl-fixes.patch
index 847f369cb304bb..ac6382748f4076 100644
--- a/srcpkgs/blender/patches/0001-musl-fixes.patch
+++ b/srcpkgs/blender/patches/0001-musl-fixes.patch
@@ -11,14 +11,13 @@ diff --git a/extern/glog/src/config_linux.h b/extern/glog/src/config_linux.h
 index b3a3325..946095a 100644
 --- a/extern/glog/src/config_linux.h
 +++ b/extern/glog/src/config_linux.h
-@@ -14,7 +14,6 @@
+@@ -14,7 +14,9 @@
  #define HAVE_DLFCN_H
- 
+
  /* Define to 1 if you have the <execinfo.h> header file. */
--#define HAVE_EXECINFO_H
- 
- /* Define if you have the `fcntl' function */
- #define HAVE_FCNTL
--- 
-2.47.0
++#ifdef __GLIBC__
+ #define HAVE_EXECINFO_H
++#endif
 
+ /* Define if you have the `fcntl' function */
+ #define HAVE_FCNTL
\ No newline at end of file
diff --git a/srcpkgs/blender/template b/srcpkgs/blender/template
index 8aec56d4083906..1e5605afa003df 100644
--- a/srcpkgs/blender/template
+++ b/srcpkgs/blender/template
@@ -1,6 +1,6 @@
 # Template file for 'blender'
 pkgname=blender
-version=4.3.1
+version=4.3.2
 revision=1
 archs="x86_64* ppc64*"
 build_style="cmake"
@@ -31,7 +31,7 @@ maintainer="Enno Boland <gottox@voidlinux.org>"
 license="GPL-3.0-or-later"
 homepage="https://www.blender.org"
 distfiles="https://download.blender.org/source/blender-${version}.tar.xz"
-checksum=81bce671a7eb80d6880b728e042f4a4f65e1c4ccca86429a21615b45f7aef2e9
+checksum=c8d6ad4e32751431e0fafaf4f3184b70622297ab0b0c6e5a9fa134f72bd696d8
 python_version=3
 LDFLAGS="-Wl,-z,stack-size=2097152"
 # Blender tests are executed against a system installation of blender. This
@@ -39,7 +39,10 @@ LDFLAGS="-Wl,-z,stack-size=2097152"
 make_check=no
 
 if [ "$XBPS_TARGET_LIBC" = musl ]; then
-	configure_args+=" -DWITH_LZMA=OFF"
+	CFLAGS+=" -DZ7_AFFINITY_DISABLE"
+	CXXFLAGS+=" -DZ7_AFFINITY_DISABLE"
+	makedepends+=" libexecinfo-devel"
+	LDFLAGS+=" -lexecinfo"
 else
 	makedepends+=" jemalloc-devel"
 fi

  parent reply	other threads:[~2025-01-08  3:43 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-12-25  5:05 [PR PATCH] " knightcole
2024-12-26  5:59 ` classabbyamp
2024-12-26  5:59 ` classabbyamp
2024-12-26  5:59 ` classabbyamp
2024-12-26 18:10 ` [PR PATCH] [Updated] " knightcole
2024-12-26 18:10 ` knightcole
2024-12-26 19:31 ` [PR PATCH] [Updated] " knightcole
2024-12-26 19:58 ` classabbyamp
2024-12-30  0:42 ` [PR PATCH] [Updated] " knightcole
2024-12-30  0:52 ` knightcole
2025-01-02 18:50 ` ahesford
2025-01-05 13:35 ` hiltjo
2025-01-08  3:24 ` [PR PATCH] [Updated] " knightcole
2025-01-08  3:34 ` knightcole
2025-01-08  3:38 ` knightcole
2025-01-08  3:43 ` knightcole [this message]
2025-01-08  4:43 ` knightcole
2025-01-10  9:52 ` CaioFrancisco
2025-01-11 23:59 ` knightcole
2025-02-09 21:35 ` [PR PATCH] [Closed]: " knightcole

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=20250108034346.E019621E15@inbox.vuxu.org \
    --to=knightcole@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).