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 9BE51159C9B for ; Tue, 30 Jul 2024 16:54:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9A66B2BC015; Tue, 30 Jul 2024 16:54:33 +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 770C32BC015 for ; Tue, 30 Jul 2024 16:54:33 +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 5E65E342F9C for ; Tue, 30 Jul 2024 16:54:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BCB02E5D for ; Tue, 30 Jul 2024 16:54:30 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1722248598.6b408f87ff23729459d059d16cdaa0db9ea479c8.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: sys-apps/dnf5/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-apps/dnf5/dnf5-5.2.5.0.ebuild X-VCS-Directories: sys-apps/dnf5/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: 6b408f87ff23729459d059d16cdaa0db9ea479c8 X-VCS-Branch: master Date: Tue, 30 Jul 2024 16:54:30 +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: d57ad97e-3b43-47c0-b793-e483a4408fb5 X-Archives-Hash: 5de7ecd76f5feee9d5437b50bc3366eb commit: 6b408f87ff23729459d059d16cdaa0db9ea479c8 Author: Lucio Sauer posteo net> AuthorDate: Mon Jul 29 10:21:58 2024 +0000 Commit: David Roman gmail com> CommitDate: Mon Jul 29 10:23:18 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6b408f87 sys-apps/dnf5: remove forced -Werror{,=unused-result} Closes: https://bugs.gentoo.org/936870 Signed-off-by: Lucio Sauer posteo.net> sys-apps/dnf5/dnf5-5.2.5.0.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys-apps/dnf5/dnf5-5.2.5.0.ebuild b/sys-apps/dnf5/dnf5-5.2.5.0.ebuild index d71c95a77..b82d74f45 100644 --- a/sys-apps/dnf5/dnf5-5.2.5.0.ebuild +++ b/sys-apps/dnf5/dnf5-5.2.5.0.ebuild @@ -54,6 +54,8 @@ src_prepare() { cmake_src_prepare # Replace hardcoded TMPDIR. sed -i "s|/tmp/|${T}/|" test/libdnf5/utils/test_fs.cpp || die + # remove -Werror{,=unused-result}; bug 936870 + sed 's/-Werror[^[:space:])]*//' -i CMakeLists.txt || die } src_configure() {