From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1629454-garchives=archives.gentoo.org@lists.gentoo.org> 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 2F401158064 for <garchives@archives.gentoo.org>; Thu, 9 May 2024 20:43:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CC639E2A6A; Thu, 9 May 2024 20:43:06 +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 7D9D0E2A7D for <gentoo-commits@lists.gentoo.org>; Thu, 9 May 2024 20:43:06 +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 9230534309F for <gentoo-commits@lists.gentoo.org>; Thu, 9 May 2024 20:43:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C88331A7D for <gentoo-commits@lists.gentoo.org>; Thu, 9 May 2024 20:43:03 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1715287065.c5e3d8c14837d19aa08af77f6d22a36cfea701e5.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/igraph/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/igraph/igraph-0.10.10.ebuild dev-libs/igraph/igraph-0.10.11.ebuild dev-libs/igraph/igraph-0.10.4-r1.ebuild X-VCS-Directories: dev-libs/igraph/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c5e3d8c14837d19aa08af77f6d22a36cfea701e5 X-VCS-Branch: master Date: Thu, 9 May 2024 20:43:03 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a4244222-5763-49f4-9512-786673645718 X-Archives-Hash: fae546a8b395762b7cb30ba4be8b784a commit: c5e3d8c14837d19aa08af77f6d22a36cfea701e5 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Thu May 9 20:37:45 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu May 9 20:37:45 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5e3d8c1 dev-libs/igraph: disable -Werror By policy in Gentoo, we don't build with -Werror. Closes: https://bugs.gentoo.org/895066 Signed-off-by: Sam James <sam <AT> gentoo.org> dev-libs/igraph/igraph-0.10.10.ebuild | 1 + dev-libs/igraph/igraph-0.10.11.ebuild | 1 + dev-libs/igraph/igraph-0.10.4-r1.ebuild | 1 + 3 files changed, 3 insertions(+) diff --git a/dev-libs/igraph/igraph-0.10.10.ebuild b/dev-libs/igraph/igraph-0.10.10.ebuild index f270109ee806..cb7c5a2e937c 100644 --- a/dev-libs/igraph/igraph-0.10.10.ebuild +++ b/dev-libs/igraph/igraph-0.10.10.ebuild @@ -43,6 +43,7 @@ src_configure() { -DIGRAPH_USE_INTERNAL_LAPACK=OFF -DIGRAPH_USE_INTERNAL_PLFIT=OFF -DIGRAPH_ENABLE_TLS=$(usex threads) + -DIGRAPH_WARNINGS_AS_ERRORS=OFF -DBUILD_TESTING=$(usex test) ) cmake_src_configure diff --git a/dev-libs/igraph/igraph-0.10.11.ebuild b/dev-libs/igraph/igraph-0.10.11.ebuild index 2056002ac6f3..0553751b2bcf 100644 --- a/dev-libs/igraph/igraph-0.10.11.ebuild +++ b/dev-libs/igraph/igraph-0.10.11.ebuild @@ -38,6 +38,7 @@ src_configure() { -DIGRAPH_USE_INTERNAL_LAPACK=OFF -DIGRAPH_USE_INTERNAL_PLFIT=OFF -DIGRAPH_ENABLE_TLS=$(usex threads) + -DIGRAPH_WARNINGS_AS_ERRORS=OFF -DBUILD_TESTING=$(usex test) ) cmake_src_configure diff --git a/dev-libs/igraph/igraph-0.10.4-r1.ebuild b/dev-libs/igraph/igraph-0.10.4-r1.ebuild index fd9d1d6f77ec..9ccfb98c5cbb 100644 --- a/dev-libs/igraph/igraph-0.10.4-r1.ebuild +++ b/dev-libs/igraph/igraph-0.10.4-r1.ebuild @@ -44,6 +44,7 @@ src_configure() { -DIGRAPH_USE_INTERNAL_LAPACK=OFF -DIGRAPH_USE_INTERNAL_PLFIT=OFF -DIGRAPH_ENABLE_TLS=$(usex threads) + -DIGRAPH_WARNINGS_AS_ERRORS=OFF -DBUILD_TESTING=$(usex test) ) cmake_src_configure