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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5A25F158042 for ; Wed, 6 Nov 2024 13:36:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9CC6AE0B9B; Wed, 6 Nov 2024 13:36:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 pigeon.gentoo.org (Postfix) with ESMTPS id 79956E0B9B for ; Wed, 6 Nov 2024 13:36:01 +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 7F9B4340BDE for ; Wed, 6 Nov 2024 13:36:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CFD461953 for ; Wed, 6 Nov 2024 13:35:58 +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: <1730900114.4777ea448c6b0d289068b3acd371c50e6844cb6b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/charliecloud/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-cluster/charliecloud/charliecloud-0.38.ebuild sys-cluster/charliecloud/charliecloud-9999.ebuild X-VCS-Directories: sys-cluster/charliecloud/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4777ea448c6b0d289068b3acd371c50e6844cb6b X-VCS-Branch: master Date: Wed, 6 Nov 2024 13:35:58 +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: 53e56424-c8d4-4444-8af6-e6aad181d23a X-Archives-Hash: c6925393b4344c267823ffc9d9d3138e commit: 4777ea448c6b0d289068b3acd371c50e6844cb6b Author: Oliver Freyermuth googlemail com> AuthorDate: Tue Oct 15 20:31:08 2024 +0000 Commit: Sam James gentoo org> CommitDate: Wed Nov 6 13:35:14 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4777ea44 sys-cluster/charliecloud: don't pass -W to sphinx-build This effectively works like -Werror and causes build failures such as #941591 from simple deprecation warnings. Closes: https://bugs.gentoo.org/941591 Signed-off-by: Oliver Freyermuth googlemail.com> Closes: https://github.com/gentoo/gentoo/pull/39006 Signed-off-by: Sam James gentoo.org> sys-cluster/charliecloud/charliecloud-0.38.ebuild | 2 ++ sys-cluster/charliecloud/charliecloud-9999.ebuild | 2 ++ 2 files changed, 4 insertions(+) diff --git a/sys-cluster/charliecloud/charliecloud-0.38.ebuild b/sys-cluster/charliecloud/charliecloud-0.38.ebuild index e77a512214ec..763a64f92697 100644 --- a/sys-cluster/charliecloud/charliecloud-0.38.ebuild +++ b/sys-cluster/charliecloud/charliecloud-0.38.ebuild @@ -55,6 +55,8 @@ DEPEND=" src_prepare() { default + # Remove -W from SPHINXOPTS to prevent failure due to warnings + sed -i 's#^SPHINXOPTS .*=.*#SPHINXOPTS =#' doc/Makefile.am || die "Makefile patching failed" eautoreconf } diff --git a/sys-cluster/charliecloud/charliecloud-9999.ebuild b/sys-cluster/charliecloud/charliecloud-9999.ebuild index a6b170a769bb..820cc3aa74cb 100644 --- a/sys-cluster/charliecloud/charliecloud-9999.ebuild +++ b/sys-cluster/charliecloud/charliecloud-9999.ebuild @@ -57,6 +57,8 @@ DEPEND=" src_prepare() { default + # Remove -W from SPHINXOPTS to prevent failure due to warnings + sed -i 's#^SPHINXOPTS .*=.*#SPHINXOPTS =#' doc/Makefile.am || die "Makefile patching failed" eautoreconf }