Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libreoffice for openSUSE:Factory checked in at 2025-07-08 15:28:45 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libreoffice (Old) and /work/SRC/openSUSE:Factory/.libreoffice.new.7373 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libreoffice" Tue Jul 8 15:28:45 2025 rev:309 rq:1291135 version:25.2.4.3 Changes: -------- --- /work/SRC/openSUSE:Factory/libreoffice/libreoffice.changes 2025-06-24 20:46:52.870663523 +0200 +++ /work/SRC/openSUSE:Factory/.libreoffice.new.7373/libreoffice.changes 2025-07-08 15:29:07.750470217 +0200 @@ -1,0 +2,6 @@ +Fri Jul 4 14:29:15 UTC 2025 - Bjørn Lie <bjorn....@gmail.com> + +- Add fix_build_with_poppler_25.05.patch: Fix build with current + poppler. + +------------------------------------------------------------------- New: ---- fix_build_with_poppler_25.05.patch ----------(New B)---------- New: - Add fix_build_with_poppler_25.05.patch: Fix build with current poppler. ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libreoffice.spec ++++++ --- /var/tmp/diff_new_pack.EAENmg/_old 2025-07-08 15:29:15.602798275 +0200 +++ /var/tmp/diff_new_pack.EAENmg/_new 2025-07-08 15:29:15.606798443 +0200 @@ -141,6 +141,8 @@ Patch992: python34-no-f-strings.patch # PATCH-FIX-OPENSUSE override date in clucene files (boo#1047218) Patch995: reproducible-clucene.patch +# PATCH-FIX-UPSTREAM fix_build_with_poppler_25.05.patch +Patch996: fix_build_with_poppler_25.05.patch BuildRequires: %{name}-share-linker BuildRequires: ant BuildRequires: autoconf @@ -1104,6 +1106,7 @@ %if 0%{?suse_version} < 1550 %patch -P 992 -p1 %endif +%patch -P 996 -p1 # Disable some of the failing tests (some are random) %if 0%{?suse_version} < 1330 ++++++ fix_build_with_poppler_25.05.patch ++++++ >From 0ee2636304ac049f21415c67e92040f7d6c14d35 Mon Sep 17 00:00:00 2001 From: Xisco Fauli <xiscofa...@libreoffice.org> Date: Mon, 5 May 2025 10:03:10 +0200 Subject: poppler: uggrade to 25.05 Change-Id: Icd2b318cc01bedc5baeb4445a463a136ed6d7c48 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/184953 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofa...@libreoffice.org> --- sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx | 8 ++++++++ 3 files changed, 17 insertions(+), 9 deletions(-) diff --git a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx index dcc1932f7ad7..604ba3b7db2c 100644 --- a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx +++ b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx @@ -1320,11 +1320,19 @@ poppler_bool PDFOutDev::tilingPatternFill(GfxState *state, Gfx *, Catalog *, } } +#if POPPLER_CHECK_VERSION(25, 5, 0) + std::unique_ptr<MemStream> pRgbStr(new MemStream(pBitmapData, 0, + nBitmapWidth * nBitmapHeight * 3, Object::null())); + std::unique_ptr<MemStream> pAlphaStr(new MemStream(reinterpret_cast<char *>(pSplashBitmap->getAlphaPtr()), + 0, nBitmapWidth * nBitmapHeight, Object::null())); + auto aDecode = Object::null(); +#else std::unique_ptr<MemStream> pRgbStr(new MemStream(pBitmapData, 0, nBitmapWidth * nBitmapHeight * 3, Object(objNull))); std::unique_ptr<MemStream> pAlphaStr(new MemStream(reinterpret_cast<char *>(pSplashBitmap->getAlphaPtr()), 0, nBitmapWidth * nBitmapHeight, Object(objNull))); auto aDecode = Object(objNull); +#endif #if POPPLER_CHECK_VERSION(24, 10, 0) std::unique_ptr<GfxImageColorMap> pRgbIdentityColorMap(new GfxImageColorMap(8, &aDecode, std::make_unique<GfxDeviceRGBColorSpace>())); -- cgit v1.2.3