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 A0EA31581D3 for ; Sat, 1 Jun 2024 23:21:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D382AE2A7D; Sat, 1 Jun 2024 23:21:05 +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 AD6F2E2A7D for ; Sat, 1 Jun 2024 23:21:05 +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 A5110343004 for ; Sat, 1 Jun 2024 23:21:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0E6E5119 for ; Sat, 1 Jun 2024 23:21:03 +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: <1717283705.b7cf0f3d7cbe8fa13b188d50b16f47fd726c4e2a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/ucsc-genome-browser/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-biology/ucsc-genome-browser/ucsc-genome-browser-260-r1.ebuild X-VCS-Directories: sci-biology/ucsc-genome-browser/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b7cf0f3d7cbe8fa13b188d50b16f47fd726c4e2a X-VCS-Branch: master Date: Sat, 1 Jun 2024 23:21:03 +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: 9a1c8a1a-bdc7-4738-bff1-6d758e7e4dbf X-Archives-Hash: 002dda097e770a513630e05ea9c1d77d commit: b7cf0f3d7cbe8fa13b188d50b16f47fd726c4e2a Author: Sam James gentoo org> AuthorDate: Sat Jun 1 23:15:05 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jun 1 23:15:05 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7cf0f3d sci-biology/ucsc-genome-browser: workaround modern C issues Build with -std=gnu89 as it has many issues. Closes: https://bugs.gentoo.org/831491 Closes: https://bugs.gentoo.org/919200 Closes: https://bugs.gentoo.org/921261 Signed-off-by: Sam James gentoo.org> sci-biology/ucsc-genome-browser/ucsc-genome-browser-260-r1.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sci-biology/ucsc-genome-browser/ucsc-genome-browser-260-r1.ebuild b/sci-biology/ucsc-genome-browser/ucsc-genome-browser-260-r1.ebuild index f0bb0676ae85..85fa73e1b509 100644 --- a/sci-biology/ucsc-genome-browser/ucsc-genome-browser-260-r1.ebuild +++ b/sci-biology/ucsc-genome-browser/ucsc-genome-browser-260-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -35,6 +35,8 @@ src_prepare() { # bug #708064 append-flags -fcommon + # bug #831491, bug #919200, bug #921261 + append-flags -std=gnu89 sed \ -e 's/-Werror//' \