Version in base suite: 3.20.2-1 Base version: gambas3_3.20.2-1 Target version: gambas3_3.20.2-1+deb13u1 Base file: /srv/ftp-master.debian.org/ftp/pool/main/g/gambas3/gambas3_3.20.2-1.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/g/gambas3/gambas3_3.20.2-1+deb13u1.dsc changelog | 8 ++++++++ patches/gb.qt6.ext_prevent_crash.patch | 24 ++++++++++++++++++++++++ patches/series | 1 + 3 files changed, 33 insertions(+) dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmp544ip04e/gambas3_3.20.2-1.dsc: no acceptable signature found dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmp544ip04e/gambas3_3.20.2-1+deb13u1.dsc: no acceptable signature found diff: /srv/release.debian.org/tmp/mmCQqug2PK/gambas3-3.20.2/comp/src/gb.gui.base/gambas.png: No such file or directory diff: /srv/release.debian.org/tmp/fZ2A0AL3ag/gambas3-3.20.2/comp/src/gb.gui.base/gambas.png: No such file or directory diff -Nru gambas3-3.20.2/debian/changelog gambas3-3.20.2/debian/changelog --- gambas3-3.20.2/debian/changelog 2025-03-07 22:30:21.000000000 +0000 +++ gambas3-3.20.2/debian/changelog 2026-05-11 10:21:23.000000000 +0000 @@ -1,3 +1,11 @@ +gambas3 (3.20.2-1+deb13u1) trixie; urgency=medium + + * Team upload + * Fix qt6 component trying to load non-existing qt5 dependency + (Closes: #1136260) + + -- Bastian Germann Mon, 11 May 2026 12:21:23 +0200 + gambas3 (3.20.2-1) unstable; urgency=medium * Team upload diff -Nru gambas3-3.20.2/debian/patches/gb.qt6.ext_prevent_crash.patch gambas3-3.20.2/debian/patches/gb.qt6.ext_prevent_crash.patch --- gambas3-3.20.2/debian/patches/gb.qt6.ext_prevent_crash.patch 1970-01-01 00:00:00.000000000 +0000 +++ gambas3-3.20.2/debian/patches/gb.qt6.ext_prevent_crash.patch 2026-05-11 10:21:23.000000000 +0000 @@ -0,0 +1,24 @@ +Origin: upstream, eb1318a1e377264d7f7ebfbea5e82ae4df4ad7d4 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Beno=C3=AEt=20Minisini?= +Date: Wed, 2 Apr 2025 17:10:27 +0200 +Subject: Load the correct component interface and do not crash anymore. + +[GB.QT6.EXT] +* BUG: Load the correct component interface and do not crash anymore. +--- + gb.qt6/src/ext/main.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/gb.qt6/src/ext/main.cpp b/gb.qt6/src/ext/main.cpp +index 0357c3e3f..77c46d99c 100644 +--- a/gb.qt6/src/ext/main.cpp ++++ b/gb.qt6/src/ext/main.cpp +@@ -54,7 +54,7 @@ GB_DESC *GB_CLASSES[] EXPORT = + + int EXPORT GB_INIT(void) + { +- GB.GetInterface("gb.qt5", QT_INTERFACE_VERSION, &QT); ++ GB.GetInterface("gb.qt6", QT_INTERFACE_VERSION, &QT); + + return 0; + } diff -Nru gambas3-3.20.2/debian/patches/series gambas3-3.20.2/debian/patches/series --- gambas3-3.20.2/debian/patches/series 2025-03-07 22:00:56.000000000 +0000 +++ gambas3-3.20.2/debian/patches/series 2026-05-11 10:21:23.000000000 +0000 @@ -1 +1,2 @@ +gb.qt6.ext_prevent_crash.patch nonverbose_build.patch