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 27674158041 for ; Thu, 29 Feb 2024 04:47:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 443C4E29DA; Thu, 29 Feb 2024 04:47:41 +0000 (UTC) Received: from smtp.gentoo.org (mail.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 216D2E29DA for ; Thu, 29 Feb 2024 04:47:41 +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 515ED34308A for ; Thu, 29 Feb 2024 04:47:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AA0E3D96 for ; Thu, 29 Feb 2024 04:47:38 +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: <1709182036.6708cbb7fc2c495fb9bd14dc974ad7e09f3f4a7f.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/rtorrent/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-p2p/rtorrent/rtorrent-0.9.8-r2.ebuild net-p2p/rtorrent/rtorrent-0.9.8-r3.ebuild X-VCS-Directories: net-p2p/rtorrent/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6708cbb7fc2c495fb9bd14dc974ad7e09f3f4a7f X-VCS-Branch: master Date: Thu, 29 Feb 2024 04:47:38 +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: fbb42afc-9948-43b8-aed7-e1e59177a93f X-Archives-Hash: 99e4711514e338aeff7a9476b391f2bb commit: 6708cbb7fc2c495fb9bd14dc974ad7e09f3f4a7f Author: Eli Schwartz gmail com> AuthorDate: Thu Feb 29 04:21:46 2024 +0000 Commit: Sam James gentoo org> CommitDate: Thu Feb 29 04:47:16 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6708cbb7 net-p2p/rtorrent: mark as LTO-unsafe Closes: https://bugs.gentoo.org/861848 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> net-p2p/rtorrent/rtorrent-0.9.8-r2.ebuild | 7 ++++++- net-p2p/rtorrent/rtorrent-0.9.8-r3.ebuild | 9 +++++++-- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/net-p2p/rtorrent/rtorrent-0.9.8-r2.ebuild b/net-p2p/rtorrent/rtorrent-0.9.8-r2.ebuild index bc460bab122e..cc07aef717a8 100644 --- a/net-p2p/rtorrent/rtorrent-0.9.8-r2.ebuild +++ b/net-p2p/rtorrent/rtorrent-0.9.8-r2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit autotools linux-info systemd +inherit autotools flag-o-matic linux-info systemd DESCRIPTION="BitTorrent Client using libtorrent" HOMEPAGE="https://rakshasa.github.io/rtorrent/" @@ -56,6 +56,11 @@ src_prepare() { } src_configure() { + # -Werror=odr + # https://bugs.gentoo.org/861848 + # https://github.com/rakshasa/rtorrent/issues/1264 + filter-lto + default # configure needs bash or script bombs out on some null shift, bug #291229 diff --git a/net-p2p/rtorrent/rtorrent-0.9.8-r3.ebuild b/net-p2p/rtorrent/rtorrent-0.9.8-r3.ebuild index f2faf7732600..955a5c7770a9 100644 --- a/net-p2p/rtorrent/rtorrent-0.9.8-r3.ebuild +++ b/net-p2p/rtorrent/rtorrent-0.9.8-r3.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit autotools linux-info systemd +inherit autotools flag-o-matic linux-info systemd DESCRIPTION="BitTorrent Client using libtorrent" HOMEPAGE="https://rakshasa.github.io/rtorrent/" @@ -57,6 +57,11 @@ src_prepare() { } src_configure() { + # -Werror=odr + # https://bugs.gentoo.org/861848 + # https://github.com/rakshasa/rtorrent/issues/1264 + filter-lto + # configure needs bash or script bombs out on some null shift, bug #291229 CONFIG_SHELL=${BASH} econf \ $(use_enable debug) \