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 DDEAE158099 for ; Fri, 24 Nov 2023 04:38:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 04C902BC027; Fri, 24 Nov 2023 04:38:27 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 D92732BC027 for ; Fri, 24 Nov 2023 04:38:26 +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 EB5A333BEFF for ; Fri, 24 Nov 2023 04:38:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4E390FC3 for ; Fri, 24 Nov 2023 04:38:24 +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: <1700800640.9c3a7cc6757107e5c39e90d29c9e63a076ade395.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.30.0-3400-fix-build.patch gui-wm/hyprland/files/hyprland-0.30.0-no-wlroots-automagic-r1.patch X-VCS-Directories: gui-wm/hyprland/files/ X-VCS-Committer: dlan X-VCS-Committer-Name: Yixun Lan X-VCS-Revision: 9c3a7cc6757107e5c39e90d29c9e63a076ade395 X-VCS-Branch: master Date: Fri, 24 Nov 2023 04:38:24 +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: fea0b390-2365-4b64-bd19-174137466994 X-Archives-Hash: c9975fec561cdc82886a94a5752ddde7 commit: 9c3a7cc6757107e5c39e90d29c9e63a076ade395 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Thu Nov 23 17:15:43 2023 +0000 Commit: Yixun Lan gentoo org> CommitDate: Fri Nov 24 04:37:20 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c3a7cc6 gui-wm/hyprland: remove unused patches Closes: https://github.com/gentoo/gentoo/pull/33951 Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Yixun Lan gentoo.org> .../files/hyprland-0.30.0-3400-fix-build.patch | 49 ---------------------- .../hyprland-0.30.0-no-wlroots-automagic-r1.patch | 18 -------- 2 files changed, 67 deletions(-) diff --git a/gui-wm/hyprland/files/hyprland-0.30.0-3400-fix-build.patch b/gui-wm/hyprland/files/hyprland-0.30.0-3400-fix-build.patch deleted file mode 100644 index 3ee5ca710015..000000000000 --- a/gui-wm/hyprland/files/hyprland-0.30.0-3400-fix-build.patch +++ /dev/null @@ -1,49 +0,0 @@ -From 8637bfb1b79d7778447d93349f14b86dea41d2a4 Mon Sep 17 00:00:00 2001 -From: Jan Beich -Date: Sat, 23 Sep 2023 12:31:37 +0000 -Subject: [PATCH] build: Unbreak build without precompiled headers (#3400) - -* helpers: add missing header after 2e34548aea5b - -src/helpers/VarList.cpp: In constructor 'CVarList::CVarList(const std::string&, size_t, char, bool)': -src/helpers/VarList.cpp:19:34: error: 'removeBeginEndSpacesTabs' was not declared in this scope - 19 | m_vArgs.emplace_back(removeBeginEndSpacesTabs(in.substr(pos))); - | ^~~~~~~~~~~~~~~~~~~~~~~~ -src/helpers/VarList.cpp:23:30: error: 'removeBeginEndSpacesTabs' was not declared in this scope - 23 | m_vArgs.emplace_back(removeBeginEndSpacesTabs(std::string_view{s}.data())); - | ^~~~~~~~~~~~~~~~~~~~~~~~ - -* helpers: add missing C linkage after 0dbd99700319 - -ld.lld: error: undefined symbol: wlr_region_scale(pixman_region32*, pixman_region32 const*, float) ->>> referenced by Region.cpp ->>> src/Hyprland.p/helpers_Region.cpp.o:(CRegion::scale(float)) ->>> did you mean: extern "C" wlr_region_scale ->>> defined in: /usr/lib/libwlroots.so.12032 ---- - src/helpers/Region.cpp | 2 ++ - src/helpers/VarList.cpp | 1 + - 2 files changed, 3 insertions(+) - -diff --git a/src/helpers/Region.cpp b/src/helpers/Region.cpp -index e2db466438..5515e71e7e 100644 ---- a/src/helpers/Region.cpp -+++ b/src/helpers/Region.cpp -@@ -1,6 +1,8 @@ - #include "Region.hpp" -+extern "C" { - #include - #include -+} - - CRegion::CRegion() { - pixman_region32_init(&m_rRegion); -diff --git a/src/helpers/VarList.cpp b/src/helpers/VarList.cpp -index c29a1e9641..780ea9a045 100644 ---- a/src/helpers/VarList.cpp -+++ b/src/helpers/VarList.cpp -@@ -1,3 +1,4 @@ -+#include "MiscFunctions.hpp" - #include "VarList.hpp" - #include - #include diff --git a/gui-wm/hyprland/files/hyprland-0.30.0-no-wlroots-automagic-r1.patch b/gui-wm/hyprland/files/hyprland-0.30.0-no-wlroots-automagic-r1.patch deleted file mode 100644 index 452c1cc80f5e..000000000000 --- a/gui-wm/hyprland/files/hyprland-0.30.0-no-wlroots-automagic-r1.patch +++ /dev/null @@ -1,18 +0,0 @@ -diff --git a/meson.build b/meson.build -index d515621e..08993f8a 100644 ---- a/meson.build -+++ b/meson.build -@@ -39,7 +39,12 @@ add_project_arguments( - ], - language: 'cpp') - --wlroots = subproject('wlroots', default_options: ['examples=false', 'renderers=gles2']) -+if get_option('xwayland').enabled() -+ wlroots = subproject('wlroots', default_options: ['backends=drm,libinput,x11','examples=false','renderers=gles2','xcb-errors=disabled','xwayland=enabled']) -+else -+ wlroots = subproject('wlroots', default_options: ['backends=drm,libinput','examples=false','renderers=gles2','xcb-errors=disabled','xwayland=disabled']) -+endif -+ - have_xwlr = wlroots.get_variable('features').get('xwayland') - xcb_dep = dependency('xcb', required: get_option('xwayland')) -