Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gnome-pomodoro for openSUSE:Factory checked in at 2022-03-25 21:54:45 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gnome-pomodoro (Old) and /work/SRC/openSUSE:Factory/.gnome-pomodoro.new.1900 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnome-pomodoro" Fri Mar 25 21:54:45 2022 rev:25 rq:964866 version:0.20.0 Changes: -------- --- /work/SRC/openSUSE:Factory/gnome-pomodoro/gnome-pomodoro.changes 2021-09-30 23:45:07.068587709 +0200 +++ /work/SRC/openSUSE:Factory/.gnome-pomodoro.new.1900/gnome-pomodoro.changes 2022-03-25 21:54:59.690296561 +0100 @@ -1,0 +2,9 @@ +Fri Mar 25 09:41:19 UTC 2022 - Dominique Leuenberger <dims...@opensuse.org> + +- Supper GNOME 42 (boo#1197506): + + Add c008099ff.patch: Mark extension as compatible with + gnome-shell 42. + + Add d46371e4d.patch: Fix GNOME extension error reporting. +- Adjust gnome-shell dependency to support GNOME 42 (< 43). + +------------------------------------------------------------------- New: ---- c008099ff.patch d46371e4d.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnome-pomodoro.spec ++++++ --- /var/tmp/diff_new_pack.narFQj/_old 2022-03-25 21:55:01.006297814 +0100 +++ /var/tmp/diff_new_pack.narFQj/_new 2022-03-25 21:55:01.026297833 +0100 @@ -1,7 +1,7 @@ # # spec file for package gnome-pomodoro # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -26,11 +26,15 @@ URL: https://gnomepomodoro.org Source: https://github.com/codito/%{name}/archive/%{version}.tar.gz Source99: gnome-pomodoro-rpmlintrc +# PATCH-FIX-UPSTREAM c008099ff.patch boo#1197506 dims...@opensuse.org -- Mark extension as compatible with gnome-shell 42 +Patch0: https://github.com/gnome-pomodoro/gnome-pomodoro/commit/c008099ff.patch +# PATCH-FIX-UPSRTEAM d46371e4d.patch boo#1197506 dims...@opensuse.org -- Fix GNOME extension error reporting +Patch1: https://github.com/gnome-pomodoro/gnome-pomodoro/commit/d46371e4d.patch BuildRequires: desktop-file-utils BuildRequires: docbook-utils BuildRequires: gettext >= 0.19.6 BuildRequires: gnome-common -BuildRequires: gnome-shell < 42 +BuildRequires: gnome-shell < 43 BuildRequires: gnome-shell >= 3.36.0 BuildRequires: meson BuildRequires: pkgconfig @@ -46,7 +50,7 @@ BuildRequires: pkgconfig(libcanberra) >= 0.30 BuildRequires: pkgconfig(libpeas-1.0) >= 1.5.0 BuildRequires: pkgconfig(sqlite3) -Requires: gnome-shell < 42 +Requires: gnome-shell < 43 Requires: gnome-shell >= 3.36.0 Requires: gstreamer Requires: gtk3 >= 3.20.0 @@ -61,7 +65,7 @@ %lang_package %prep -%setup -q +%autosetup -p1 %build %meson ++++++ c008099ff.patch ++++++ >From c008099ff773b798b8a682b4babcecaad6156e85 Mon Sep 17 00:00:00 2001 From: Kamil Prusko <kamilpru...@gmail.com> Date: Sun, 6 Feb 2022 18:21:25 +0100 Subject: [PATCH] Mark extension as compatible with gnome-shell 42 --- plugins/gnome/extension/metadata.json.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/gnome/extension/metadata.json.in b/plugins/gnome/extension/metadata.json.in index 386b0da..6bc5f30 100644 --- a/plugins/gnome/extension/metadata.json.in +++ b/plugins/gnome/extension/metadata.json.in @@ -2,7 +2,7 @@ "uuid": "@EXTENSION_UUID@", "name": "Pomodoro", "description": "Desktop integration for Pomodoro application.", - "shell-version": ["3.38", "40", "41"], + "shell-version": ["3.38", "40", "41", "42"], "url": "@PACKAGE_URL@", "version": "@PACKAGE_VERSION@" } ++++++ d46371e4d.patch ++++++ >From d46371e4dbef932332b2b2809c1fcd61a0617c03 Mon Sep 17 00:00:00 2001 From: Alex Kapranoff <a...@kapranoff.ru> Date: Sun, 23 Jan 2022 13:44:44 -0800 Subject: [PATCH] Support GNOME Shell 42 in Shell extension Clutter.get_default_frame_rate() was removed in https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2002/diffs?commit_id=33cdb45c8fdd9aa6f6da334a139a4a0fd1afe361 It effectively was always equal to 60, so let's hardcode the value. --- plugins/gnome/extension/dialogs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/gnome/extension/dialogs.js b/plugins/gnome/extension/dialogs.js index be4f15a..0f06448 100644 --- a/plugins/gnome/extension/dialogs.js +++ b/plugins/gnome/extension/dialogs.js @@ -46,7 +46,7 @@ const ngettext = Gettext.ngettext; */ const IDLE_TIME_TO_PUSH_MODAL = 600; const PUSH_MODAL_TIME_LIMIT = 1000; -const PUSH_MODAL_RATE = Clutter.get_default_frame_rate(); +const PUSH_MODAL_RATE = 60; const MOTION_DISTANCE_TO_CLOSE = 20; const IDLE_TIME_TO_OPEN = 60000;