Version in base suite: 7.12.0-1 Base version: mlt_7.12.0-1 Target version: mlt_7.12.0-1+deb12u1 Base file: /srv/ftp-master.debian.org/ftp/pool/main/m/mlt/mlt_7.12.0-1.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/m/mlt/mlt_7.12.0-1+deb12u1.dsc changelog | 8 ++++++++ patches/01-wrong-python-function.diff | 19 +++++++++++++++++++ patches/series | 1 + 3 files changed, 28 insertions(+) diff -Nru mlt-7.12.0/debian/changelog mlt-7.12.0/debian/changelog --- mlt-7.12.0/debian/changelog 2022-11-22 14:11:24.000000000 +0000 +++ mlt-7.12.0/debian/changelog 2025-04-24 11:01:51.000000000 +0000 @@ -1,3 +1,11 @@ +mlt (7.12.0-1+deb12u1) bookworm; urgency=medium + + * Add patch 01-wrong-python-function to fix not migrated python3-mlt function + calls. + Closes: #1104027 + + -- Patrick Matthäi Thu, 24 Apr 2025 13:01:51 +0200 + mlt (7.12.0-1) unstable; urgency=medium * New upstream release. diff -Nru mlt-7.12.0/debian/patches/01-wrong-python-function.diff mlt-7.12.0/debian/patches/01-wrong-python-function.diff --- mlt-7.12.0/debian/patches/01-wrong-python-function.diff 1970-01-01 00:00:00.000000000 +0000 +++ mlt-7.12.0/debian/patches/01-wrong-python-function.diff 2025-04-24 11:01:43.000000000 +0000 @@ -0,0 +1,19 @@ +# There are two missing replaced functions in the python3-mlt module. +# Closes: #1104027 + +diff -Naur mlt-7.12.0.orig/src/swig/mlt.i mlt-7.12.0/src/swig/mlt.i +--- mlt-7.12.0.orig/src/swig/mlt.i 2022-11-19 20:57:22.000000000 +0100 ++++ mlt-7.12.0/src/swig/mlt.i 2025-04-24 12:59:57.571166597 +0200 +@@ -69,10 +69,10 @@ + + #if defined(SWIGPYTHON) + %feature("shadow") Frame::get_waveform(int, int) %{ +- def get_waveform(*args): return _mlt.frame_get_waveform(*args) ++ def get_waveform(*args): return _mlt7.frame_get_waveform(*args) + %} + %feature("shadow") Frame::get_image(mlt_image_format&, int&, int&) %{ +- def get_image(*args): return _mlt.frame_get_image(*args) ++ def get_image(*args): return _mlt7.frame_get_image(*args) + %} + #endif + diff -Nru mlt-7.12.0/debian/patches/series mlt-7.12.0/debian/patches/series --- mlt-7.12.0/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ mlt-7.12.0/debian/patches/series 2025-04-24 11:00:49.000000000 +0000 @@ -0,0 +1 @@ +01-wrong-python-function.diff