Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package Font-Downloader for openSUSE:Factory
checked in at 2026-04-21 12:43:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/Font-Downloader (Old)
and /work/SRC/openSUSE:Factory/.Font-Downloader.new.11940 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "Font-Downloader"
Tue Apr 21 12:43:14 2026 rev:3 rq:1348262 version:10.0.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/Font-Downloader/Font-Downloader.changes
2025-09-12 21:11:17.655690592 +0200
+++
/work/SRC/openSUSE:Factory/.Font-Downloader.new.11940/Font-Downloader.changes
2026-04-21 12:43:35.855378461 +0200
@@ -1,0 +2,10 @@
+Sun Apr 19 07:01:38 UTC 2026 - Atri Bhattacharya <[email protected]>
+
+- Add Font-Downloader-allow-webkit2-4_1.patch: prefer using
+ `WebKit2` version '4.1' over '4.0' when possible. This is
+ probably not worth upstreaming as there is an effort to migrate
+ to Gtk4 and WebKit2 '6.0' anyway, including pending PR#124.
+- Relax version requirement on typelib(webkit2) to allow versions
+ 4.0 or later; on Tumbleweed, this allows using webkit2 4.1.
+
+-------------------------------------------------------------------
New:
----
Font-Downloader-allow-webkit2-4_1.patch
----------(New B)----------
New:
- Add Font-Downloader-allow-webkit2-4_1.patch: prefer using
`WebKit2` version '4.1' over '4.0' when possible. This is
----------(New E)----------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ Font-Downloader.spec ++++++
--- /var/tmp/diff_new_pack.YUSTVx/_old 2026-04-21 12:43:36.655411701 +0200
+++ /var/tmp/diff_new_pack.YUSTVx/_new 2026-04-21 12:43:36.655411701 +0200
@@ -1,7 +1,7 @@
#
# spec file for package Font-Downloader
#
-# Copyright (c) 2025 SUSE LLC and contributors
+# Copyright (c) 2026 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -23,13 +23,15 @@
License: GPL-3.0-or-later
URL: https://github.com/GustavoPeredo/Font-Downloader
Source:
https://github.com/GustavoPeredo/Font-Downloader/archive/refs/tags/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM Font-Downloader-allow-webkit2-4_1.patch
[email protected] -- Prefer using `WebKit2` version '4.1' over '4.0' when
possible
+Patch0: Font-Downloader-allow-webkit2-4_1.patch
BuildRequires: meson
BuildRequires: pkgconfig
BuildRequires: python3
BuildRequires: pkgconfig(gtk+-3.0)
BuildRequires: pkgconfig(libhandy-1)
Requires: python3-gobject-Gdk
-Requires: typelib(WebKit2) = 4.0
+Requires: typelib(WebKit2) >= 4.0
BuildArch: noarch
%description
++++++ Font-Downloader-allow-webkit2-4_1.patch ++++++
---
src/main.py | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
Index: Font-Downloader-10.0.0/src/main.py
===================================================================
--- Font-Downloader-10.0.0.orig/src/main.py
+++ Font-Downloader-10.0.0/src/main.py
@@ -20,8 +20,11 @@ import gi
gi.require_version('Gtk', '3.0')
gi.require_version('Handy', '1')
-gi.require_version('WebKit2', '4.0')
gi.require_version('Pango', '1.0')
+try:
+ gi.require_version('WebKit2', '4.1')
+except ValueError:
+ gi.require_version('WebKit2', '4.0')
from gi.repository import Gtk, Gio, Handy
if True: #os.environ['XDG_SESSION_TYPE'].lower() == "wayland"