Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package poppler for openSUSE:Factory checked in at 2022-05-16 18:07:35 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/poppler (Old) and /work/SRC/openSUSE:Factory/.poppler.new.1538 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "poppler" Mon May 16 18:07:35 2022 rev:180 rq:977252 version:22.05.0 Changes: -------- --- /work/SRC/openSUSE:Factory/poppler/poppler.changes 2022-05-08 21:52:19.951461619 +0200 +++ /work/SRC/openSUSE:Factory/.poppler.new.1538/poppler.changes 2022-05-16 18:09:50.501341366 +0200 @@ -1,0 +2,7 @@ +Sat May 14 11:30:35 UTC 2022 - Atri Bhattacharya <badshah...@gmail.com> + +- Add poppler-cairo_font_face_t-incorrect-cacheing.patch -- Fix + missing symbols after reloading some pdf files; patch taken from + upstream merge request [glfo#poppler/poppler#1247]. + +------------------------------------------------------------------- New: ---- poppler-cairo_font_face_t-incorrect-cacheing.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ poppler.spec ++++++ --- /var/tmp/diff_new_pack.pbFDdu/_old 2022-05-16 18:09:51.113341853 +0200 +++ /var/tmp/diff_new_pack.pbFDdu/_new 2022-05-16 18:09:51.121341859 +0200 @@ -40,6 +40,8 @@ URL: https://poppler.freedesktop.org Source: %{url}/%{sname}-%{version}.tar.xz Source99: baselibs.conf +# PATCH-FIX-UPSTREAM poppler-cairo_font_face_t-incorrect-cacheing.patch badshah...@gmail.com -- CairoFontEngine: cairo_font_face_t cache should only cache external fonts +Patch0: poppler-cairo_font_face_t-incorrect-cacheing.patch BuildRequires: cmake >= 3.10 %if 0%{?suse_version} < 1550 BuildRequires: gcc11-c++ @@ -210,6 +212,7 @@ %prep %setup -q -n poppler-%{version} +%patch0 -p1 %build %if "%{flavor}" == "qt5" ++++++ poppler-cairo_font_face_t-incorrect-cacheing.patch ++++++ >From 4af747747642ae640b535872d837f28f9a1a7940 Mon Sep 17 00:00:00 2001 From: Adrian Johnson <ajohn...@redneon.com> Date: Thu, 12 May 2022 08:23:48 +0930 Subject: [PATCH] CairoFontEngine: cairo_font_face_t cache should only cache external fonts CaioFontEnginer::fontCache already caches embedded fonts --- poppler/CairoFontEngine.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/poppler/CairoFontEngine.cc b/poppler/CairoFontEngine.cc index 62c4bab65..0a4154e66 100644 --- a/poppler/CairoFontEngine.cc +++ b/poppler/CairoFontEngine.cc @@ -204,7 +204,7 @@ static bool operator==(_ft_face_data &a, _ft_face_data &b) return false; } - if (a.embFontID != b.embFontID) { + if (a.bytes.size() > 0 || b.bytes.size() > 0) { return false; } -- GitLab