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 4B69915800C for ; Thu, 29 Dec 2022 11:34:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6D630E0965; Thu, 29 Dec 2022 11:34:00 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4FEC4E0966 for ; Thu, 29 Dec 2022 11:34:00 +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 690A3340F41 for ; Thu, 29 Dec 2022 11:33:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C879E7FB for ; Thu, 29 Dec 2022 11:33:56 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1672222479.588118d22190b95f294531f179fbb59d301d04e5.flow@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: net-libs/orcania/ X-VCS-Repository: repo/proj/guru X-VCS-Files: net-libs/orcania/orcania-2.3.1.ebuild X-VCS-Directories: net-libs/orcania/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 588118d22190b95f294531f179fbb59d301d04e5 X-VCS-Branch: master Date: Thu, 29 Dec 2022 11:33:56 +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: 42f92a95-a020-4c5c-b1fa-5d7c6a28c96f X-Archives-Hash: b9b4836d24d7d26e885f0555396c8b7e commit: 588118d22190b95f294531f179fbb59d301d04e5 Author: Kurt Kanzenbach kmk-computers de> AuthorDate: Tue Dec 27 15:06:21 2022 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Wed Dec 28 10:14:39 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=588118d2 net-libs/orcania: Remove Werror Closes: https://bugs.gentoo.org/887885 Signed-off-by: Kurt Kanzenbach kmk-computers.de> net-libs/orcania/orcania-2.3.1.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/net-libs/orcania/orcania-2.3.1.ebuild b/net-libs/orcania/orcania-2.3.1.ebuild index de49b2e48..864328810 100644 --- a/net-libs/orcania/orcania-2.3.1.ebuild +++ b/net-libs/orcania/orcania-2.3.1.ebuild @@ -34,6 +34,9 @@ src_configure() { -DBUILD_ORCANIA_DOCUMENTATION=$(usex doc) ) + # bug 887885 + sed -i -e "s/-Werror//g" CMakeLists.txt || die + cmake_src_configure }