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 13EC9158041 for ; Sun, 10 Mar 2024 02:16:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 76952E2A88; Sun, 10 Mar 2024 02:16:52 +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 5A01AE2A88 for ; Sun, 10 Mar 2024 02:16:52 +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 2AA01340CC9 for ; Sun, 10 Mar 2024 02:16:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 702C314FA for ; Sun, 10 Mar 2024 02:16:49 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1710036975.d761173f41b504d9adbf12b4109b917fa65218ac.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/functional-plus/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/functional-plus/functional-plus-0.2.22.ebuild X-VCS-Directories: dev-cpp/functional-plus/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d761173f41b504d9adbf12b4109b917fa65218ac X-VCS-Branch: master Date: Sun, 10 Mar 2024 02:16:49 +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: d18eaabf-b9c0-44ca-9518-363ca8c3c4a0 X-Archives-Hash: cebf514b306320d2c0e6f00f33cf4abf commit: d761173f41b504d9adbf12b4109b917fa65218ac Author: Sv. Lockal gmail com> AuthorDate: Sat Mar 9 19:41:46 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Mar 10 02:16:15 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d761173f dev-cpp/functional-plus: remove -Werror flag Closes: https://bugs.gentoo.org/926538 Signed-off-by: Sv. Lockal gmail.com> Closes: https://github.com/gentoo/gentoo/pull/35689 Signed-off-by: Sam James gentoo.org> dev-cpp/functional-plus/functional-plus-0.2.22.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev-cpp/functional-plus/functional-plus-0.2.22.ebuild b/dev-cpp/functional-plus/functional-plus-0.2.22.ebuild index 38e0d9137331..c78f24cf915d 100644 --- a/dev-cpp/functional-plus/functional-plus-0.2.22.ebuild +++ b/dev-cpp/functional-plus/functional-plus-0.2.22.ebuild @@ -35,6 +35,12 @@ fplus_test_wrapper() { $@ } +src_prepare() { + # avoid -Werror, bug 926538 + sed -i 's/-Werror//' cmake/warnings.cmake || die + cmake_src_prepare +} + src_configure() { cmake_src_configure use test && fplus_test_wrapper cmake_src_configure