git: 03f7dd327e77 - main - math/py-levmar: fix build with Python > 3.8
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 03 Mar 2022 20:51:10 UTC
The branch main has been updated by thierry: URL: https://cgit.FreeBSD.org/ports/commit/?id=03f7dd327e77ece810122edab088f1d778dbb2ef commit 03f7dd327e77ece810122edab088f1d778dbb2ef Author: Thierry Thomas <thierry@FreeBSD.org> AuthorDate: 2022-03-03 19:11:30 +0000 Commit: Thierry Thomas <thierry@FreeBSD.org> CommitDate: 2022-03-03 20:51:02 +0000 math/py-levmar: fix build with Python > 3.8 tp_print is deprecated in Python-3.8, and it causes an error in 3.9. PR: 262325 Approved by: yuri (maintainer) --- math/py-levmar/files/patch-levmar___levmar.c | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/math/py-levmar/files/patch-levmar___levmar.c b/math/py-levmar/files/patch-levmar___levmar.c new file mode 100644 index 000000000000..d895157ceb43 --- /dev/null +++ b/math/py-levmar/files/patch-levmar___levmar.c @@ -0,0 +1,22 @@ +--- levmar/_levmar.c.orig 2019-10-23 16:15:35 UTC ++++ levmar/_levmar.c +@@ -15970,7 +15970,9 @@ static PyTypeObject __pyx_type_6levmar_7_levmar__LMFun + sizeof(struct __pyx_obj_6levmar_7_levmar__LMFunc), /*tp_basicsize*/ + 0, /*tp_itemsize*/ + __pyx_tp_dealloc_6levmar_7_levmar__LMFunc, /*tp_dealloc*/ ++#if PY_VERSION_HEX < 0x03090000 + 0, /*tp_print*/ ++#endif + 0, /*tp_getattr*/ + 0, /*tp_setattr*/ + #if PY_MAJOR_VERSION < 3 +@@ -17179,7 +17181,9 @@ static int __pyx_pymod_exec__levmar(PyObject *__pyx_py + __pyx_vtable_6levmar_7_levmar__LMFunc.eval_func = (void (*)(struct __pyx_obj_6levmar_7_levmar__LMFunc *, double *, double *, int, int))__pyx_f_6levmar_7_levmar_7_LMFunc_eval_func; + __pyx_vtable_6levmar_7_levmar__LMFunc.eval_jacf = (void (*)(struct __pyx_obj_6levmar_7_levmar__LMFunc *, double *, double *, int, int))__pyx_f_6levmar_7_levmar_7_LMFunc_eval_jacf; + if (PyType_Ready(&__pyx_type_6levmar_7_levmar__LMFunc) < 0) __PYX_ERR(0, 49, __pyx_L1_error) ++#if PY_VERSION_HEX < 0x03090000 + __pyx_type_6levmar_7_levmar__LMFunc.tp_print = 0; ++#endif + if (__Pyx_SetVtable(__pyx_type_6levmar_7_levmar__LMFunc.tp_dict, __pyx_vtabptr_6levmar_7_levmar__LMFunc) < 0) __PYX_ERR(0, 49, __pyx_L1_error) + if (PyObject_SetAttrString(__pyx_m, "_LMFunc", (PyObject *)&__pyx_type_6levmar_7_levmar__LMFunc) < 0) __PYX_ERR(0, 49, __pyx_L1_error) + if (__Pyx_setup_reduce((PyObject*)&__pyx_type_6levmar_7_levmar__LMFunc) < 0) __PYX_ERR(0, 49, __pyx_L1_error)