Hello community,
here is the log from the commit of package xdg-desktop-portal-gtk for
openSUSE:Factory checked in at 2020-04-23 18:28:24
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/xdg-desktop-portal-gtk (Old)
and /work/SRC/openSUSE:Factory/.xdg-desktop-portal-gtk.new.2738 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xdg-desktop-portal-gtk"
Thu Apr 23 18:28:24 2020 rev:13 rq:795256 version:1.6.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/xdg-desktop-portal-gtk/xdg-desktop-portal-gtk.changes
2020-01-28 10:53:28.876912215 +0100
+++
/work/SRC/openSUSE:Factory/.xdg-desktop-portal-gtk.new.2738/xdg-desktop-portal-gtk.changes
2020-04-23 18:28:31.891868941 +0200
@@ -1,0 +2,6 @@
+Mon Feb 24 21:27:30 UTC 2020 - Bjørn Lie <[email protected]>
+
+- Add xdg-dpg-support-mutter-pipewire-3-api.patch: screencast: Bump
+ supported Mutter version to 3 (New pipewire api ver 3).
+
+-------------------------------------------------------------------
New:
----
xdg-dpg-support-mutter-pipewire-3-api.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ xdg-desktop-portal-gtk.spec ++++++
--- /var/tmp/diff_new_pack.CD5fL2/_old 2020-04-23 18:28:32.439869990 +0200
+++ /var/tmp/diff_new_pack.CD5fL2/_new 2020-04-23 18:28:32.443869997 +0200
@@ -1,7 +1,7 @@
#
# spec file for package xdg-desktop-portal-gtk
#
-# Copyright (c) 2019 SUSE LLC
+# Copyright (c) 2020 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -24,6 +24,8 @@
Group: System/Libraries
URL: https://github.com/flatpak/xdg-desktop-portal-gtk
Source0: %{url}/releases/download/%{version}/%{name}-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM xdg-dpg-support-mutter-pipewire-3-api.patch --
screencast: Bump supported Mutter version to 3
+Patch0: xdg-dpg-support-mutter-pipewire-3-api.patch
BuildRequires: pkgconfig
BuildRequires: pkgconfig(dbus-1)
++++++ xdg-dpg-support-mutter-pipewire-3-api.patch ++++++
>From adb72687ccda69b83509f05f80e4a226a2faaf1f Mon Sep 17 00:00:00 2001
From: Georges Basile Stavracas Neto
<[email protected]>
Date: Mon, 24 Feb 2020 17:20:19 -0300
Subject: [PATCH] screencast: Bump supported Mutter version to 3 (#280)
With the new Mutter version and the inclusion of pipewire 0.3 support
into Mutter, the reported D-Bus version for the screencast API was
bumped to 3.
Update the supported version here as well. No code changes are necessary
to make it work with the version 3 of the API.
---
src/gnomescreencast.c | 2 +-
src/screencast.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/gnomescreencast.c b/src/gnomescreencast.c
index 3ae5031..0df0f05 100644
--- a/src/gnomescreencast.c
+++ b/src/gnomescreencast.c
@@ -22,7 +22,7 @@
#include <stdint.h>
-#define SUPPORTED_MUTTER_SCREEN_CAST_API_VERSION 2
+#define SUPPORTED_MUTTER_SCREEN_CAST_API_VERSION 3
enum
{
diff --git a/src/screencast.c b/src/screencast.c
index 5418c23..c4c75a0 100644
--- a/src/screencast.c
+++ b/src/screencast.c
@@ -35,7 +35,7 @@
#include "session.h"
#include "utils.h"
-#define SUPPORTED_MUTTER_SCREEN_CAST_API_VERSION 2
+#define SUPPORTED_MUTTER_SCREEN_CAST_API_VERSION 3
typedef struct _ScreenCastDialogHandle ScreenCastDialogHandle;