Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package google-or-tools for openSUSE:Factory
checked in at 2023-07-10 16:39:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/google-or-tools (Old)
and /work/SRC/openSUSE:Factory/.google-or-tools.new.23466 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "google-or-tools"
Mon Jul 10 16:39:44 2023 rev:6 rq:1097851 version:9.6
Changes:
--------
--- /work/SRC/openSUSE:Factory/google-or-tools/google-or-tools.changes
2023-05-16 14:27:20.259711521 +0200
+++
/work/SRC/openSUSE:Factory/.google-or-tools.new.23466/google-or-tools.changes
2023-07-10 16:39:44.958488721 +0200
@@ -1,0 +2,6 @@
+Sun Jul 9 21:21:56 UTC 2023 - Stefan Brüns <[email protected]>
+
+- Fix build with latest protobuf, add
+ 0001-base-Remove-AbslStringify.patch
+
+-------------------------------------------------------------------
New:
----
0001-base-Remove-AbslStringify.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ google-or-tools.spec ++++++
--- /var/tmp/diff_new_pack.SoqIJd/_old 2023-07-10 16:39:45.738493370 +0200
+++ /var/tmp/diff_new_pack.SoqIJd/_new 2023-07-10 16:39:45.742493393 +0200
@@ -31,6 +31,7 @@
Patch5: 0001-Only-add-relevant-directories-to-sample-RUNPATHs.patch
Patch6: 0002-Only-add-relevant-directories-to-flatzinc-library-ex.patch
Patch7: 0003-Only-add-relevant-directories-to-sat_solver-RUNPATHs.patch
+Patch8: 0001-base-Remove-AbslStringify.patch
BuildRequires: abseil-cpp-devel >= 20230105.0
BuildRequires: cmake >= 3.18
BuildRequires: fdupes
++++++ 0001-base-Remove-AbslStringify.patch ++++++
>From 7904505ec9330656859decd8837fc597ad708bec Mon Sep 17 00:00:00 2001
From: Mizux Seiha <[email protected]>
Date: Tue, 14 Mar 2023 16:44:30 +0100
Subject: [PATCH] base: Remove AbslStringify()
---
ortools/base/logging.h | 11 -----------
1 file changed, 11 deletions(-)
diff --git a/ortools/base/logging.h b/ortools/base/logging.h
index 7f570f969e6..509e8873adf 100644
--- a/ortools/base/logging.h
+++ b/ortools/base/logging.h
@@ -52,15 +52,4 @@ enum LogSeverity {
};
} // namespace google
-// Implementation of the `AbslStringify` interface. This adds `DebugString()`
-// to the sink. Do not rely on exact format.
-namespace google {
-namespace protobuf {
-template <typename Sink>
-void AbslStringify(Sink& sink, const Message& msg) {
- sink.Append(msg.DebugString());
-}
-} // namespace protobuf
-} // namespace google
-
#endif // OR_TOOLS_BASE_LOGGING_H_