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 95497159C9B for ; Mon, 22 Jul 2024 16:26:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2B885E2A26; Mon, 22 Jul 2024 16:26:41 +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 DF083E2A25 for ; Mon, 22 Jul 2024 16:26:40 +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 A84AF33BDFF for ; Mon, 22 Jul 2024 16:26:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D72A21CE9 for ; Mon, 22 Jul 2024 16:26:37 +0000 (UTC) From: "John M. Harris, Jr." To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "John M. Harris, Jr." Message-ID: <1721664749.44cf87a8c759c37a21d6bca5bbc1bec8f1e53d36.johnmh@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/hyprlock/files/, gui-apps/hyprlock/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-apps/hyprlock/files/0003-fix-CFLAGS-CXXFLAGS-hyprlock.patch gui-apps/hyprlock/hyprlock-9999.ebuild X-VCS-Directories: gui-apps/hyprlock/ gui-apps/hyprlock/files/ X-VCS-Committer: johnmh X-VCS-Committer-Name: John M. Harris, Jr. X-VCS-Revision: 44cf87a8c759c37a21d6bca5bbc1bec8f1e53d36 X-VCS-Branch: dev Date: Mon, 22 Jul 2024 16:26:37 +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: 043fc961-107c-423e-aeeb-7325e4a67bdb X-Archives-Hash: 20a6f40aa8fbfc90b96129d8e9e74f42 commit: 44cf87a8c759c37a21d6bca5bbc1bec8f1e53d36 Author: John M. Harris Jr. johnmh me> AuthorDate: Mon Jul 22 16:12:29 2024 +0000 Commit: John M. Harris, Jr. johnmh me> CommitDate: Mon Jul 22 16:12:29 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=44cf87a8 gui-apps/hyprlock: Fix CMakeLists patch, live Signed-off-by: John M. Harris Jr. johnmh.me> .../hyprlock/files/0003-fix-CFLAGS-CXXFLAGS-hyprlock.patch | 12 ++++++++++++ gui-apps/hyprlock/hyprlock-9999.ebuild | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/gui-apps/hyprlock/files/0003-fix-CFLAGS-CXXFLAGS-hyprlock.patch b/gui-apps/hyprlock/files/0003-fix-CFLAGS-CXXFLAGS-hyprlock.patch new file mode 100644 index 000000000..cfde5df93 --- /dev/null +++ b/gui-apps/hyprlock/files/0003-fix-CFLAGS-CXXFLAGS-hyprlock.patch @@ -0,0 +1,12 @@ +diff --git a/CMakeLists.txt b/CMakeLists.txt +index c2dfd6c..96f34b0 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -15,7 +15,6 @@ if(CMAKE_BUILD_TYPE MATCHES Debug OR CMAKE_BUILD_TYPE MATCHES DEBUG) + message(STATUS "Configuring hyprlock in Debug with CMake") + add_compile_definitions(HYPRLAND_DEBUG) + else() +- add_compile_options(-O3) + message(STATUS "Configuring hyprlock in Release with CMake") + endif() + diff --git a/gui-apps/hyprlock/hyprlock-9999.ebuild b/gui-apps/hyprlock/hyprlock-9999.ebuild index 9e0551aa9..fc408452d 100644 --- a/gui-apps/hyprlock/hyprlock-9999.ebuild +++ b/gui-apps/hyprlock/hyprlock-9999.ebuild @@ -43,5 +43,5 @@ BDEPEND=" " PATCHES=( - "${FILESDIR}/0001-fix-CFLAGS-CXXFLAGS-hyprlock.patch" + "${FILESDIR}/0003-fix-CFLAGS-CXXFLAGS-hyprlock.patch" )