sys-apps/xdg-desktop-portal-gnome: drop 45.1-r1

Signed-off-by: Pacho Ramos <pacho@gentoo.org>
This commit is contained in:
Pacho Ramos
2025-01-15 17:20:39 +01:00
parent bf1fb43d51
commit 56e1e5173a
3 changed files with 0 additions and 84 deletions

View File

@@ -1,3 +1,2 @@
DIST xdg-desktop-portal-gnome-45.1.tar.xz 140996 BLAKE2B c77fb2a0f52e27eec73b43a08e6034cbe08afb622ae0863f2ac3402246bc19dec4d058cae2117ddcf80064f3965454f5813f066788c6de1dffb4be80490cb217 SHA512 576139ef4d763e47435a33ecd94ae8d1631c2a515c11ca18e1f1f7618421925a41f0f8a295cfe6d1be377fd162a9e4d239f3a94a73a4aae49e583a0360f8cc36
DIST xdg-desktop-portal-gnome-46.2.tar.xz 161088 BLAKE2B 586729957351a41cc483e68fc3f8774f662542f8f8e7bb18228ba8adbe852a030bea18ba71192ce9d2219e10199d3b0b4d699d864dbf202a43dbd860f73b7916 SHA512 8257a30fd2303e32c6eebd2fd97e876f2776aeb7442de96040d7fdb5961b674272d03c24ebd89bfb55a88bd668ae75bde3f3405a26cda48b93c23033d0d7bde5
DIST xdg-desktop-portal-gnome-47.1.tar.xz 163448 BLAKE2B dfaa078689f5f897c8deb289ff21339cab13b01a7ec5e1367da0e0488a4b95c08d6f7778f53fbb4dcffe766093117c41b175bfbce840587168f146245fcceea9 SHA512 bc4118b56baed90c42ae75c99c911d11d1541c8e2d4629672621d29217bc49bfa37218a9b27bd4b2712d95d2b6dbab36212687a6d15bca33467bb8dbde047ef3

View File

@@ -1,25 +0,0 @@
https://gitlab.gnome.org/GNOME/xdg-desktop-portal-gnome/-/issues/112
https://gitlab.gnome.org/GNOME/xdg-desktop-portal-gnome/-/merge_requests/134
From 5fb3c0c23ccd76c6f8239bbb66c3fb1230208d5e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Tyrychtr?= <ltyrycht@redhat.com>
Date: Mon, 11 Dec 2023 11:36:13 +0100
Subject: [PATCH] input-capture: Pass correct pointer type to
gtk_window_add_group
It produced only a warning, but will be an error in the future.
Fixes #112
--- a/src/inputcapture.c
+++ b/src/inputcapture.c
@@ -409,7 +409,7 @@ create_input_capture_dialog (GDBusMethodInvocation *invocation,
gtk_window_set_modal (GTK_WINDOW (dialog), TRUE);
window_group = gtk_window_group_new ();
- gtk_window_group_add_window (window_group, dialog);
+ gtk_window_group_add_window (window_group, GTK_WINDOW (dialog));
dialog_handle = g_new0 (InputCaptureDialogHandle, 1);
dialog_handle->request = g_object_ref (request);
--
GitLab

View File

@@ -1,58 +0,0 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit flag-o-matic gnome.org meson systemd xdg
DESCRIPTION="Backend implementation for xdg-desktop-portal using GNOME"
HOMEPAGE="https://gitlab.gnome.org/GNOME/xdg-desktop-portal-gnome"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv x86"
IUSE="wayland X"
# Newer-than-strictly-required xdg-desktop-portal dep for hang/slowness fixes
# https://gitlab.gnome.org/GNOME/xdg-desktop-portal-gnome/-/issues/74
DEPEND="
dev-libs/glib:2
gnome-base/gnome-desktop:4=
>=gui-libs/libadwaita-1.2.0:1
media-libs/fontconfig
sys-apps/dbus
>=sys-apps/xdg-desktop-portal-1.17.0
>=sys-apps/xdg-desktop-portal-gtk-1.14.0
gui-libs/gtk:4[wayland?,X?]
X? ( x11-libs/libX11 )
wayland? ( dev-libs/wayland )
"
RDEPEND="${DEPEND}"
BDEPEND="
dev-util/gdbus-codegen
sys-devel/gettext
virtual/pkgconfig
wayland? ( dev-util/wayland-scanner )
"
PATCHES=(
"${FILESDIR}"/45.1-c99.patch
)
src_configure() {
# -Werror=strict-aliasing
# https://bugs.gentoo.org/919852
# https://gitlab.gnome.org/GNOME/xdg-desktop-portal-gnome/-/issues/113
# https://gitlab.gnome.org/GNOME/xdg-desktop-portal-gnome/-/merge_requests/138
#
# Recheck this after next version bump!
append-flags -fno-strict-aliasing
filter-lto
local emesonargs=(
-Dsystemduserunitdir="$(systemd_get_userunitdir)"
)
meson_src_configure
}