Debian Patches

Status for qtbase-opensource-src/5.15.15+dfsg-1

Patch Description Author Forwarded Bugs Origin Last update
mime_globs.diff adjust QMimeDatabase implementation When multiple globs match, and the result from magic sniffing is
unrelated to any of those globs, globs have priority and one of them
should be picked up.
no upstream, https://code.qt.io/cgit/qt/qtbase.git/commit/?id=0cbbba2aa5b47224 2021-06-12
fusion_checkable_qpushbutton.diff QPushButton/fusion style: don't ignore QIcon::On icon The fusion style did ignore the QIcon::On icon because it reset
State_On to avoid the visual shift of a pressed button.
But it's not needed to reset this flag - the shift does not happen
because the fusion style does return 0 as offset for
PM_ButtonShiftHorizontal/PM_ButtonShiftVertical so no shifting will
happen.
no upstream, https://code.qt.io/cgit/qt/qtbase.git/commit/?id=e9ccdf4d84157173 2021-08-10
openssl3.diff upstream fixes to support OpenSSL 3.0 https://code.qt.io/cgit/qt/qtbase.git/commit/?id=3186ca3e3972cf46
https://code.qt.io/cgit/qt/qtbase.git/commit/?id=408656c6f9de326c
no upstream, commits 2023-10-17
qmenu_set_transient_parent.diff widgets: setTransientParent() when a QMenu is a window On some platforms, such as X11 and Wayland with some compositors,
QMenu could be a popup window, which should be set a transient parent
to get relative position, which is requested by Wayland.
.
Added transientParentWindow() for QMenuPrivate like QDialogPrivate.
no upstream, https://code.qt.io/cgit/qt/qtbase.git/commit/?id=493a85a9e4688744 2022-10-16
gnome_wayland.diff use wayland platform plugin on GNOME wayland sessions by default Qt wayland platform plugin has improved quite a lot and it is now pretty
much usable on Gnome. It also improves user experience a lot on HiDPI
displays.
no upstream, https://code.qt.io/cgit/qt/qtbase.git/commit/?id=dda7dab8274991e4 2022-10-16
qshapedpixmapwindow_no_tooltip.diff do not set Qt::ToolTip flag for QShapedPixmapWindow This hint is not really needed in the first place and only causes
problems in some environments.
.
For example in KDE, the compositor animates changes in position and size
for all ToolTip windows. However, this is not wanted here because we use
this window as a thumbnail for a drag-and-drop operation.
Before this patch the dragged element would lag significantly behind the
cursor. Now it works as expected, i.e. the dragged element follows the
cursor immediately.
yes upstream upstream, https://code.qt.io/cgit/qt/qtbase.git/commit/?id=180b496b537089b8 2023-05-20
sql_odbc_more_unicode_checks.diff SQL/ODBC: add another check to detect unicode availability in driver Since ODBC does not have a direct way finding out if unicode is
supported by the underlying driver the ODBC plugin does some checks. As
a last resort a sql statement is executed which returns a string. But
even this may fail because the select statement has no FROM part which
is rejected by at least Oracle does not allow. Therefore add another
query which is correct for Oracle & DB2 as a workaround. The question
why the first three statements to check for unicode availability fail
is still open but can't be checked since I've no access to an oracle
database.
no upstream, https://code.qt.io/cgit/qt/qtbase.git/commit/?id=f19320748d282b1e 2024-05-25
a11y_root.diff fix accessibility on XCB when running as root Accessibility actually works when running applications as root, but we
would never properly connect, since the enabledChanged signal would be
emitted from the constructor in this case. So after connecting the
signal, check the value by hand to make sure not to miss the
notification.
.
Only applications running as root would be affected, because all other
applications would go through the asynchronous pattern of getting the
bus address from dbus instead.
invalid upstream upstream, https://code.qt.io/cgit/qt/qtbase.git/commit/?id=db346e711c9af505 2023-04-15
dont_use_O_PATH.diff OpenFile portal: do not use O_PATH fds Using O_PATH requires correctly specifying whether the fd is writable or
not. Stating that the fd is writable without it actually being writable
results into rejection on xdg-desktop-portal side. Other implementations
like xdg-open or gtk have also moved away from O_PATH fds so this will
make a matching implementation and avoid possible rejections from xdp.
no upstream, https://code.qt.io/cgit/qt/qtbase.git/commit/?id=03cbcba7b2b0e42a 2023-05-13
fix_qdbusmacros_h.diff fix capitalization error in auto-generated qdbusmacros.h include no upstream, https://code.qt.io/cgit/qt/qtbase.git/commit/?id=dca0304c26012a57 2023-05-13
libxkbcommon_1.6.0.diff xkb: fix build with libxkbcommon 1.6.0 and later A few XKB_KEY_dead_* defines got removed from 1.6.0. See also
https://github.com/xkbcommon/libxkbcommon/blob/6073565903488cb5b9a8d37fdc4a7c2f9d7ad04d/NEWS#L9-L14
https://gitlab.freedesktop.org/xorg/proto/xorgproto/-/merge_requests/70/diffs?commit_id=cb44799b72f611eb4c9d7cc185bc3b09e070be08
no upstream, https://code.qt.io/cgit/qt/qtbase.git/commit/?id=8af35d27e8f02bbb 2023-10-17
loongarch.diff add support for LoongArch no upstream, https://code.qt.io/cgit/qt/qtbase.git/commit/?id=bdc16f086f1664b5 2024-03-09
CVE-2023-51714.diff HPack: fix incorrect integer overflow check https://download.qt.io/official_releases/qt/5.15/0001-CVE-2023-51714-qtbase-5.15.diff
https://download.qt.io/official_releases/qt/5.15/0002-CVE-2023-51714-qtbase-5.15.diff
no upstream 2024-01-13
CVE-2024-25580.diff improve KTX file reading memory safety no upstream, https://download.qt.io/official_releases/qt/5.15/CVE-2024-25580-qtbase-5.15.diff 2024-02-17
CVE-2024-39936.diff HTTP2: delay any communication until encrypted() can be responded to We have the encrypted() signal that lets users do extra checks on the
established connection. It is emitted as BlockingQueued, so the HTTP
thread stalls until it is done emitting. Users can potentially call
abort() on the QNetworkReply at that point, which is passed as a Queued
call back to the HTTP thread. That means that any currently queued
signal emission will be processed before the abort() call is processed.
.
In the case of HTTP2 it is a little special since it is multiplexed and
the code is built to start requests as they are available. This means
that, while the code worked fine for HTTP1, since one connection only
has one request, it is not working for HTTP2, since we try to send more
requests in-between the encrypted() signal and the abort() call.
.
This patch changes the code to delay any communication until the
encrypted() signal has been emitted and processed, for HTTP2 only.
It's done by adding a few booleans, both to know that we have to return
early and so we can keep track of what events arose and what we need to
resume once enough time has passed that any abort() call must have been
processed.
no upstream, https://code.qt.io/cgit/qt/qtbase.git/commit/?id=b1e75376cc3adfc7 2024-07-14
gcc_14.diff QFutureInterface: fix build with GCC14/C++20: template-id not allowed When declaring a constructor, you must use the injected name, not a
template.
.
qfutureinterface.h:472:37: error: template-id not allowed for constructor in C++20 [-Werror=template-id-cdtor]
no upstream, https://code.qt.io/cgit/qt/qtbase.git/commit/?id=111c08d0eaa13465 2024-07-24
revert_statusnotifierhost_checking.diff Revert "D-Bus system tray: properly check whether StatusNotifierHost available" The original commit was made based on a KDE workaround for
libdbusmenu-qt crash, but Qt is not using libdbusmenu-qt, Qt is not
watching for StatusNotifierHost registration and Qt is not capable
to switch backends on the fly leading to tray support being
not detected on Plasma Wayland sessions and falling back to the poor
legacy protocol on X11.
no upstream, https://code.qt.io/cgit/qt/qtbase.git/commit/?id=447f3ade9a284d52 2024-07-24
dont_fallback_to_x11_tray_on_non_x11.diff don't fallback to X11 tray backend on non-X11 This allows to have system tray support on the fly on Wayland at least
where only QDBusTrayIcon is possible and no need to fallback to
QSystemTrayIconSys
no upstream, https://code.qt.io/cgit/qt/qtbase.git/commit/?id=f6cd286e6609cfbf 2024-07-24
check_dbus_tray_availability_every_time.diff check D-Bus tray availability every time It could appear in runtime, this allows applications to watch for it
themselves and re-create QSystemTrayIcon as needed.
no upstream, https://code.qt.io/cgit/qt/qtbase.git/commit/?id=3c93dedc063bf453 2024-07-24
no_htmlinfo_example.diff disable htmlinfo example which contains non-free files Dmitry Shachnev <mitya57@debian.org> not-needed 2014-12-17
remove_privacy_breaches.diff remove non-used privacy-breach code This code makes Lintian unhappy. But we are really not using it, it only
gets inserted when building the online doc.
Anyways the best way to calm down Lintian is to simply remove it.
Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> not-needed 2015-02-18
link_fbclient.diff build ibase sql plugin against firebird Dmitry Shachnev <mitya57@debian.org> no 2017-06-30
gnukfreebsd_linker_warnings.diff catch linker warnings in some config tests Without this, qmake wrongly thinks that the tests succeed, for example:
.
./config.tests/unix/futimens/futimens.cpp:44: warning: futimens is not implemented and will always fail
test config.corelib.tests.futimens succeeded
Dmitry Shachnev <mitya57@debian.org> yes upstream 2019-03-02
armv4.diff support ARMv4 architecture, needed for armel builds Dmitry Shachnev <mitya57@debian.org> no 2016-07-01
qdoc_default_incdirs.diff pass default include directories to qdoc Martin Smith <martin.smith@qt.io> no upstream 2020-01-28
path_max.diff Avoid unconditional PATH_MAX usage Use a "safe" size in case PATH_MAX is not defined; in the end, this should not
be used, as a allocating realpath() will be used instead.
Pino Toscano <toscano.pino@tiscali.it> no 2020-04-19
qstorageinfo_linux.diff Limit Linux-only code with Q_OS_LINUX The QStorageInfo/QStorageIterator implementation used for Linux is used also
on Hurd, as it uses an interface provided by GNU libc.
QStorageIterator::device() tries to use PATH_MAX (unavailable on the Hurd)
to lookup a /dev/block/ path, which exists on Linux only; hence, perform that
check within a Q_OS_LINUX block.
Pino Toscano <toscano.pino@tiscali.it> no 2020-04-19
cross_build_mysql.diff call pkgconfig in order to be able to cross build qtbase with MySql. Qt's build system calls mysql_config... which won't work in a cross build
environment like Debian's, as it will throw an exec format error.
.
In order to solve this call pkgconfig and use mysqlclient.pc.
Helmut Grohne <helmut@subdivi.de> not-needed debian
cast_types_for_egl_x11_test.diff properly cast types for libglvnd 1.3.4 Rex Dieter <rdieter@gmail.com> no https://src.fedoraproject.org/rpms/qt5-qtbase/blob/rawhide/f/qtbase-everywhere-src-5.15.2-libglvnd.patch

All known versions for source package 'qtbase-opensource-src'

Links