Add patch for python 3.12

This commit is contained in:
Jerry James 2023-07-12 22:21:36 -06:00
parent cfa2a17e5e
commit 4fcc29d0a3
2 changed files with 27 additions and 0 deletions

22
swig-python-3.12.patch Normal file
View File

@ -0,0 +1,22 @@
Immortal objects now have a fixed refcount, which makes this test fail:
checking python testcase langobj (with run test)
Traceback (most recent call last):
File "/builddir/build/BUILD/swig-4.1.1/Examples/test-suite/python/./langobj_runme.py", line 13, in <module>
raise RuntimeError
RuntimeError
make[1]: *** [Makefile:123: langobj.cpptest] Error 1
See https://peps.python.org/pep-0683/ for more information.
--- swig-4.1.1/Examples/test-suite/python/langobj_runme.py.orig 2022-11-30 00:35:05.000000000 -0700
+++ swig-4.1.1/Examples/test-suite/python/langobj_runme.py 2023-07-12 15:48:18.745852293 -0600
@@ -2,7 +2,7 @@ import sys
from langobj import *
-x = "hello"
+x = (1,2)
rx = sys.getrefcount(x)
v = identity(x)
rv = sys.getrefcount(v)

View File

@ -81,6 +81,8 @@ Patch1: swig-octave-8.1.patch
# OCaml 5.0 support
# https://github.com/swig/swig/pull/2649
Patch2: swig-ocaml-5.0.patch
# Fix a test that is broken with python 3.12
Patch3: swig-python-3.12.patch
BuildRequires: coreutils
BuildRequires: findutils
@ -367,6 +369,9 @@ install -pm 644 Tools/swig.gdb %{buildroot}%{_datadir}/%{name}/gdb
%{_datadir}/%{name}/gdb
%changelog
* Wed Jul 12 2023 Jerry James <loganjerry@gmail.com> - 4.1.1-8
- Add patch for python 3.12
* Tue Jul 11 2023 Richard W.M. Jones <rjones@redhat.com> - 4.1.1-8
- OCaml 5.0 rebuild for Fedora 39