summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2021-06-06 18:34:29 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2021-06-10 17:29:40 +0200
commit3439ae850fce69ce18262f4509182a42e2718c0e (patch)
tree692b77562859df7aa663c4951f4993cacdb158f0 /sys-apps
parentkde-plasma/plasma-systemmonitor: Drop 5.20.0-r1 (diff)
downloadgentoo-3439ae850fce69ce18262f4509182a42e2718c0e.tar.gz
gentoo-3439ae850fce69ce18262f4509182a42e2718c0e.tar.bz2
gentoo-3439ae850fce69ce18262f4509182a42e2718c0e.zip
sys-apps/xdg-desktop-portal: Drop 1.8.0-r1
Package-Manager: Portage-3.0.19, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/xdg-desktop-portal/Manifest1
-rw-r--r--sys-apps/xdg-desktop-portal/files/xdg-desktop-portal-1.8.0-fix-doc-portal.patch135
-rw-r--r--sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.8.0-r1.ebuild45
3 files changed, 0 insertions, 181 deletions
diff --git a/sys-apps/xdg-desktop-portal/Manifest b/sys-apps/xdg-desktop-portal/Manifest
index 1cd6d721c764..704e875657aa 100644
--- a/sys-apps/xdg-desktop-portal/Manifest
+++ b/sys-apps/xdg-desktop-portal/Manifest
@@ -1,2 +1 @@
-DIST xdg-desktop-portal-1.8.0.tar.xz 470692 BLAKE2B f21da5ad11dc2b1611983fdac87335b3c7e9c13222bbe3b90b276d75726a6f16d950a9ba62606aa31d52f57b8d076393ec0d48014b1623ab03dee23c524ed0ef SHA512 6d9760b41447af711d5937279b0031bcc88947e11204351accfcd9e6e19e498e9021675753185f92f7bd40336decc1895968796b1b71508c7caf5f6fc32a51a4
DIST xdg-desktop-portal-1.8.1.tar.xz 473052 BLAKE2B a7d0aa2aa1e8220ced3e4abff8a8284c521b983ce807cd3e0d7b5d22f98f6428b6de9a193ae3aced9c13473617f453d13d0af83c677e3d077906b6cf8a138d45 SHA512 447d287d6627a1086d97dc5ebda20dfb1d0ca8643cbe54a7af5f6205a122a7be9d1643fded592f922c015561b7e2f4c6b6df555db3e0d3c02aad5bbe944077b6
diff --git a/sys-apps/xdg-desktop-portal/files/xdg-desktop-portal-1.8.0-fix-doc-portal.patch b/sys-apps/xdg-desktop-portal/files/xdg-desktop-portal-1.8.0-fix-doc-portal.patch
deleted file mode 100644
index 46b3aaf0fb40..000000000000
--- a/sys-apps/xdg-desktop-portal/files/xdg-desktop-portal-1.8.0-fix-doc-portal.patch
+++ /dev/null
@@ -1,135 +0,0 @@
-From 57096483afb069e69b9addcc39fe92b72051f1d2 Mon Sep 17 00:00:00 2001
-From: James Henstridge <james@jamesh.id.au>
-Date: Tue, 24 Nov 2020 15:48:19 +0800
-Subject: [PATCH] xdp-utils: check if alternate doc portal path matches in
- path_for_fd()
-
-The document portal uses different inode number when exposing a
-particular document in different parts of the file system. As sandboxed
-apps only have a subtree of the document portal file system mounted, the
-"same file" checks in xdp_app_info_get_path_for_fd() would fail for
-document portal paths.
-
-To fix this, we check to see whether the corresponding "by-app/$app_id"
-path matches the stat information of the file descriptor.
-
-Fixes #545
----
- document-portal/document-portal.c | 2 ++
- src/documents.c | 2 ++
- src/xdp-utils.c | 47 +++++++++++++++++++++++++++++--
- src/xdp-utils.h | 3 ++
- 5 files changed, 85 insertions(+), 2 deletions(-)
-
-diff --git a/document-portal/document-portal.c b/document-portal/document-portal.c
-index a4c044a..a4aacc4 100644
---- a/document-portal/document-portal.c
-+++ b/document-portal/document-portal.c
-@@ -1448,6 +1448,8 @@ on_name_acquired (GDBusConnection *connection,
-
- fuse_dev = stbuf.st_dev;
-
-+ xdp_set_documents_mountpoint (xdp_fuse_get_mountpoint ());
-+
- while ((invocation = g_queue_pop_head (&get_mount_point_invocations)) != NULL)
- {
- xdp_dbus_documents_complete_get_mount_point (dbus_api, invocation, xdp_fuse_get_mountpoint ());
-diff --git a/src/documents.c b/src/documents.c
-index 99de9e4..9ddc4ac 100644
---- a/src/documents.c
-+++ b/src/documents.c
-@@ -31,6 +31,7 @@
- #include <gio/gunixfdlist.h>
-
- #include "xdp-dbus.h"
-+#include "xdp-utils.h"
- #include "document-enums.h"
-
- static XdpDocuments *documents = NULL;
-@@ -46,6 +47,7 @@ init_document_proxy (GDBusConnection *connection)
- xdp_documents_call_get_mount_point_sync (documents,
- &documents_mountpoint,
- NULL, NULL);
-+ xdp_set_documents_mountpoint (documents_mountpoint);
- }
-
- char *
-diff --git a/src/xdp-utils.c b/src/xdp-utils.c
-index fa6ca6f..ef68f0f 100644
---- a/src/xdp-utils.c
-+++ b/src/xdp-utils.c
-@@ -884,6 +884,35 @@ verify_proc_self_fd (XdpAppInfo *app_info,
- return xdp_app_info_remap_path (app_info, path_buffer);
- }
-
-+static char *documents_mountpoint = NULL;
-+
-+void
-+xdp_set_documents_mountpoint (const char *path)
-+{
-+ g_clear_pointer (&documents_mountpoint, g_free);
-+ documents_mountpoint = g_strdup (path);
-+}
-+
-+/* alternate_document_path converts a file path */
-+char *
-+xdp_get_alternate_document_path (const char *path, const char *app_id)
-+{
-+ int len;
-+
-+ /* If we don't know where the document portal is mounted, then there
-+ * is no alternate path */
-+ if (documents_mountpoint == NULL)
-+ return NULL;
-+
-+ /* If the path is not within the document portal, then there is no
-+ * alternative path */
-+ len = strlen (documents_mountpoint);
-+ if (!g_str_has_prefix (path, documents_mountpoint) || path[len] != '/')
-+ return NULL;
-+
-+ return g_strconcat (documents_mountpoint, "/by-app/", app_id, &path[len], NULL);
-+}
-+
- char *
- xdp_app_info_get_path_for_fd (XdpAppInfo *app_info,
- int fd,
-@@ -981,8 +1010,22 @@ xdp_app_info_get_path_for_fd (XdpAppInfo *app_info,
- st_buf->st_dev != real_st_buf.st_dev ||
- st_buf->st_ino != real_st_buf.st_ino)
- {
-- /* Different files on the inside and the outside, reject the request */
-- return NULL;
-+ /* If the path is provided by the document portal, the inode
-+ number will not match, due to only a subtree being mounted in
-+ the sandbox. So we check to see if the equivalent path
-+ within that subtree matches our file descriptor.
-+
-+ If the alternate path doesn't match either, then we treat it
-+ as a failure.
-+ */
-+ g_autofree char *alt_path = NULL;
-+ alt_path = xdp_get_alternate_document_path (path, xdp_app_info_get_id (app_info));
-+
-+ if (alt_path == NULL ||
-+ stat (alt_path, &real_st_buf) < 0 ||
-+ st_buf->st_dev != real_st_buf.st_dev ||
-+ st_buf->st_ino != real_st_buf.st_ino)
-+ return NULL;
- }
-
- if (writable_out)
-diff --git a/src/xdp-utils.h b/src/xdp-utils.h
-index 7105bce..fea28b8 100644
---- a/src/xdp-utils.h
-+++ b/src/xdp-utils.h
-@@ -88,6 +88,9 @@ char ** xdp_app_info_rewrite_commandline (XdpAppInfo *app_info,
-
- G_DEFINE_AUTOPTR_CLEANUP_FUNC(XdpAppInfo, xdp_app_info_unref)
-
-+void xdp_set_documents_mountpoint (const char *path);
-+char *xdp_get_alternate_document_path (const char *path, const char *app_id);
-+
- XdpAppInfo *xdp_invocation_lookup_app_info_sync (GDBusMethodInvocation *invocation,
- GCancellable *cancellable,
- GError **error);
diff --git a/sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.8.0-r1.ebuild b/sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.8.0-r1.ebuild
deleted file mode 100644
index eee5858119f1..000000000000
--- a/sys-apps/xdg-desktop-portal/xdg-desktop-portal-1.8.0-r1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit systemd
-
-DESCRIPTION="Desktop integration portal"
-HOMEPAGE="https://flatpak.org/ https://github.com/flatpak/xdg-desktop-portal"
-SRC_URI="https://github.com/flatpak/${PN}/releases/download/${PV}/${P}.tar.xz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 x86"
-IUSE="geolocation screencast"
-
-BDEPEND="
- dev-util/gdbus-codegen
- sys-devel/gettext
- virtual/pkgconfig
-"
-DEPEND="
- dev-libs/glib:2
- dev-libs/json-glib
- media-libs/fontconfig
- sys-fs/fuse:0
- geolocation? ( >=app-misc/geoclue-2.5.3:2.0 )
- screencast? ( >=media-video/pipewire-0.3:= )
-"
-RDEPEND="${DEPEND}
- sys-apps/dbus
-"
-
-PATCHES=( "${FILESDIR}/${P}-fix-doc-portal.patch" )
-
-src_configure() {
- local myeconfargs=(
- --with-systemduserunitdir="$(systemd_get_userunitdir)"
- $(use_enable geolocation geoclue)
- $(use_enable screencast pipewire)
- --disable-docbook-docs # flatpak not packaged
- --disable-libportal # not packaged
- )
- econf "${myeconfargs[@]}"
-}