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 3D01D158043 for ; Thu, 18 Apr 2024 19:32:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C161DE2A37; Thu, 18 Apr 2024 19:32:20 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 73F52E2A36 for ; Thu, 18 Apr 2024 19:32:20 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5230D3434B6 for ; Thu, 18 Apr 2024 19:32:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E5A47172C for ; Thu, 18 Apr 2024 19:32:16 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1713468706.29b6a73a73351ecfda05d0b968dc672f2c9dc1e0.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gui-wm/hyprland/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: gui-wm/hyprland/files/gcc14.patch X-VCS-Directories: gui-wm/hyprland/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 29b6a73a73351ecfda05d0b968dc672f2c9dc1e0 X-VCS-Branch: master Date: Thu, 18 Apr 2024 19:32:16 +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: 92d51932-8031-4a41-bfaf-180fb9db0a6e X-Archives-Hash: b760fdf0aba81bcf77519ee6d18f26ea commit: 29b6a73a73351ecfda05d0b968dc672f2c9dc1e0 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Thu Apr 18 18:07:55 2024 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Thu Apr 18 19:31:46 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29b6a73a gui-wm/hyprland: remove unused patch(es) Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Conrad Kostecki gentoo.org> gui-wm/hyprland/files/gcc14.patch | 32 -------------------------------- 1 file changed, 32 deletions(-) diff --git a/gui-wm/hyprland/files/gcc14.patch b/gui-wm/hyprland/files/gcc14.patch deleted file mode 100644 index 1bebe9e9d4c4..000000000000 --- a/gui-wm/hyprland/files/gcc14.patch +++ /dev/null @@ -1,32 +0,0 @@ -# From: https://gitlab.freedesktop.org/wlroots/wlroots/-/commit/f3e1f7b2a70a500b740bfc406e893eba0852699a -diff --git a/subprojects/wlroots/backend/libinput/tablet_pad.c b/subprojects/wlroots/backend/libinput/tablet_pad.c -index 2e74022a..e5327528 100644 ---- a/subprojects/wlroots/backend/libinput/tablet_pad.c -+++ b/subprojects/wlroots/backend/libinput/tablet_pad.c -@@ -33,7 +33,7 @@ static void add_pad_group_from_libinput(struct wlr_tablet_pad *pad, - ++group->ring_count; - } - } -- group->rings = calloc(sizeof(unsigned int), group->ring_count); -+ group->rings = calloc(group->ring_count, sizeof(unsigned int)); - if (group->rings == NULL) { - goto group_fail; - } -@@ -50,7 +50,7 @@ static void add_pad_group_from_libinput(struct wlr_tablet_pad *pad, - ++group->strip_count; - } - } -- group->strips = calloc(sizeof(unsigned int), group->strip_count); -+ group->strips = calloc(group->strip_count, sizeof(unsigned int)); - if (group->strips == NULL) { - goto group_fail; - } -@@ -66,7 +66,7 @@ static void add_pad_group_from_libinput(struct wlr_tablet_pad *pad, - ++group->button_count; - } - } -- group->buttons = calloc(sizeof(unsigned int), group->button_count); -+ group->buttons = calloc(group->button_count, sizeof(unsigned int)); - if (group->buttons == NULL) { - goto group_fail; - }