mirror of
https://github.com/void-linux/void-packages.git
synced 2025-08-03 11:22:56 +02:00
blender: update to 4.4.3.
Use WITH_DRACO=OFF to disable building the vendored draco library used by the gltf plugin, since it installs to shared.
This commit is contained in:
parent
e750c7ceee
commit
3c95afa760
5 changed files with 101 additions and 659 deletions
|
@ -1,28 +1,14 @@
|
|||
From af7161dfb4324002e27abef7c4f7a6151f26c34a Mon Sep 17 00:00:00 2001
|
||||
From 06a9a13b7b92ef8acfae0acbe5a9ea87a0d5c67e Mon Sep 17 00:00:00 2001
|
||||
From: Leon Marz <main@lmarz.org>
|
||||
Date: Wed, 27 Mar 2024 10:40:01 +0100
|
||||
Date: Tue, 18 Mar 2025 18:43:17 +0000
|
||||
Subject: [PATCH 2/2] fix includes
|
||||
|
||||
---
|
||||
source/blender/blenkernel/BKE_volume_enums.hh | 2 ++
|
||||
source/blender/blenlib/BLI_index_range.hh | 1 +
|
||||
2 files changed, 3 insertions(+)
|
||||
source/blender/blenlib/BLI_index_range.hh | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/source/blender/blenkernel/BKE_volume_enums.hh b/source/blender/blenkernel/BKE_volume_enums.hh
|
||||
index 3817b52..ebcfa44 100644
|
||||
--- a/source/blender/blenkernel/BKE_volume_enums.hh
|
||||
+++ b/source/blender/blenkernel/BKE_volume_enums.hh
|
||||
@@ -8,6 +8,8 @@
|
||||
* \ingroup bli
|
||||
*/
|
||||
|
||||
+#include <cstdint>
|
||||
+
|
||||
enum VolumeGridType : int8_t {
|
||||
VOLUME_GRID_UNKNOWN = 0,
|
||||
VOLUME_GRID_BOOLEAN,
|
||||
diff --git a/source/blender/blenlib/BLI_index_range.hh b/source/blender/blenlib/BLI_index_range.hh
|
||||
index bd9e030..25e9eb7 100644
|
||||
index 819bf20..a1ac8c9 100644
|
||||
--- a/source/blender/blenlib/BLI_index_range.hh
|
||||
+++ b/source/blender/blenlib/BLI_index_range.hh
|
||||
@@ -38,6 +38,7 @@
|
||||
|
@ -34,5 +20,5 @@ index bd9e030..25e9eb7 100644
|
|||
|
||||
#include "BLI_assert.h"
|
||||
--
|
||||
2.47.0
|
||||
2.49.0
|
||||
|
||||
|
|
67
srcpkgs/blender/patches/cross.patch
Normal file
67
srcpkgs/blender/patches/cross.patch
Normal file
|
@ -0,0 +1,67 @@
|
|||
using a bare target name instead of a generator allows cmake to wrap it in CROSSCOMPILING_EMULATOR
|
||||
|
||||
--- a/source/blender/makesdna/intern/CMakeLists.txt
|
||||
+++ b/source/blender/makesdna/intern/CMakeLists.txt
|
||||
@@ -105,8 +105,7 @@
|
||||
${CMAKE_CURRENT_BINARY_DIR}/dna_type_offsets.h
|
||||
${CMAKE_CURRENT_BINARY_DIR}/dna_verify.c
|
||||
COMMAND
|
||||
- ${CMAKE_COMMAND} -E env ${PLATFORM_ENV_BUILD}
|
||||
- "$<TARGET_FILE:makesdna>"
|
||||
+ makesdna
|
||||
${CMAKE_CURRENT_BINARY_DIR}/dna.c
|
||||
${CMAKE_CURRENT_BINARY_DIR}/dna_type_offsets.h
|
||||
${CMAKE_CURRENT_BINARY_DIR}/dna_verify.c
|
||||
--- a/source/blender/makesrna/intern/CMakeLists.txt
|
||||
+++ b/source/blender/makesrna/intern/CMakeLists.txt
|
||||
@@ -459,8 +459,7 @@
|
||||
add_custom_command(
|
||||
OUTPUT ${GENSRC}
|
||||
COMMAND
|
||||
- ${CMAKE_COMMAND} -E env ${PLATFORM_ENV_BUILD}
|
||||
- "$<TARGET_FILE:makesrna>" ${CMAKE_CURRENT_BINARY_DIR}/ ${CMAKE_CURRENT_BINARY_DIR}/../
|
||||
+ makesrna ${CMAKE_CURRENT_BINARY_DIR}/ ${CMAKE_CURRENT_BINARY_DIR}/../
|
||||
DEPENDS makesrna
|
||||
)
|
||||
|
||||
--- a/build_files/cmake/macros.cmake
|
||||
+++ b/build_files/cmake/macros.cmake
|
||||
@@ -990,7 +990,7 @@
|
||||
add_custom_command(
|
||||
OUTPUT ${file_to}
|
||||
COMMAND ${CMAKE_COMMAND} -E make_directory ${_file_to_path}
|
||||
- COMMAND "$<TARGET_FILE:datatoc>" ${file_from} ${file_to}
|
||||
+ COMMAND datatoc ${file_from} ${file_to}
|
||||
DEPENDS ${file_from} datatoc)
|
||||
|
||||
set_source_files_properties(${file_to} PROPERTIES GENERATED TRUE)
|
||||
@@ -1017,7 +1017,7 @@
|
||||
add_custom_command(
|
||||
OUTPUT ${_file_to}
|
||||
COMMAND ${CMAKE_COMMAND} -E make_directory ${_file_to_path}
|
||||
- COMMAND "$<TARGET_FILE:datatoc>" ${_file_from} ${_file_to}
|
||||
+ COMMAND datatoc ${_file_from} ${_file_to}
|
||||
DEPENDS ${_file_from} datatoc)
|
||||
|
||||
set_source_files_properties(${_file_to} PROPERTIES GENERATED TRUE)
|
||||
@@ -1045,8 +1045,8 @@
|
||||
add_custom_command(
|
||||
OUTPUT ${_file_to}
|
||||
COMMAND ${CMAKE_COMMAND} -E make_directory ${_file_to_path}
|
||||
- COMMAND "$<TARGET_FILE:glsl_preprocess>" ${_file_from} ${_file_tmp}
|
||||
- COMMAND "$<TARGET_FILE:datatoc>" ${_file_tmp} ${_file_to}
|
||||
+ COMMAND glsl_preprocess ${_file_from} ${_file_tmp}
|
||||
+ COMMAND datatoc ${_file_tmp} ${_file_to}
|
||||
DEPENDS ${_file_from} datatoc glsl_preprocess)
|
||||
|
||||
set_source_files_properties(${_file_tmp} PROPERTIES GENERATED TRUE)
|
||||
@@ -1076,8 +1076,7 @@
|
||||
COMMAND ${CMAKE_COMMAND} -E
|
||||
make_directory ${_file_to_path}
|
||||
|
||||
- COMMAND ${CMAKE_COMMAND} -E
|
||||
- env ${PLATFORM_ENV_BUILD} "$<TARGET_FILE:msgfmt>" ${_file_from} ${_file_to}
|
||||
+ COMMAND msgfmt ${_file_from} ${_file_to}
|
||||
|
||||
DEPENDS msgfmt ${_file_from})
|
||||
|
13
srcpkgs/blender/patches/numpy.patch
Normal file
13
srcpkgs/blender/patches/numpy.patch
Normal file
|
@ -0,0 +1,13 @@
|
|||
void's numpy uses a different path, and it doesn't seem to be possible to set it on Linux
|
||||
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -2519,7 +2519,7 @@
|
||||
# Always use numpy bundled in precompiled libs.
|
||||
elseif((WITH_PYTHON_INSTALL AND WITH_PYTHON_INSTALL_NUMPY) OR WITH_PYTHON_NUMPY)
|
||||
if(("${PYTHON_NUMPY_PATH}" STREQUAL "") OR (${PYTHON_NUMPY_PATH} MATCHES NOTFOUND))
|
||||
- find_python_package(numpy "core/include")
|
||||
+ find_python_package(numpy "_core/include")
|
||||
endif()
|
||||
endif()
|
||||
|
|
@ -1,626 +0,0 @@
|
|||
From d9f38fca5ffe29136cd6f390e318ad8455864582 Mon Sep 17 00:00:00 2001
|
||||
From: Campbell Barton <campbell@blender.org>
|
||||
Date: Fri, 18 Oct 2024 12:23:34 +1100
|
||||
Subject: [PATCH] PyAPI: support Python 3.13
|
||||
|
||||
- `_PySet_NextEntry` has been removed, use generic iterator access
|
||||
which will has some additional overhead as it needs to create
|
||||
an iterator to access the values.
|
||||
|
||||
- Add v3.13 compatibility defines to account for renaming:
|
||||
_PyObject_LookupAttr -> PyObject_GetOptionalAttr
|
||||
_PyLong_AsInt -> PyLong_AsInt
|
||||
|
||||
- Unfortunately use of Python's internal API needs to be used to
|
||||
inspect op-codes in `bpy_driver.cc`.
|
||||
|
||||
Testing GLTF/FBX IO there isn't any significant performance impact
|
||||
from these changes.
|
||||
|
||||
Resolves #123871.
|
||||
---
|
||||
.../blender/python/bmesh/bmesh_py_ops_call.cc | 16 +-
|
||||
source/blender/python/generic/py_capi_rna.cc | 140 ++++++++++--------
|
||||
.../blender/python/generic/py_capi_utils.cc | 56 ++++---
|
||||
.../blender/python/generic/py_capi_utils.hh | 4 +
|
||||
.../blender/python/generic/python_compat.hh | 10 +-
|
||||
.../blender/python/gpu/gpu_py_framebuffer.cc | 6 +-
|
||||
source/blender/python/intern/bpy.cc | 48 +++---
|
||||
source/blender/python/intern/bpy_driver.cc | 37 ++++-
|
||||
.../python/intern/bpy_library_write.cc | 27 ++--
|
||||
source/blender/python/intern/bpy_rna.cc | 6 +-
|
||||
10 files changed, 218 insertions(+), 132 deletions(-)
|
||||
|
||||
diff --git a/source/blender/python/bmesh/bmesh_py_ops_call.cc b/source/blender/python/bmesh/bmesh_py_ops_call.cc
|
||||
index d5a2e6b02ad..624e4d02e98 100644
|
||||
--- a/source/blender/python/bmesh/bmesh_py_ops_call.cc
|
||||
+++ b/source/blender/python/bmesh/bmesh_py_ops_call.cc
|
||||
@@ -548,11 +548,12 @@ static int bpy_slot_from_py(BMesh *bm,
|
||||
break;
|
||||
}
|
||||
case BMO_OP_SLOT_SUBTYPE_MAP_EMPTY: {
|
||||
- if (PySet_Size(value) > 0) {
|
||||
+ if (PySet_GET_SIZE(value) > 0) {
|
||||
+ PyObject *it = PyObject_GetIter(value);
|
||||
PyObject *arg_key;
|
||||
- Py_ssize_t arg_pos = 0;
|
||||
- Py_ssize_t arg_hash = 0;
|
||||
- while (_PySet_NextEntry(value, &arg_pos, &arg_key, &arg_hash)) {
|
||||
+ while ((arg_key = PyIter_Next(it))) {
|
||||
+ /* Borrow from the set. */
|
||||
+ Py_DECREF(arg_key);
|
||||
|
||||
if (bpy_slot_from_py_elem_check((BPy_BMElem *)arg_key,
|
||||
bm,
|
||||
@@ -561,11 +562,16 @@ static int bpy_slot_from_py(BMesh *bm,
|
||||
slot_name,
|
||||
"invalid key in set") == -1)
|
||||
{
|
||||
- return -1; /* error is set in bpy_slot_from_py_elem_check() */
|
||||
+ /* Error is set in #bpy_slot_from_py_elem_check(). */
|
||||
+ break;
|
||||
}
|
||||
|
||||
BMO_slot_map_empty_insert(bmop, slot, ((BPy_BMElem *)arg_key)->ele);
|
||||
}
|
||||
+ Py_DECREF(it);
|
||||
+ if (arg_key) {
|
||||
+ return -1;
|
||||
+ }
|
||||
}
|
||||
break;
|
||||
}
|
||||
diff --git a/source/blender/python/generic/py_capi_rna.cc b/source/blender/python/generic/py_capi_rna.cc
|
||||
index 11827fa0836..a41e474f619 100644
|
||||
--- a/source/blender/python/generic/py_capi_rna.cc
|
||||
+++ b/source/blender/python/generic/py_capi_rna.cc
|
||||
@@ -75,60 +75,66 @@ BLI_bitmap *pyrna_enum_bitmap_from_set(const EnumPropertyItem *items,
|
||||
int bitmap_size,
|
||||
const char *error_prefix)
|
||||
{
|
||||
- /* Set looping. */
|
||||
- Py_ssize_t pos = 0;
|
||||
- Py_ssize_t hash = 0;
|
||||
- PyObject *key;
|
||||
-
|
||||
+ BLI_assert(PySet_Check(value));
|
||||
BLI_bitmap *bitmap = BLI_BITMAP_NEW(bitmap_size, __func__);
|
||||
|
||||
- while (_PySet_NextEntry(value, &pos, &key, &hash)) {
|
||||
- const char *param = PyUnicode_AsUTF8(key);
|
||||
- if (param == nullptr) {
|
||||
- PyErr_Format(PyExc_TypeError,
|
||||
- "%.200s expected a string, not %.200s",
|
||||
- error_prefix,
|
||||
- Py_TYPE(key)->tp_name);
|
||||
- goto error;
|
||||
- }
|
||||
+ if (PySet_GET_SIZE(value) > 0) {
|
||||
+ /* Set looping. */
|
||||
+ PyObject *it = PyObject_GetIter(value);
|
||||
+ PyObject *key;
|
||||
+ while ((key = PyIter_Next(it))) {
|
||||
+ /* Borrow from the set. */
|
||||
+ Py_DECREF(key);
|
||||
|
||||
- int ret;
|
||||
- if (pyrna_enum_value_from_id(items, param, &ret, error_prefix) == -1) {
|
||||
- goto error;
|
||||
- }
|
||||
+ const char *param = PyUnicode_AsUTF8(key);
|
||||
+ if (param == nullptr) {
|
||||
+ PyErr_Format(PyExc_TypeError,
|
||||
+ "%.200s expected a string, not %.200s",
|
||||
+ error_prefix,
|
||||
+ Py_TYPE(key)->tp_name);
|
||||
+ break;
|
||||
+ }
|
||||
|
||||
- int index = ret;
|
||||
+ int ret;
|
||||
+ if (pyrna_enum_value_from_id(items, param, &ret, error_prefix) == -1) {
|
||||
+ break;
|
||||
+ }
|
||||
|
||||
- if (type_convert_sign) {
|
||||
- if (type_size == 2) {
|
||||
- union {
|
||||
- signed short as_signed;
|
||||
- ushort as_unsigned;
|
||||
- } ret_convert;
|
||||
- ret_convert.as_signed = (signed short)ret;
|
||||
- index = int(ret_convert.as_unsigned);
|
||||
- }
|
||||
- else if (type_size == 1) {
|
||||
- union {
|
||||
- signed char as_signed;
|
||||
- uchar as_unsigned;
|
||||
- } ret_convert;
|
||||
- ret_convert.as_signed = (signed char)ret;
|
||||
- index = int(ret_convert.as_unsigned);
|
||||
- }
|
||||
- else {
|
||||
- BLI_assert_unreachable();
|
||||
+ int index = ret;
|
||||
+
|
||||
+ if (type_convert_sign) {
|
||||
+ if (type_size == 2) {
|
||||
+ union {
|
||||
+ signed short as_signed;
|
||||
+ ushort as_unsigned;
|
||||
+ } ret_convert;
|
||||
+ ret_convert.as_signed = (signed short)ret;
|
||||
+ index = int(ret_convert.as_unsigned);
|
||||
+ }
|
||||
+ else if (type_size == 1) {
|
||||
+ union {
|
||||
+ signed char as_signed;
|
||||
+ uchar as_unsigned;
|
||||
+ } ret_convert;
|
||||
+ ret_convert.as_signed = (signed char)ret;
|
||||
+ index = int(ret_convert.as_unsigned);
|
||||
+ }
|
||||
+ else {
|
||||
+ BLI_assert_unreachable();
|
||||
+ }
|
||||
}
|
||||
+ BLI_assert(index < bitmap_size);
|
||||
+ BLI_BITMAP_ENABLE(bitmap, index);
|
||||
+ }
|
||||
+ Py_DECREF(it);
|
||||
+
|
||||
+ if (key) {
|
||||
+ MEM_freeN(bitmap);
|
||||
+ bitmap = nullptr;
|
||||
}
|
||||
- BLI_assert(index < bitmap_size);
|
||||
- BLI_BITMAP_ENABLE(bitmap, index);
|
||||
}
|
||||
|
||||
return bitmap;
|
||||
-
|
||||
-error:
|
||||
- MEM_freeN(bitmap);
|
||||
- return nullptr;
|
||||
}
|
||||
|
||||
int pyrna_enum_bitfield_from_set(const EnumPropertyItem *items,
|
||||
@@ -136,32 +142,40 @@ int pyrna_enum_bitfield_from_set(const EnumPropertyItem *items,
|
||||
int *r_value,
|
||||
const char *error_prefix)
|
||||
{
|
||||
+ BLI_assert(PySet_Check(value));
|
||||
/* Set of enum items, concatenate all values with OR. */
|
||||
- int ret, flag = 0;
|
||||
-
|
||||
- /* Set looping. */
|
||||
- Py_ssize_t pos = 0;
|
||||
- Py_ssize_t hash = 0;
|
||||
- PyObject *key;
|
||||
+ int flag = 0;
|
||||
|
||||
*r_value = 0;
|
||||
|
||||
- while (_PySet_NextEntry(value, &pos, &key, &hash)) {
|
||||
- const char *param = PyUnicode_AsUTF8(key);
|
||||
+ PyObject *key = nullptr;
|
||||
+ if (PySet_GET_SIZE(value) > 0) {
|
||||
+ /* Set looping. */
|
||||
+ PyObject *it = PyObject_GetIter(value);
|
||||
+ while ((key = PyIter_Next(it))) {
|
||||
+ /* Borrow from the set. */
|
||||
+ Py_DECREF(key);
|
||||
|
||||
- if (param == nullptr) {
|
||||
- PyErr_Format(PyExc_TypeError,
|
||||
- "%.200s expected a string, not %.200s",
|
||||
- error_prefix,
|
||||
- Py_TYPE(key)->tp_name);
|
||||
+ const char *param = PyUnicode_AsUTF8(key);
|
||||
+ if (param == nullptr) {
|
||||
+ PyErr_Format(PyExc_TypeError,
|
||||
+ "%.200s expected a string, not %.200s",
|
||||
+ error_prefix,
|
||||
+ Py_TYPE(key)->tp_name);
|
||||
+ break;
|
||||
+ }
|
||||
+
|
||||
+ int ret;
|
||||
+ if (pyrna_enum_value_from_id(items, param, &ret, error_prefix) == -1) {
|
||||
+ break;
|
||||
+ }
|
||||
+
|
||||
+ flag |= ret;
|
||||
+ }
|
||||
+ Py_DECREF(it);
|
||||
+ if (key) {
|
||||
return -1;
|
||||
}
|
||||
-
|
||||
- if (pyrna_enum_value_from_id(items, param, &ret, error_prefix) == -1) {
|
||||
- return -1;
|
||||
- }
|
||||
-
|
||||
- flag |= ret;
|
||||
}
|
||||
|
||||
*r_value = flag;
|
||||
diff --git a/source/blender/python/generic/py_capi_utils.cc b/source/blender/python/generic/py_capi_utils.cc
|
||||
index 3311064e7c5..74c829d717e 100644
|
||||
--- a/source/blender/python/generic/py_capi_utils.cc
|
||||
+++ b/source/blender/python/generic/py_capi_utils.cc
|
||||
@@ -39,6 +39,11 @@
|
||||
# include "BLI_math_base.h" /* isfinite() */
|
||||
#endif
|
||||
|
||||
+#if PY_VERSION_HEX <= 0x030c0000 /* <=3.12 */
|
||||
+# define PyLong_AsInt _PyLong_AsInt
|
||||
+# define PyUnicode_CompareWithASCIIString _PyUnicode_EqualToASCIIString
|
||||
+#endif
|
||||
+
|
||||
/* -------------------------------------------------------------------- */
|
||||
/** \name Fast Python to C Array Conversion for Primitive Types
|
||||
* \{ */
|
||||
@@ -874,10 +879,12 @@ static void pyc_exception_buffer_handle_system_exit()
|
||||
if (!PyErr_ExceptionMatches(PyExc_SystemExit)) {
|
||||
return;
|
||||
}
|
||||
- /* Inspecting, follow Python's logic in #_Py_HandleSystemExit & treat as a regular exception. */
|
||||
+/* Inspecting, follow Python's logic in #_Py_HandleSystemExit & treat as a regular exception. */
|
||||
+# if 0 /* FIXME: */
|
||||
if (_Py_GetConfig()->inspect) {
|
||||
return;
|
||||
}
|
||||
+# endif
|
||||
|
||||
/* NOTE(@ideasman42): A `SystemExit` exception will exit immediately (unless inspecting).
|
||||
* So print the error and exit now. Without this #PyErr_Display shows the error stack-trace
|
||||
@@ -1424,11 +1431,6 @@ int PyC_FlagSet_ToBitfield(const PyC_FlagSet *items,
|
||||
/* set of enum items, concatenate all values with OR */
|
||||
int ret, flag = 0;
|
||||
|
||||
- /* set looping */
|
||||
- Py_ssize_t pos = 0;
|
||||
- Py_ssize_t hash = 0;
|
||||
- PyObject *key;
|
||||
-
|
||||
if (!PySet_Check(value)) {
|
||||
PyErr_Format(PyExc_TypeError,
|
||||
"%.200s expected a set, not %.200s",
|
||||
@@ -1439,22 +1441,32 @@ int PyC_FlagSet_ToBitfield(const PyC_FlagSet *items,
|
||||
|
||||
*r_value = 0;
|
||||
|
||||
- while (_PySet_NextEntry(value, &pos, &key, &hash)) {
|
||||
- const char *param = PyUnicode_AsUTF8(key);
|
||||
+ if (PySet_GET_SIZE(value) > 0) {
|
||||
+ PyObject *it = PyObject_GetIter(value);
|
||||
+ PyObject *key;
|
||||
+ while ((key = PyIter_Next(it))) {
|
||||
+ /* Borrow from the set. */
|
||||
+ Py_DECREF(key);
|
||||
|
||||
- if (param == nullptr) {
|
||||
- PyErr_Format(PyExc_TypeError,
|
||||
- "%.200s set must contain strings, not %.200s",
|
||||
- error_prefix,
|
||||
- Py_TYPE(key)->tp_name);
|
||||
+ const char *param = PyUnicode_AsUTF8(key);
|
||||
+ if (param == nullptr) {
|
||||
+ PyErr_Format(PyExc_TypeError,
|
||||
+ "%.200s set must contain strings, not %.200s",
|
||||
+ error_prefix,
|
||||
+ Py_TYPE(key)->tp_name);
|
||||
+ break;
|
||||
+ }
|
||||
+
|
||||
+ if (PyC_FlagSet_ValueFromID(items, param, &ret, error_prefix) < 0) {
|
||||
+ break;
|
||||
+ }
|
||||
+
|
||||
+ flag |= ret;
|
||||
+ }
|
||||
+ Py_DECREF(it);
|
||||
+ if (key != nullptr) {
|
||||
return -1;
|
||||
}
|
||||
-
|
||||
- if (PyC_FlagSet_ValueFromID(items, param, &ret, error_prefix) < 0) {
|
||||
- return -1;
|
||||
- }
|
||||
-
|
||||
- flag |= ret;
|
||||
}
|
||||
|
||||
*r_value = flag;
|
||||
@@ -1724,7 +1736,7 @@ static ulong pyc_Long_AsUnsignedLong(PyObject *value)
|
||||
|
||||
int PyC_Long_AsBool(PyObject *value)
|
||||
{
|
||||
- const int test = _PyLong_AsInt(value);
|
||||
+ const int test = PyLong_AsInt(value);
|
||||
if (UNLIKELY(test == -1 && PyErr_Occurred())) {
|
||||
return -1;
|
||||
}
|
||||
@@ -1737,7 +1749,7 @@ int PyC_Long_AsBool(PyObject *value)
|
||||
|
||||
int8_t PyC_Long_AsI8(PyObject *value)
|
||||
{
|
||||
- const int test = _PyLong_AsInt(value);
|
||||
+ const int test = PyLong_AsInt(value);
|
||||
if (UNLIKELY(test == -1 && PyErr_Occurred())) {
|
||||
return -1;
|
||||
}
|
||||
@@ -1750,7 +1762,7 @@ int8_t PyC_Long_AsI8(PyObject *value)
|
||||
|
||||
int16_t PyC_Long_AsI16(PyObject *value)
|
||||
{
|
||||
- const int test = _PyLong_AsInt(value);
|
||||
+ const int test = PyLong_AsInt(value);
|
||||
if (UNLIKELY(test == -1 && PyErr_Occurred())) {
|
||||
return -1;
|
||||
}
|
||||
diff --git a/source/blender/python/generic/py_capi_utils.hh b/source/blender/python/generic/py_capi_utils.hh
|
||||
index 4a641f78471..81740e0d0ad 100644
|
||||
--- a/source/blender/python/generic/py_capi_utils.hh
|
||||
+++ b/source/blender/python/generic/py_capi_utils.hh
|
||||
@@ -339,7 +339,11 @@ uint64_t PyC_Long_AsU64(PyObject *value);
|
||||
/* inline so type signatures match as expected */
|
||||
Py_LOCAL_INLINE(int32_t) PyC_Long_AsI32(PyObject *value)
|
||||
{
|
||||
+#if PY_VERSION_HEX <= 0x030c0000 /* <=3.12 */
|
||||
return (int32_t)_PyLong_AsInt(value);
|
||||
+#else
|
||||
+ return (int32_t)PyLong_AsInt(value);
|
||||
+#endif
|
||||
}
|
||||
Py_LOCAL_INLINE(int64_t) PyC_Long_AsI64(PyObject *value)
|
||||
{
|
||||
diff --git a/source/blender/python/generic/python_compat.hh b/source/blender/python/generic/python_compat.hh
|
||||
index f18d0fb59b3..e2799aeeb46 100644
|
||||
--- a/source/blender/python/generic/python_compat.hh
|
||||
+++ b/source/blender/python/generic/python_compat.hh
|
||||
@@ -9,9 +9,17 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
+/* Removes `intialized` member from Python 3.13+. */
|
||||
+#if PY_VERSION_HEX >= 0x030d0000
|
||||
+# define PY_ARG_PARSER_HEAD_COMPAT()
|
||||
+#elif PY_VERSION_HEX >= 0x030c0000
|
||||
/* Add `intialized` member for Python 3.12+. */
|
||||
-#if PY_VERSION_HEX >= 0x030c0000
|
||||
# define PY_ARG_PARSER_HEAD_COMPAT() 0,
|
||||
#else
|
||||
# define PY_ARG_PARSER_HEAD_COMPAT()
|
||||
#endif
|
||||
+
|
||||
+/* Python 3.13 made some changes, use the "new" names. */
|
||||
+#if PY_VERSION_HEX < 0x030d0000
|
||||
+# define PyObject_GetOptionalAttr _PyObject_LookupAttr
|
||||
+#endif
|
||||
diff --git a/source/blender/python/gpu/gpu_py_framebuffer.cc b/source/blender/python/gpu/gpu_py_framebuffer.cc
|
||||
index 899ad21f770..9bef53654df 100644
|
||||
--- a/source/blender/python/gpu/gpu_py_framebuffer.cc
|
||||
+++ b/source/blender/python/gpu/gpu_py_framebuffer.cc
|
||||
@@ -286,14 +286,14 @@ static bool pygpu_framebuffer_new_parse_arg(PyObject *o, GPUAttachment *r_attach
|
||||
return false;
|
||||
}
|
||||
|
||||
- if (c_texture && _PyUnicode_EqualToASCIIString(key, c_texture)) {
|
||||
+ if (c_texture && PyUnicode_CompareWithASCIIString(key, c_texture)) {
|
||||
/* Compare only once. */
|
||||
c_texture = nullptr;
|
||||
if (!bpygpu_ParseTexture(value, &tmp_attach.tex)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
- else if (c_layer && _PyUnicode_EqualToASCIIString(key, c_layer)) {
|
||||
+ else if (c_layer && PyUnicode_CompareWithASCIIString(key, c_layer)) {
|
||||
/* Compare only once. */
|
||||
c_layer = nullptr;
|
||||
tmp_attach.layer = PyLong_AsLong(value);
|
||||
@@ -301,7 +301,7 @@ static bool pygpu_framebuffer_new_parse_arg(PyObject *o, GPUAttachment *r_attach
|
||||
return false;
|
||||
}
|
||||
}
|
||||
- else if (c_mip && _PyUnicode_EqualToASCIIString(key, c_mip)) {
|
||||
+ else if (c_mip && PyUnicode_CompareWithASCIIString(key, c_mip)) {
|
||||
/* Compare only once. */
|
||||
c_mip = nullptr;
|
||||
tmp_attach.mip = PyLong_AsLong(value);
|
||||
diff --git a/source/blender/python/intern/bpy.cc b/source/blender/python/intern/bpy.cc
|
||||
index 7cdd00fc7a3..42ea76e40ac 100644
|
||||
--- a/source/blender/python/intern/bpy.cc
|
||||
+++ b/source/blender/python/intern/bpy.cc
|
||||
@@ -610,38 +610,40 @@ PyDoc_STRVAR(
|
||||
" :rtype: dict\n");
|
||||
static PyObject *bpy_wm_capabilities(PyObject *self)
|
||||
{
|
||||
- static _Py_Identifier PyId_capabilities = {"_wm_capabilities_", -1};
|
||||
-
|
||||
+ PyObject *py_id_capabilities = PyUnicode_FromString("_wm_capabilities_");
|
||||
PyObject *result = nullptr;
|
||||
- switch (_PyObject_LookupAttrId(self, &PyId_capabilities, &result)) {
|
||||
- case 1:
|
||||
- return result;
|
||||
- case 0:
|
||||
- break;
|
||||
- default:
|
||||
- /* Unlikely, but there may be an error, forward it. */
|
||||
- return nullptr;
|
||||
- }
|
||||
+ switch (PyObject_GetOptionalAttr(self, py_id_capabilities, &result)) {
|
||||
+ case 1: {
|
||||
+ result = PyDict_New();
|
||||
|
||||
- result = PyDict_New();
|
||||
-
|
||||
- const eWM_CapabilitiesFlag flag = WM_capabilities_flag();
|
||||
+ const eWM_CapabilitiesFlag flag = WM_capabilities_flag();
|
||||
|
||||
#define SetFlagItem(x) \
|
||||
PyDict_SetItemString(result, STRINGIFY(x), PyBool_FromLong((WM_CAPABILITY_##x) & flag));
|
||||
|
||||
- SetFlagItem(CURSOR_WARP);
|
||||
- SetFlagItem(WINDOW_POSITION);
|
||||
- SetFlagItem(PRIMARY_CLIPBOARD);
|
||||
- SetFlagItem(GPU_FRONT_BUFFER_READ);
|
||||
- SetFlagItem(CLIPBOARD_IMAGES);
|
||||
- SetFlagItem(DESKTOP_SAMPLE);
|
||||
- SetFlagItem(INPUT_IME);
|
||||
- SetFlagItem(TRACKPAD_PHYSICAL_DIRECTION);
|
||||
+ SetFlagItem(CURSOR_WARP);
|
||||
+ SetFlagItem(WINDOW_POSITION);
|
||||
+ SetFlagItem(PRIMARY_CLIPBOARD);
|
||||
+ SetFlagItem(GPU_FRONT_BUFFER_READ);
|
||||
+ SetFlagItem(CLIPBOARD_IMAGES);
|
||||
+ SetFlagItem(DESKTOP_SAMPLE);
|
||||
+ SetFlagItem(INPUT_IME);
|
||||
+ SetFlagItem(TRACKPAD_PHYSICAL_DIRECTION);
|
||||
|
||||
#undef SetFlagItem
|
||||
+ PyObject_SetAttr(self, py_id_capabilities, result);
|
||||
+ break;
|
||||
+ }
|
||||
+ case 0:
|
||||
+ BLI_assert(result != nullptr);
|
||||
+ break;
|
||||
+ default:
|
||||
+ /* Unlikely, but there may be an error, forward it. */
|
||||
+ BLI_assert(result == nullptr);
|
||||
+ break;
|
||||
+ }
|
||||
|
||||
- _PyObject_SetAttrId(self, &PyId_capabilities, result);
|
||||
+ Py_DECREF(py_id_capabilities);
|
||||
return result;
|
||||
}
|
||||
|
||||
diff --git a/source/blender/python/intern/bpy_driver.cc b/source/blender/python/intern/bpy_driver.cc
|
||||
index b32bfbc2a56..e589f0992e1 100644
|
||||
--- a/source/blender/python/intern/bpy_driver.cc
|
||||
+++ b/source/blender/python/intern/bpy_driver.cc
|
||||
@@ -43,6 +43,13 @@
|
||||
# include <opcode.h>
|
||||
#endif
|
||||
|
||||
+#if PY_VERSION_HEX >= 0x030d0000 /* >=3.13 */
|
||||
+/* WARNING(@ideasman42): Using `Py_BUILD_CORE` is a last resort,
|
||||
+ * the alternative would be not to inspect OP-CODES at all. */
|
||||
+# define Py_BUILD_CORE
|
||||
+# include <internal/pycore_code.h>
|
||||
+#endif
|
||||
+
|
||||
PyObject *bpy_pydriver_Dict = nullptr;
|
||||
|
||||
#ifdef USE_BYTECODE_WHITELIST
|
||||
@@ -375,7 +382,35 @@ static bool is_opcode_secure(const int opcode)
|
||||
OK_OP(LOAD_CONST) /* Ok because constants are accepted. */
|
||||
OK_OP(LOAD_NAME) /* Ok, because `PyCodeObject.names` is checked. */
|
||||
OK_OP(CALL) /* Ok, because we check its "name" before calling. */
|
||||
- OK_OP(KW_NAMES) /* Ok, because it's used for calling functions with keyword arguments. */
|
||||
+# if PY_VERSION_HEX >= 0x030d0000
|
||||
+ OK_OP(CALL_KW) /* Ok, because it's used for calling functions with keyword arguments. */
|
||||
+
|
||||
+ OK_OP(CALL_FUNCTION_EX);
|
||||
+
|
||||
+ /* OK because the names are checked. */
|
||||
+ OK_OP(CALL_ALLOC_AND_ENTER_INIT)
|
||||
+ OK_OP(CALL_BOUND_METHOD_EXACT_ARGS)
|
||||
+ OK_OP(CALL_BOUND_METHOD_GENERAL)
|
||||
+ OK_OP(CALL_BUILTIN_CLASS)
|
||||
+ OK_OP(CALL_BUILTIN_FAST)
|
||||
+ OK_OP(CALL_BUILTIN_FAST_WITH_KEYWORDS)
|
||||
+ OK_OP(CALL_BUILTIN_O)
|
||||
+ OK_OP(CALL_ISINSTANCE)
|
||||
+ OK_OP(CALL_LEN)
|
||||
+ OK_OP(CALL_LIST_APPEND)
|
||||
+ OK_OP(CALL_METHOD_DESCRIPTOR_FAST)
|
||||
+ OK_OP(CALL_METHOD_DESCRIPTOR_FAST_WITH_KEYWORDS)
|
||||
+ OK_OP(CALL_METHOD_DESCRIPTOR_NOARGS)
|
||||
+ OK_OP(CALL_METHOD_DESCRIPTOR_O)
|
||||
+ OK_OP(CALL_NON_PY_GENERAL)
|
||||
+ OK_OP(CALL_PY_EXACT_ARGS)
|
||||
+ OK_OP(CALL_PY_GENERAL)
|
||||
+ OK_OP(CALL_STR_1)
|
||||
+ OK_OP(CALL_TUPLE_1)
|
||||
+ OK_OP(CALL_TYPE_1)
|
||||
+# else
|
||||
+ OK_OP(KW_NAMES) /* Ok, because it's used for calling functions with keyword arguments. */
|
||||
+# endif
|
||||
|
||||
# if PY_VERSION_HEX < 0x030c0000
|
||||
OK_OP(PRECALL) /* Ok, because it's used for calling. */
|
||||
diff --git a/source/blender/python/intern/bpy_library_write.cc b/source/blender/python/intern/bpy_library_write.cc
|
||||
index d1c0b32ac07..59bf476427f 100644
|
||||
--- a/source/blender/python/intern/bpy_library_write.cc
|
||||
+++ b/source/blender/python/intern/bpy_library_write.cc
|
||||
@@ -136,20 +136,25 @@ static PyObject *bpy_lib_write(BPy_PropertyRNA *self, PyObject *args, PyObject *
|
||||
PartialWriteContext::IDAddOperations::ADD_DEPENDENCIES |
|
||||
(use_fake_user ? PartialWriteContext::IDAddOperations::SET_FAKE_USER : 0))};
|
||||
|
||||
- Py_ssize_t pos, hash;
|
||||
- PyObject *key;
|
||||
- ID *id = nullptr;
|
||||
-
|
||||
- pos = hash = 0;
|
||||
- while (_PySet_NextEntry(datablocks, &pos, &key, &hash)) {
|
||||
- if (!pyrna_id_FromPyObject(key, &id)) {
|
||||
- PyErr_Format(PyExc_TypeError, "Expected an ID type, not %.200s", Py_TYPE(key)->tp_name);
|
||||
- return nullptr;
|
||||
- }
|
||||
- else {
|
||||
+ if (PySet_GET_SIZE(datablocks) > 0) {
|
||||
+ PyObject *it = PyObject_GetIter(datablocks);
|
||||
+ PyObject *key;
|
||||
+ while ((key = PyIter_Next(it))) {
|
||||
+ /* Borrow from the set. */
|
||||
+ Py_DECREF(key);
|
||||
+ ID *id;
|
||||
+ if (!pyrna_id_FromPyObject(key, &id)) {
|
||||
+ PyErr_Format(PyExc_TypeError, "Expected an ID type, not %.200s", Py_TYPE(key)->tp_name);
|
||||
+ break;
|
||||
+ }
|
||||
partial_write_ctx.id_add(id, add_options, nullptr);
|
||||
}
|
||||
+ Py_DECREF(it);
|
||||
+ if (key) {
|
||||
+ return nullptr;
|
||||
+ }
|
||||
}
|
||||
+
|
||||
BLI_assert(partial_write_ctx.is_valid());
|
||||
|
||||
/* write blend */
|
||||
diff --git a/source/blender/python/intern/bpy_rna.cc b/source/blender/python/intern/bpy_rna.cc
|
||||
index eb365bf0238..a9cb115f57e 100644
|
||||
--- a/source/blender/python/intern/bpy_rna.cc
|
||||
+++ b/source/blender/python/intern/bpy_rna.cc
|
||||
@@ -8639,7 +8639,7 @@ static int bpy_class_validate_recursive(PointerRNA *dummy_ptr,
|
||||
continue;
|
||||
}
|
||||
|
||||
- /* TODO(@ideasman42): Use Python3.7x _PyObject_LookupAttr(), also in the macro below. */
|
||||
+ /* TODO(@ideasman42): Use #PyObject_GetOptionalAttr(), also in the macro below. */
|
||||
identifier = RNA_property_identifier(prop);
|
||||
item = PyObject_GetAttrString(py_class, identifier);
|
||||
|
||||
@@ -9263,7 +9263,7 @@ static PyObject *pyrna_register_class(PyObject * /*self*/, PyObject *py_class)
|
||||
|
||||
/* Call classed register method.
|
||||
* Note that zero falls through, no attribute, no error. */
|
||||
- switch (_PyObject_LookupAttr(py_class, bpy_intern_str_register, &py_cls_meth)) {
|
||||
+ switch (PyObject_GetOptionalAttr(py_class, bpy_intern_str_register, &py_cls_meth)) {
|
||||
case 1: {
|
||||
PyObject *ret = PyObject_CallObject(py_cls_meth, nullptr);
|
||||
Py_DECREF(py_cls_meth);
|
||||
@@ -9378,7 +9378,7 @@ static PyObject *pyrna_unregister_class(PyObject * /*self*/, PyObject *py_class)
|
||||
|
||||
/* Call classed unregister method.
|
||||
* Note that zero falls through, no attribute, no error. */
|
||||
- switch (_PyObject_LookupAttr(py_class, bpy_intern_str_unregister, &py_cls_meth)) {
|
||||
+ switch (PyObject_GetOptionalAttr(py_class, bpy_intern_str_unregister, &py_cls_meth)) {
|
||||
case 1: {
|
||||
PyObject *ret = PyObject_CallObject(py_cls_meth, nullptr);
|
||||
Py_DECREF(py_cls_meth);
|
|
@ -1,9 +1,10 @@
|
|||
# Template file for 'blender'
|
||||
pkgname=blender
|
||||
version=4.3.1
|
||||
revision=2
|
||||
archs="x86_64* ppc64*"
|
||||
build_style="cmake"
|
||||
version=4.4.3
|
||||
revision=1
|
||||
archs="x86_64* aarch64* ppc64*"
|
||||
build_style=cmake
|
||||
build_helper="qemu numpy"
|
||||
pycompile_dirs="usr/share/blender/${version%.*}/scripts"
|
||||
configure_args="-DWITH_INSTALL_PORTABLE=OFF -DWITH_PYTHON_INSTALL=OFF
|
||||
-DWITH_JACK=ON -DWITH_CODEC_FFMPEG=ON -DWITH_CODEC_SNDFILE=ON -DWITH_OPENMP=ON
|
||||
|
@ -11,10 +12,11 @@ configure_args="-DWITH_INSTALL_PORTABLE=OFF -DWITH_PYTHON_INSTALL=OFF
|
|||
-DWITH_IMAGE_OPENEXR=ON -DWITH_IMAGE_OPENJPEG=ON -DWITH_OPENSUBDIV=ON
|
||||
-DWITH_OPENCOLLADA=ON -DWITH_SYSTEM_GLEW=ON -DWITH_OPENVDB=ON -DWITH_ALEMBIC=ON
|
||||
-DWITH_GHOST_X11=ON -DWITH_GHOST_WAYLAND=ON -DWITH_GHOST_LIBDECOR=ON
|
||||
-DWITH_BUILDINFO=OFF -DPYTHON_VERSION=${py3_ver} -DPYTHON_LIBPATH=/usr/lib
|
||||
-DPYTHON_LIBRARY=python${py3_ver}${py3_abiver} -DPYTHON_INCLUDE_DIRS=/${py3_inc}
|
||||
-DWITH_SYSTEM_LZO=ON -DWITH_SYSTEM_EIGEN3=ON -DWITH_SYSTEM_FREETYPE=ON"
|
||||
hostmakedepends="pkg-config"
|
||||
-DWITH_BUILDINFO=OFF -DPYTHON_VERSION=${py3_ver} -DPYTHON_LIBPATH=${XBPS_CROSS_BASE}/usr/lib
|
||||
-DPYTHON_LIBRARY=python${py3_ver}${py3_abiver} -DPYTHON_INCLUDE_DIRS=${XBPS_CROSS_BASE}/${py3_inc}
|
||||
-DWITH_SYSTEM_LZO=ON -DWITH_SYSTEM_EIGEN3=ON -DWITH_SYSTEM_FREETYPE=ON
|
||||
-DWITH_DRACO=OFF"
|
||||
hostmakedepends="pkg-config python3 wayland-devel"
|
||||
makedepends="libgomp-devel libpng-devel tiff-devel python3-devel glu-devel
|
||||
glew-devel freetype-devel jack-devel libopenal-devel libsndfile-devel
|
||||
libsamplerate-devel ffmpeg6-devel fftw-devel boost-devel pcre-devel llvm
|
||||
|
@ -23,26 +25,26 @@ makedepends="libgomp-devel libpng-devel tiff-devel python3-devel glu-devel
|
|||
OpenSubdiv-devel tbb-devel libxml2-devel openvdb-devel alembic-devel
|
||||
pugixml-devel libXxf86vm-devel libepoxy-devel gmp-devel gmpxx-devel
|
||||
wayland-protocols wayland-devel libxkbcommon-devel libdecor-devel
|
||||
libspnav-devel libwebp-devel potrace-devel Haru-devel
|
||||
pulseaudio-devel eigen lzo-devel vulkan-loader-devel shaderc"
|
||||
libspnav-devel libwebp-devel potrace-devel Haru-devel openxr-devel
|
||||
pipewire-devel pulseaudio-devel eigen lzo-devel vulkan-loader-devel shaderc"
|
||||
depends="desktop-file-utils hicolor-icon-theme"
|
||||
short_desc="3D graphics creation suite"
|
||||
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=99ecdef24ece14084016ee47c756eeb2fc8a09c8487a0296b45a117224dc5ca7
|
||||
python_version=3
|
||||
LDFLAGS="-Wl,-z,stack-size=2097152"
|
||||
# Blender tests are executed against a system installation of blender. This
|
||||
# is currently not supported by xbps-src.
|
||||
make_check=no
|
||||
|
||||
if [ "$XBPS_TARGET_LIBC" = musl ]; then
|
||||
if [ "$XBPS_TARGET_LIBC" = "musl" ]; then
|
||||
CFLAGS+=" -DZ7_AFFINITY_DISABLE"
|
||||
CXXFLAGS+=" -DZ7_AFFINITY_DISABLE"
|
||||
makedepends+=" libexecinfo-devel"
|
||||
LDFLAGS+=" -lexecinfo"
|
||||
configure_args+=" -DCMAKE_CXX_STANDARD_LIBRARIES=-lexecinfo"
|
||||
else
|
||||
makedepends+=" jemalloc-devel"
|
||||
fi
|
||||
|
|
Loading…
Add table
Reference in a new issue