From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6CA30158083 for ; Fri, 20 Sep 2024 16:35:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 73761E29A7; Fri, 20 Sep 2024 16:35:50 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 01D9AE29A6 for ; Fri, 20 Sep 2024 16:35:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1E64B3430D8 for ; Fri, 20 Sep 2024 16:35:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 84F7527FB for ; Fri, 20 Sep 2024 16:35:47 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1726850134.81ff751adc98a1b100445bcd52f68206f582abb2.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mate-base/mate-settings-daemon/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: mate-base/mate-settings-daemon/files/mate-settings-daemon-1.26.0-fix-buid-with-clang16.patch X-VCS-Directories: mate-base/mate-settings-daemon/files/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 81ff751adc98a1b100445bcd52f68206f582abb2 X-VCS-Branch: master Date: Fri, 20 Sep 2024 16:35:47 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7e4590c1-c784-49e6-9cdd-c79caf2be103 X-Archives-Hash: 7a291af6645adf656a0cd7eec55f171c commit: 81ff751adc98a1b100445bcd52f68206f582abb2 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Thu Sep 19 17:37:52 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Sep 20 16:35:34 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81ff751a mate-base/mate-settings-daemon: remove unused patch(es) Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Andreas Sturmlechner gentoo.org> ...tings-daemon-1.26.0-fix-buid-with-clang16.patch | 45 ---------------------- 1 file changed, 45 deletions(-) diff --git a/mate-base/mate-settings-daemon/files/mate-settings-daemon-1.26.0-fix-buid-with-clang16.patch b/mate-base/mate-settings-daemon/files/mate-settings-daemon-1.26.0-fix-buid-with-clang16.patch deleted file mode 100644 index cf91dbc6412e..000000000000 --- a/mate-base/mate-settings-daemon/files/mate-settings-daemon-1.26.0-fix-buid-with-clang16.patch +++ /dev/null @@ -1,45 +0,0 @@ -https://github.com/mate-desktop/mate-settings-daemon/commit/42e91f2805c508317b4d26166cb3db332dd313e8.patch -From: Colomban Wendling -Date: Tue, 27 Jun 2023 12:21:16 +0200 -Subject: [PATCH] a11y-keyboard-atspi: Fix memory leak - -Fix fairly large memory leak when beeping on keys while caps lock is -enabled. The libatspi2 docs and API were quite misleading, so I -overlooked the fact the event parameter should be freed in the -callback. - -This changes the constness of the callback argument, which is new in -libatspi2 2.40 -- yet the actual behavior didn't change, only the -qualifier was removed, see [1]. -This might however bring up a compiler warning when building against -libatspi2 < 2.40; but on the other hand it fixed build with -clang >= 16, see #399. As it is unlikely to build with clang >= 16 -and libatspi2 < 2.40, I think it's a good compromise. - -[1] https://gitlab.gnome.org/GNOME/at-spi2-core/-/commit/7dfb0b7fc2d1710ef7fad54f910fa4c6a5e3af17 ---- a/plugins/a11y-keyboard/msd-a11y-keyboard-atspi.c -+++ b/plugins/a11y-keyboard/msd-a11y-keyboard-atspi.c -@@ -55,16 +55,16 @@ msd_a11y_keyboard_atspi_class_init (MsdA11yKeyboardAtspiClass *klass) - } - - static gboolean --on_key_press_event (const AtspiDeviceEvent *event, -- void *user_data G_GNUC_UNUSED) -+on_key_press_event (AtspiDeviceEvent *event, -+ void *user_data G_GNUC_UNUSED) - { - /* don't ring on capslock itself, that's taken care of by togglekeys - * if the user want it. */ -- if (event->id == GDK_KEY_Caps_Lock) -- return FALSE; -- -- gdk_display_beep (gdk_display_get_default ()); -+ if (event->id != GDK_KEY_Caps_Lock) -+ gdk_display_beep (gdk_display_get_default ()); - -+ /* cast the possible erroneous const away with atspi < 2.40 */ -+ g_boxed_free (ATSPI_TYPE_DEVICE_EVENT, (gpointer) event); - return FALSE; - } - -