Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libreoffice for openSUSE:Factory checked in at 2021-05-25 21:07:57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libreoffice (Old) and /work/SRC/openSUSE:Factory/.libreoffice.new.2988 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libreoffice" Tue May 25 21:07:57 2021 rev:227 rq:894318 version:7.1.3.2 Changes: -------- --- /work/SRC/openSUSE:Factory/libreoffice/libreoffice.changes 2021-05-07 16:45:09.212399907 +0200 +++ /work/SRC/openSUSE:Factory/.libreoffice.new.2988/libreoffice.changes 2021-05-25 21:07:58.995068188 +0200 @@ -1,0 +2,16 @@ +Wed May 19 10:26:14 UTC 2021 - Mark??ta Machov?? <mmach...@suse.com> + +- Recommend libreoffice-qt5 only when it is actually created + +------------------------------------------------------------------- +Tue May 18 06:59:06 UTC 2021 - Martin Li??ka <mli...@suse.cz> + +- Add gcc11-fix-error.patch as fix for boo#1186110. + +------------------------------------------------------------------- +Fri May 14 07:04:57 UTC 2021 - Mark??ta Machov?? <mmach...@suse.com> + +- libreoffice requires at least java 1.8.0 to run properly +- mention some forgotten issues in the changelog + +------------------------------------------------------------------- @@ -78 +94 @@ -- Update to 7.1.0.3 +- Update to 7.1.0.3 (bsc#1176198, bsc#1176197, bsc#1175552) @@ -166 +182 @@ -- Update to 7.0.1.2: +- Update to 7.0.1.2 (bsc#1172941, bsc#1162022): New: ---- gcc11-fix-error.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libreoffice.spec ++++++ --- /var/tmp/diff_new_pack.HYTXfd/_old 2021-05-25 21:08:03.187049794 +0200 +++ /var/tmp/diff_new_pack.HYTXfd/_new 2021-05-25 21:08:03.191049777 +0200 @@ -103,6 +103,8 @@ Patch4: use-comphelper.patch # PATCH-FIX-UPSTREAM https://github.com/LibreOffice/core/commit/9fed7b07af44792012028eb57900640a5ee833cb tdf#141930 document set as unmodified if editengine didn't modify on keyevent Patch5: bsc1184961.patch +# PATCH-FIX-OPENSUSE boo#1186110 fix GCC 11 error +Patch6: gcc11-fix-error.patch # Build with java 8 Patch101: 0001-Revert-java-9-changes.patch # try to save space by using hardlinks @@ -232,7 +234,9 @@ Requires: python3 Recommends: dejavu-fonts Recommends: google-carlito-fonts +%if %{with kdeintegration} Recommends: (libreoffice-qt5 if lxqt-session) +%endif Provides: %{name}-draw-extensions = %{version} Obsoletes: %{name}-draw-extensions < %{version} Provides: %{name}-impress-extensions = %{version} @@ -412,10 +416,10 @@ Requires: %{name}-base-drivers-firebird %else %ifarch %{ix86} -Requires: jre-32 >= 1.6 +Requires: jre-32 >= 1.8 %endif %ifarch x86_64 aarch64 -Requires: jre-64 >= 1.6 +Requires: jre-64 >= 1.8 %endif %endif @@ -617,10 +621,10 @@ Group: Productivity/Office/Suite Requires: %{name} = %{version} %ifarch %{ix86} -Requires: jre-32 >= 1.6 +Requires: jre-32 >= 1.8 %endif %ifarch x86_64 aarch64 ppc64le -Requires: jre-64 >= 1.6 +Requires: jre-64 >= 1.8 %endif %description officebean @@ -648,10 +652,10 @@ Requires(pre): libreoffice = %{version} # the watchWindow extension is written in java %ifarch %{ix86} -Requires: jre-32 >= 9.0 +Requires: jre-32 >= 1.8 %endif %ifarch x86_64 aarch64 ppc64le -Requires: jre-64 >= 9.0 +Requires: jre-64 >= 1.8 %endif %description calc-extensions @@ -668,10 +672,10 @@ Requires(pre): libreoffice = %{version} # the wiki extension is written in java %ifarch %{ix86} -Requires: jre-32 >= 9.0 +Requires: jre-32 >= 1.8 %endif %ifarch x86_64 aarch64 ppc64le -Requires: jre-64 >= 9.0 +Requires: jre-64 >= 1.8 %endif %description writer-extensions @@ -973,6 +977,7 @@ %patch3 %patch4 -p1 %patch5 -p1 +%patch6 -p1 %if 0%{?suse_version} < 1500 %patch101 -p1 %endif ++++++ gcc11-fix-error.patch ++++++ diff --git a/include/sal/log.hxx b/include/sal/log.hxx index 6bb0d1b..5691888 100644 --- a/include/sal/log.hxx +++ b/include/sal/log.hxx @@ -191,7 +191,7 @@ inline char const * unwrapStream(SAL_UNUSED_PARAMETER StreamIgnore const &) { (::std::ostringstream() << stream).str() #else #define SAL_STREAM(stream) \ - (dynamic_cast< ::std::ostringstream & >(::std::ostringstream() << stream).str()) + (dynamic_cast< ::std::ostringstream && >(::std::ostringstream() << stream).str()) #endif /**