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 CD3A3158044 for ; Thu, 14 Mar 2024 06:06:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C75DBE29DA; Thu, 14 Mar 2024 06:06:20 +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 27F96E29DD for ; Thu, 14 Mar 2024 06:06:20 +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 2C35933BF03 for ; Thu, 14 Mar 2024 06:06:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BF5071515 for ; Thu, 14 Mar 2024 06:06:17 +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: <1710396331.99d9c29cd536fb1be71e277fd5a69b7dac3e1936.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libmodplug/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libmodplug/libmodplug-0.8.9.1.ebuild X-VCS-Directories: media-libs/libmodplug/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 99d9c29cd536fb1be71e277fd5a69b7dac3e1936 X-VCS-Branch: master Date: Thu, 14 Mar 2024 06:06:17 +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: 68a8a349-cfcb-4f57-9a7d-fc9f45525382 X-Archives-Hash: c6ac61f0f3d4b8245f4d2c0f8ac6e10d commit: 99d9c29cd536fb1be71e277fd5a69b7dac3e1936 Author: Eli Schwartz gmail com> AuthorDate: Thu Mar 14 05:10:21 2024 +0000 Commit: Sam James gentoo org> CommitDate: Thu Mar 14 06:05:31 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99d9c29c media-libs/libmodplug: mark as LTO-unsafe There are 3 different upstreams described for this package. One homepage, another SRC_URI, and a third in metadata.xml. Nowhere is this actually maintained, however. Closes: https://bugs.gentoo.org/921707 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> media-libs/libmodplug/libmodplug-0.8.9.1.ebuild | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/media-libs/libmodplug/libmodplug-0.8.9.1.ebuild b/media-libs/libmodplug/libmodplug-0.8.9.1.ebuild index b92ffbcd510a..41ab576c6625 100644 --- a/media-libs/libmodplug/libmodplug-0.8.9.1.ebuild +++ b/media-libs/libmodplug/libmodplug-0.8.9.1.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 MY_PVR="${PV}.r461" -inherit autotools multilib-minimal +inherit autotools flag-o-matic multilib-minimal DESCRIPTION="Library for playing MOD-like music files" HOMEPAGE="https://modplug-xmms.sourceforge.net/" @@ -29,6 +29,13 @@ src_prepare() { } multilib_src_configure() { + # -Werror=odr + # https://bugs.gentoo.org/921707 + # + # Upstream is dead for 2 years. Both of them -- the one in SRC_URI and the + # one in metadata.xml. Where to report a bug *to*, even? Answer: neither. :( + filter-lto + ECONF_SOURCE=${S} econf --disable-static }