Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gnome-shell-extension-pop-shell for openSUSE:Factory checked in at 2023-08-31 13:46:13 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gnome-shell-extension-pop-shell (Old) and /work/SRC/openSUSE:Factory/.gnome-shell-extension-pop-shell.new.1766 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnome-shell-extension-pop-shell" Thu Aug 31 13:46:13 2023 rev:7 rq:1108200 version:1.2.0 Changes: -------- --- /work/SRC/openSUSE:Factory/gnome-shell-extension-pop-shell/gnome-shell-extension-pop-shell.changes 2022-09-25 15:35:15.399616225 +0200 +++ /work/SRC/openSUSE:Factory/.gnome-shell-extension-pop-shell.new.1766/gnome-shell-extension-pop-shell.changes 2023-08-31 13:52:17.818332192 +0200 @@ -1,0 +2,6 @@ +Wed Aug 30 13:37:16 UTC 2023 - Robert Munteanu <romb...@apache.org> + +- Add 8be10fa999b6631382c4f71826ee78ea9993f459.patch, fixes TSC + compilation + +------------------------------------------------------------------- New: ---- 8be10fa999b6631382c4f71826ee78ea9993f459.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnome-shell-extension-pop-shell.spec ++++++ --- /var/tmp/diff_new_pack.FVVeVc/_old 2023-08-31 13:52:19.010374798 +0200 +++ /var/tmp/diff_new_pack.FVVeVc/_new 2023-08-31 13:52:19.014374941 +0200 @@ -1,7 +1,7 @@ # # spec file for package gnome-shell-extension-pop-shell # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -30,6 +30,7 @@ Source1: series Patch0: 0143b0b5eb14291cbd9e0b8328eeec93c4871ba9.patch Patch1: 4520e7813dcbca57ff19cba68085f5d8adf4785e.patch +Patch2: 8be10fa999b6631382c4f71826ee78ea9993f459.patch BuildRequires: gnome-shell >= 3.36 BuildRequires: gobject-introspection BuildRequires: typescript >= 3.8 ++++++ 8be10fa999b6631382c4f71826ee78ea9993f459.patch ++++++ >From 8be10fa999b6631382c4f71826ee78ea9993f459 Mon Sep 17 00:00:00 2001 From: Michael Aaron Murphy <mmst...@pm.me> Date: Tue, 31 Aug 2021 16:29:01 +0200 Subject: [PATCH] fix: TypeScript 4.4 compiler error --- src/settings.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/settings.ts b/src/settings.ts index 1ae463f2..46ecfbdb 100644 --- a/src/settings.ts +++ b/src/settings.ts @@ -20,9 +20,9 @@ interface Settings extends GObject.Object { function settings_new_id(schema_id: string): Settings | null { try { return new Gio.Settings({ schema_id }); - } catch (err) { + } catch (why) { if (schema_id !== "org.gnome.shell.extensions.user-theme") { - global.log(err) + global.log(`failed to get settings for ${schema_id}: ${why}`) } return null ++++++ series ++++++ --- /var/tmp/diff_new_pack.FVVeVc/_old 2023-08-31 13:52:19.066376800 +0200 +++ /var/tmp/diff_new_pack.FVVeVc/_new 2023-08-31 13:52:19.070376943 +0200 @@ -1,3 +1,4 @@ 0143b0b5eb14291cbd9e0b8328eeec93c4871ba9.patch 4520e7813dcbca57ff19cba68085f5d8adf4785e.patch +8be10fa999b6631382c4f71826ee78ea9993f459.patch