Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package zeal for openSUSE:Factory checked in at 2024-08-02 17:26:55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/zeal (Old) and /work/SRC/openSUSE:Factory/.zeal.new.7232 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "zeal" Fri Aug 2 17:26:55 2024 rev:13 rq:1191042 version:0.7.1 Changes: -------- --- /work/SRC/openSUSE:Factory/zeal/zeal.changes 2024-06-09 20:25:53.261788572 +0200 +++ /work/SRC/openSUSE:Factory/.zeal.new.7232/zeal.changes 2024-08-02 17:27:35.725943002 +0200 @@ -1,0 +2,7 @@ +Sat Jul 27 11:45:35 UTC 2024 - Atri Bhattacharya <badshah...@gmail.com> + +- Add zeal-cmake-find-qt-components.patch -- Explicitly find + necessary Qt6 components to fix build with Qt 6.7.2 + (gh#zealdocs/zeal#1643). + +------------------------------------------------------------------- New: ---- zeal-cmake-find-qt-components.patch BETA DEBUG BEGIN: New: - Add zeal-cmake-find-qt-components.patch -- Explicitly find necessary Qt6 components to fix build with Qt 6.7.2 BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ zeal.spec ++++++ --- /var/tmp/diff_new_pack.4Hu2A7/_old 2024-08-02 17:27:36.341968405 +0200 +++ /var/tmp/diff_new_pack.4Hu2A7/_new 2024-08-02 17:27:36.345968570 +0200 @@ -28,6 +28,8 @@ Source0: %{name}-%{version}.tar.xz # `help2man zeal > zeal.1` can't be run without X started. Source9: zeal.1 +# PATCH-FIX-UPSTREAM zeal-cmake-find-qt-components.patch gh#zealdocs/zeal#1643 badshah...@gmail.com -- Explicitly find necessary Qt6 components to fix build with Qt 6.7.2 +Patch0: zeal-cmake-find-qt-components.patch BuildRequires: cmake BuildRequires: extra-cmake-modules BuildRequires: fdupes @@ -47,8 +49,8 @@ Requires: libQt6Sql6 >= 6.2.0 Requires(post): hicolor-icon-theme Requires(post): update-desktop-files -Requires(postun): hicolor-icon-theme -Requires(postun): update-desktop-files +Requires(postun):hicolor-icon-theme +Requires(postun):update-desktop-files %description Zeal is an offline API documentation browser inspired by Dash ++++++ zeal-cmake-find-qt-components.patch ++++++ --- src/app/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: zeal-0.7.1/src/app/CMakeLists.txt =================================================================== --- zeal-0.7.1.orig/src/app/CMakeLists.txt +++ zeal-0.7.1/src/app/CMakeLists.txt @@ -1,4 +1,4 @@ -find_package(Qt${QT_VERSION_MAJOR} COMPONENTS Widgets REQUIRED) +find_package(Qt${QT_VERSION_MAJOR} COMPONENTS Concurrent Network WebChannel WebEngineWidgets Widgets REQUIRED) if (Qt${QT_VERSION_MAJOR}Widgets_VERSION VERSION_LESS QT_MINIMUM_VERSION) message(FATAL_ERROR "Qt version >= ${QT_MINIMUM_VERSION} is required.") endif()