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 50C9015803E for ; Sat, 6 Jan 2024 10:15:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8EE052BC01D; Sat, 6 Jan 2024 10:15:07 +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 66A8B2BC018 for ; Sat, 6 Jan 2024 10:15:07 +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 55949343100 for ; Sat, 6 Jan 2024 10:15:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E78E71082 for ; Sat, 6 Jan 2024 10:15:04 +0000 (UTC) From: "Yixun Lan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Yixun Lan" Message-ID: <1704536077.7893c6d3a255d9d4538b30344e42a8b6acdb57a4.dlan@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/hyprland-0.31.0-fix-log-headers.patch X-VCS-Directories: gui-wm/hyprland/files/ X-VCS-Committer: dlan X-VCS-Committer-Name: Yixun Lan X-VCS-Revision: 7893c6d3a255d9d4538b30344e42a8b6acdb57a4 X-VCS-Branch: master Date: Sat, 6 Jan 2024 10:15:04 +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: d13d78d3-c81c-4514-9553-22e8800f1ce7 X-Archives-Hash: 0d73436e854535f2311363e4eaf06f80 commit: 7893c6d3a255d9d4538b30344e42a8b6acdb57a4 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Sat Jan 6 09:31:34 2024 +0000 Commit: Yixun Lan gentoo org> CommitDate: Sat Jan 6 10:14:37 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7893c6d3 gui-wm/hyprland: remove unused patch Closes: https://github.com/gentoo/gentoo/pull/34670 Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Yixun Lan gentoo.org> .../files/hyprland-0.31.0-fix-log-headers.patch | 33 ---------------------- 1 file changed, 33 deletions(-) diff --git a/gui-wm/hyprland/files/hyprland-0.31.0-fix-log-headers.patch b/gui-wm/hyprland/files/hyprland-0.31.0-fix-log-headers.patch deleted file mode 100644 index 7abd8164c9b4..000000000000 --- a/gui-wm/hyprland/files/hyprland-0.31.0-fix-log-headers.patch +++ /dev/null @@ -1,33 +0,0 @@ -From 5dd0637e90efa17e391b67934998936194701d08 Mon Sep 17 00:00:00 2001 -From: memchr -Date: Mon, 16 Oct 2023 16:22:01 +0000 -Subject: [PATCH] fix(build): do not include wlr headers directly, use - includes.hpp instead. - ---- - src/debug/Log.hpp | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/debug/Log.hpp b/src/debug/Log.hpp -index 125ed7f45d..085465c911 100644 ---- a/src/debug/Log.hpp -+++ b/src/debug/Log.hpp -@@ -1,10 +1,10 @@ - #pragma once - #include --#include - #include - #include - #include - #include -+#include "../includes.hpp" - #include "../helpers/MiscFunctions.hpp" - - #define LOGMESSAGESIZE 1024 -@@ -79,4 +79,4 @@ namespace Debug { - } - - void wlrLog(wlr_log_importance level, const char* fmt, va_list args); --}; -\ No newline at end of file -+};