From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1609930-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 6C4A7158041 for <garchives@archives.gentoo.org>; Tue, 12 Mar 2024 02:25:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EAE9CE2A1B; Tue, 12 Mar 2024 02:25:51 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 D323EE2A1B for <gentoo-commits@lists.gentoo.org>; Tue, 12 Mar 2024 02:25:51 +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 1FFF734301C for <gentoo-commits@lists.gentoo.org>; Tue, 12 Mar 2024 02:25:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 68DAB151E for <gentoo-commits@lists.gentoo.org>; Tue, 12 Mar 2024 02:25:48 +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: <1710210288.d5e3125224022b28f05c9ef5a28131f29b7bfb64.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-proxy/ziproxy/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-proxy/ziproxy/ziproxy-3.3.2.ebuild X-VCS-Directories: net-proxy/ziproxy/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d5e3125224022b28f05c9ef5a28131f29b7bfb64 X-VCS-Branch: master Date: Tue, 12 Mar 2024 02:25:48 +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: c149da60-3cf1-4d03-9bfb-f3a7c9d0c447 X-Archives-Hash: 0c111013505902b38ac19d752ffe5bdd commit: d5e3125224022b28f05c9ef5a28131f29b7bfb64 Author: Eli Schwartz <eschwartz93 <AT> gmail <DOT> com> AuthorDate: Tue Mar 12 01:57:09 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Mar 12 02:24:48 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5e31252 net-proxy/ziproxy: mark as LTO-unsafe Closes: https://bugs.gentoo.org/861863 Signed-off-by: Eli Schwartz <eschwartz93 <AT> gmail.com> Signed-off-by: Sam James <sam <AT> gentoo.org> net-proxy/ziproxy/ziproxy-3.3.2.ebuild | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/net-proxy/ziproxy/ziproxy-3.3.2.ebuild b/net-proxy/ziproxy/ziproxy-3.3.2.ebuild index 18927d63ac6f..150e819fed4e 100644 --- a/net-proxy/ziproxy/ziproxy-3.3.2.ebuild +++ b/net-proxy/ziproxy/ziproxy-3.3.2.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 +inherit flag-o-matic + DESCRIPTION="A forwarding, non-caching, compressing web proxy server" HOMEPAGE="http://ziproxy.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz" @@ -46,6 +48,11 @@ src_prepare() { } src_configure() { + # -Werror=lto-type-mismatch + # https://bugs.gentoo.org/861863 + # Upstream is sourceforge and has been dead for 3 years. No upstream bug reported. + filter-lto + econf \ --without-jasper \ $(use_with sasl sasl2) \