Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package inkscape for openSUSE:Factory 
checked in at 2021-12-01 20:46:28
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/inkscape (Old)
 and      /work/SRC/openSUSE:Factory/.inkscape.new.31177 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "inkscape"

Wed Dec  1 20:46:28 2021 rev:116 rq:934862 version:1.1.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/inkscape/inkscape.changes        2021-09-28 
19:16:22.992175544 +0200
+++ /work/SRC/openSUSE:Factory/.inkscape.new.31177/inkscape.changes     
2021-12-02 02:14:39.346772195 +0100
@@ -1,0 +2,12 @@
+Tue Nov 30 19:02:50 UTC 2021 - Bj??rn Lie <[email protected]>
+
+- Ensure we download the same tarball every time. Also add sig and
+  keyring as sources and verify that we have the right one.
+
+-------------------------------------------------------------------
+Tue Nov 23 17:14:23 UTC 2021 - Bj??rn Lie <[email protected]>
+
+- Add ebc4de4bfe34d6c5f2e27da47f5d62e4de0394fd.patch: Fix build
+  with poppler 21.11.0, patch from upstream git.
+
+-------------------------------------------------------------------

New:
----
  ebc4de4bfe34d6c5f2e27da47f5d62e4de0394fd.patch
  inkscape-1.1.1_2021-09-20_3bf5ae0d25.tar.xz.sig
  inkscape.keyring

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ inkscape.spec ++++++
--- /var/tmp/diff_new_pack.KBKpq0/_old  2021-12-02 02:14:39.994770220 +0100
+++ /var/tmp/diff_new_pack.KBKpq0/_new  2021-12-02 02:14:39.998770207 +0100
@@ -24,10 +24,17 @@
 Summary:        Vector Illustration Program
 License:        GPL-3.0-only
 URL:            https://inkscape.org/
-Source:         
https://inkscape.org/gallery/item/29255/inkscape-%{_version}.tar.xz
+
+Source:         
https://inkscape.org/gallery/item/29255/inkscape-%{version}.tar.xz#/inkscape-%{_version}.tar.xz
 # openSUSE palette file
 Source1:        openSUSE.gpl
 Source2:        inkscape-split-extensions-extra.py
+Source98:       
https://media.inkscape.org/media/resources/sigs/inkscape-%{_version}.tar.xz.sig
+Source99:       https://inkscape.org/~MarcJeanmougin/gpg#/%name.keyring
+
+# PATCH-FIX-UPSTREAM ebc4de4bfe34d6c5f2e27da47f5d62e4de0394fd.patch -- Fix 
build with poppler 21.11.0
+Patch0:         
https://gitlab.com/inkscape/inkscape/-/commit/ebc4de4bfe34d6c5f2e27da47f5d62e4de0394fd.patch
+
 BuildRequires:  cmake
 BuildRequires:  double-conversion-devel
 BuildRequires:  fdupes

++++++ ebc4de4bfe34d6c5f2e27da47f5d62e4de0394fd.patch ++++++
>From ebc4de4bfe34d6c5f2e27da47f5d62e4de0394fd Mon Sep 17 00:00:00 2001
From: Evangelos Foutras <[email protected]>
Date: Mon, 1 Nov 2021 21:45:38 +0200
Subject: [PATCH] Fix build with poppler 21.11.0

GfxFont::tag is now of type std::string instead of GooString *.
(cherry picked from commit 5724c21b9cb7b6176a7b36ca24068b148c817e82)
---
 src/extension/internal/pdfinput/pdf-parser.cpp | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/extension/internal/pdfinput/pdf-parser.cpp 
b/src/extension/internal/pdfinput/pdf-parser.cpp
index e3d04d544b..feecefa043 100644
--- a/src/extension/internal/pdfinput/pdf-parser.cpp
+++ b/src/extension/internal/pdfinput/pdf-parser.cpp
@@ -2169,7 +2169,11 @@ void PdfParser::opSetFont(Object args[], int /*numArgs*/)
   }
   if (printCommands) {
     printf("  font: tag=%s name='%s' %g\n",
+#if POPPLER_CHECK_VERSION(21,11,0)
+          font->getTag().c_str(),
+#else
           font->getTag()->getCString(),
+#endif
           font->getName() ? font->getName()->getCString() : "???",
           args[1].getNum());
     fflush(stdout);
-- 
GitLab

Reply via email to