From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E6C411582EF for ; Sat, 01 Mar 2025 23:27:10 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id C8945343152 for ; Sat, 01 Mar 2025 23:27:10 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id BC84D1102D0; Sat, 01 Mar 2025 23:27:09 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 bobolink.gentoo.org (Postfix) with ESMTPS id B193E1102D0 for ; Sat, 01 Mar 2025 23:27:09 +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 60FB5343145 for ; Sat, 01 Mar 2025 23:27:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EE4211CE4 for ; Sat, 01 Mar 2025 23:27:07 +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: <1740871619.43af82caf9fc0d21adb02893c55f02df69c795ad.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/dump1090/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-wireless/dump1090/dump1090-10.0.ebuild net-wireless/dump1090/dump1090-9999.ebuild X-VCS-Directories: net-wireless/dump1090/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 43af82caf9fc0d21adb02893c55f02df69c795ad X-VCS-Branch: master Date: Sat, 01 Mar 2025 23:27:07 +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: 147d0e2a-301d-4f9f-87aa-5b401596f159 X-Archives-Hash: 41c4c4899787980fccfda914b3ebc576 commit: 43af82caf9fc0d21adb02893c55f02df69c795ad Author: Conrad Kostecki gentoo org> AuthorDate: Sat Mar 1 23:26:37 2025 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sat Mar 1 23:26:59 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43af82ca net-wireless/dump1090: remove -Werror Bug: https://bugs.gentoo.org/950449 Signed-off-by: Conrad Kostecki gentoo.org> net-wireless/dump1090/dump1090-10.0.ebuild | 4 ++-- net-wireless/dump1090/dump1090-9999.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/net-wireless/dump1090/dump1090-10.0.ebuild b/net-wireless/dump1090/dump1090-10.0.ebuild index 4bb181162a3a..52be69c72a7f 100644 --- a/net-wireless/dump1090/dump1090-10.0.ebuild +++ b/net-wireless/dump1090/dump1090-10.0.ebuild @@ -44,8 +44,8 @@ src_prepare() { default sed \ - -e '/CFLAGS/s# -O3 -g -Wall -Wmissing-declarations -Werror -W # #' \ - -e "/LIBS_CURSES/s#-lncurses#$($(tc-getPKG_CONFIG) --libs ncurses)#" \ + -e '/CFLAGS/s/-Werror//g' \ + -e "/LIBS_CURSES/s|-lncurses|$($(tc-getPKG_CONFIG) --libs ncurses)|g" \ -i Makefile || die } diff --git a/net-wireless/dump1090/dump1090-9999.ebuild b/net-wireless/dump1090/dump1090-9999.ebuild index 4bb181162a3a..52be69c72a7f 100644 --- a/net-wireless/dump1090/dump1090-9999.ebuild +++ b/net-wireless/dump1090/dump1090-9999.ebuild @@ -44,8 +44,8 @@ src_prepare() { default sed \ - -e '/CFLAGS/s# -O3 -g -Wall -Wmissing-declarations -Werror -W # #' \ - -e "/LIBS_CURSES/s#-lncurses#$($(tc-getPKG_CONFIG) --libs ncurses)#" \ + -e '/CFLAGS/s/-Werror//g' \ + -e "/LIBS_CURSES/s|-lncurses|$($(tc-getPKG_CONFIG) --libs ncurses)|g" \ -i Makefile || die }