Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package qt6-grpc for openSUSE:Factory checked in at 2023-10-02 20:05:30 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/qt6-grpc (Old) and /work/SRC/openSUSE:Factory/.qt6-grpc.new.28202 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "qt6-grpc" Mon Oct 2 20:05:30 2023 rev:5 rq:1114492 version:6.5.3 Changes: -------- --- /work/SRC/openSUSE:Factory/qt6-grpc/qt6-grpc.changes 2023-07-26 13:22:57.387657141 +0200 +++ /work/SRC/openSUSE:Factory/.qt6-grpc.new.28202/qt6-grpc.changes 2023-10-02 20:07:15.392509364 +0200 @@ -1,0 +2,8 @@ +Thu Sep 28 07:34:09 UTC 2023 - Christophe Marin <christo...@krop.fr> + +- Update to 6.5.3 + * https://www.qt.io/blog/qt-6.5.3-released +- Drop patch, merged upstream: + * 0002-Remove-protobuf-logging.h-include.patch + +------------------------------------------------------------------- Old: ---- 0002-Remove-protobuf-logging.h-include.patch qtgrpc-everywhere-src-6.5.2.tar.xz New: ---- qtgrpc-everywhere-src-6.5.3.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ qt6-grpc.spec ++++++ --- /var/tmp/diff_new_pack.CKzhOK/_old 2023-10-02 20:07:16.660554966 +0200 +++ /var/tmp/diff_new_pack.CKzhOK/_new 2023-10-02 20:07:16.660554966 +0200 @@ -16,7 +16,7 @@ # -%define real_version 6.5.2 +%define real_version 6.5.3 %define short_version 6.5 %define short_name qtgrpc %define tar_name qtgrpc-everywhere-src @@ -28,16 +28,15 @@ %endif # Name: qt6-grpc%{?pkg_suffix} -Version: 6.5.2 +Version: 6.5.3 Release: 0 Summary: gRPC and Protobuf generator and bindings for Qt framework License: GPL-3.0-or-later URL: https://www.qt.io -Source: https://www.nic.funet.fi/pub/mirrors/download.qt-project.org/official_releases/qt/%{short_version}/%{real_version}%{tar_suffix}/submodules/%{tar_name}-%{real_version}%{tar_suffix}.tar.xz +Source: https://download.qt.io/official_releases/qt/%{short_version}/%{real_version}%{tar_suffix}/submodules/%{tar_name}-%{real_version}%{tar_suffix}.tar.xz # PATCH-FIX-UPSTREAM Patch0: 0001-Fix-include-of-std-set.patch -Patch1: 0002-Remove-protobuf-logging.h-include.patch -Patch2: 0003-Add-missing-memory-include.patch +Patch1: 0003-Add-missing-memory-include.patch BuildRequires: pkgconfig BuildRequires: qt6-core-private-devel BuildRequires: cmake(Qt6Core) = %{real_version} ++++++ 0001-Fix-include-of-std-set.patch ++++++ --- /var/tmp/diff_new_pack.CKzhOK/_old 2023-10-02 20:07:16.680555686 +0200 +++ /var/tmp/diff_new_pack.CKzhOK/_new 2023-10-02 20:07:16.684555830 +0200 @@ -1,7 +1,7 @@ -From 0d0d14e5510127e9c5162e140a9ef6d004c2616a Mon Sep 17 00:00:00 2001 +From d47efe2e8f26657c15567fef949cf9137e7f056a Mon Sep 17 00:00:00 2001 From: Konrad Kujawa <konrad.kuj...@qt.io> Date: Thu, 22 Jun 2023 15:30:20 +0200 -Subject: [PATCH 1/3] Fix include of std::set +Subject: [PATCH] Fix include of std::set With new version of gRPC, compiler complains about missing include of the std::set. Move include from .cpp to .h files. @@ -12,12 +12,12 @@ --- src/tools/qtgrpcgen/qgrpcgenerator.cpp | 1 - src/tools/qtgrpcgen/qgrpcgenerator.h | 3 ++- - src/tools/qtprotobufgen/qprotobufgenerator.cpp | 4 ++-- + src/tools/qtprotobufgen/qprotobufgenerator.cpp | 2 +- src/tools/qtprotobufgen/qprotobufgenerator.h | 2 ++ - 4 files changed, 6 insertions(+), 4 deletions(-) + 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/tools/qtgrpcgen/qgrpcgenerator.cpp b/src/tools/qtgrpcgen/qgrpcgenerator.cpp -index 4cab74d..3c2597e 100644 +index a715bae..9a11c3c 100644 --- a/src/tools/qtgrpcgen/qgrpcgenerator.cpp +++ b/src/tools/qtgrpcgen/qgrpcgenerator.cpp @@ -10,7 +10,6 @@ @@ -26,8 +26,8 @@ -#include <set> #include <google/protobuf/compiler/code_generator.h> - #include <google/protobuf/stubs/logging.h> - #include <google/protobuf/stubs/common.h> + #include <google/protobuf/descriptor.h> + #include <google/protobuf/io/printer.h> diff --git a/src/tools/qtgrpcgen/qgrpcgenerator.h b/src/tools/qtgrpcgen/qgrpcgenerator.h index 809925e..996d37c 100644 --- a/src/tools/qtgrpcgen/qgrpcgenerator.h @@ -44,23 +44,19 @@ namespace google::protobuf { class FileDescriptor; diff --git a/src/tools/qtprotobufgen/qprotobufgenerator.cpp b/src/tools/qtprotobufgen/qprotobufgenerator.cpp -index 5a1ccc2..8eaab81 100644 +index 85f7444..0c878ee 100644 --- a/src/tools/qtprotobufgen/qprotobufgenerator.cpp +++ b/src/tools/qtprotobufgen/qprotobufgenerator.cpp -@@ -12,11 +12,10 @@ - #include "utils.h" - #include "options.h" +@@ -15,8 +15,8 @@ + #include <cassert> --#include <cassert> -- #include <array> +#include <cassert> #include <numeric> -#include <set> -+ - #include <google/protobuf/stubs/logging.h> #include <google/protobuf/stubs/common.h> #include <google/protobuf/io/printer.h> + #include <google/protobuf/io/zero_copy_stream.h> diff --git a/src/tools/qtprotobufgen/qprotobufgenerator.h b/src/tools/qtprotobufgen/qprotobufgenerator.h index 8aec33a..6239fd4 100644 --- a/src/tools/qtprotobufgen/qprotobufgenerator.h @@ -74,4 +70,7 @@ namespace google::protobuf { class FileDescriptor; class Descriptor; +-- +2.42.0 + ++++++ qtgrpc-everywhere-src-6.5.2.tar.xz -> qtgrpc-everywhere-src-6.5.3.tar.xz ++++++ ++++ 1631 lines of diff (skipped)