Refresh patches and remove patches that have been applied upstream.

ci/unstable
Patrick Franz 12 months ago
parent e79317fb02
commit 80fdb1ae1b
No known key found for this signature in database
GPG Key ID: 9E9F7A603077FE56

1
debian/changelog vendored

@ -3,6 +3,7 @@ qt6-base (6.6.2+dfsg-1) UNRELEASED; urgency=medium
[ Patrick Franz ] [ Patrick Franz ]
* New upstream release (6.6.2). * New upstream release (6.6.2).
* Update ABI to 6.6.2. * Update ABI to 6.6.2.
* Refresh patches and remove patches that have been applied upstream.
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Thu, 15 Feb 2024 18:14:07 +0100 -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Thu, 15 Feb 2024 18:14:07 +0100

@ -1,19 +1,7 @@
--- ---
cmake/QtBuildInternals/QtBuildInternalsConfig.cmake | 2 --
examples/sql/CMakeLists.txt | 2 +- examples/sql/CMakeLists.txt | 2 +-
src/tools/configure.cmake | 2 +- src/tools/configure.cmake | 2 +-
3 files changed, 2 insertions(+), 4 deletions(-) 3 files changed, 2 insertions(+), 4 deletions(-)
--- a/cmake/QtBuildInternals/QtBuildInternalsConfig.cmake
+++ b/cmake/QtBuildInternals/QtBuildInternalsConfig.cmake
@@ -170,8 +170,6 @@ function(qt_build_internals_disable_pkg_
set(FEATURE_pkg_config "${pkg_config_enabled}" CACHE STRING "Using pkg-config")
if(NOT pkg_config_enabled)
qt_build_internals_disable_pkg_config()
- else()
- unset(PKG_CONFIG_EXECUTABLE CACHE)
endif()
endfunction()
--- a/src/tools/configure.cmake --- a/src/tools/configure.cmake
+++ b/src/tools/configure.cmake +++ b/src/tools/configure.cmake

@ -1,17 +0,0 @@
diff --git a/src/network/access/http2/hpacktable.cpp b/src/network/access/http2/hpacktable.cpp
index 0b69ee86a9..f20ec92d4c 100644
--- a/src/network/access/http2/hpacktable.cpp
+++ b/src/network/access/http2/hpacktable.cpp
@@ -26,8 +26,10 @@ HeaderSize entry_size(QByteArrayView name, QByteArrayView value)
// for counting the number of references to the name and value would have
// 32 octets of overhead."
- const unsigned sum = unsigned(name.size() + value.size());
- if (std::numeric_limits<unsigned>::max() - 32 < sum)
+ size_t sum;
+ if (qAddOverflow(size_t(name.size()), size_t(value.size()), &sum))
+ return HeaderSize();
+ if (sum > (std::numeric_limits<unsigned>::max() - 32))
return HeaderSize();
return HeaderSize(true, quint32(sum + 32));
}

@ -3,20 +3,20 @@ Description: remove RPATH/RUNPATH from examples' binaries.
need to set RPATH/RUNPATH. need to set RPATH/RUNPATH.
Author: Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Author: Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>
Forwarded: not-needed Forwarded: not-needed
Last-Update: 2023-10-10 Last-Update: 2024-02-15
--- ---
cmake/QtBuildInternals/QtBuildInternalsConfig.cmake | 2 +- cmake/QtBuildInternals/QtBuildInternalsConfig.cmake | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-) 1 file changed, 1 insertion(+), 1 deletion(-)
--- a/cmake/QtBuildInternals/QtBuildInternalsConfig.cmake --- a/cmake/QtBuildRepoExamplesHelpers.cmake
+++ b/cmake/QtBuildInternals/QtBuildInternalsConfig.cmake +++ b/cmake/QtBuildRepoExamplesHelpers.cmake
@@ -979,7 +979,7 @@ macro(qt_examples_build_begin) @@ -97,7 +97,7 @@ macro(qt_examples_build_begin)
# This means that installed examples are not relocatable at the moment. We would need to # This means that installed examples are not relocatable at the moment. We would need to
# annotate where each example is installed to, to be able to derive a relative rpath, and it # annotate where each example is installed to, to be able to derive a relative rpath, and it
# seems there's no way to query such information from CMake itself. # seems there's no way to query such information from CMake itself.
- set(CMAKE_INSTALL_RPATH "${_default_install_rpath}") - set(CMAKE_INSTALL_RPATH "${_default_install_rpath}")
+ #set(CMAKE_INSTALL_RPATH "${_default_install_rpath}") + #set(CMAKE_INSTALL_RPATH "${_default_install_rpath}")
install(CODE " install(CODE "
# Backup CMAKE_INSTALL_PREFIX because we're going to change it in each example subdirectory # Backup CMAKE_INSTALL_PREFIX because we're going to change it in each example subdirectory

@ -1,6 +1,3 @@
# fixed in 6.6.2
cve-2023-51714.diff
# Needs to be fixed upstream. # Needs to be fixed upstream.
Add-SH-detection.patch Add-SH-detection.patch

Loading…
Cancel
Save