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 2A48A158041 for ; Mon, 11 Mar 2024 14:24:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BF160E2A56; Mon, 11 Mar 2024 14:24:14 +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 A9596E2A56 for ; Mon, 11 Mar 2024 14:24:14 +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 F227C34068A for ; Mon, 11 Mar 2024 14:24:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 000EB1524 for ; Mon, 11 Mar 2024 14:24:09 +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: <1710166970.5f7dd1f9e20c1b009c8031b1e5cee6f3b33022bb.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libcdaudio/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libcdaudio/libcdaudio-0.99.12-r5.ebuild X-VCS-Directories: media-libs/libcdaudio/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 5f7dd1f9e20c1b009c8031b1e5cee6f3b33022bb X-VCS-Branch: master Date: Mon, 11 Mar 2024 14:24:09 +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: 16493492-0062-469a-b5f0-41bd18ca389d X-Archives-Hash: f1787e43f71ec46a2eba19b5c1b6c726 commit: 5f7dd1f9e20c1b009c8031b1e5cee6f3b33022bb Author: Eli Schwartz gmail com> AuthorDate: Mon Mar 11 03:03:17 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Mar 11 14:22:50 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f7dd1f9 media-libs/libcdaudio: mark as LTO-unsafe Note: upstream is dead in terms of development, although apparently still available to ask people on sourceforge if they are interested in taking over maintenance. Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> media-libs/libcdaudio/libcdaudio-0.99.12-r5.ebuild | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/media-libs/libcdaudio/libcdaudio-0.99.12-r5.ebuild b/media-libs/libcdaudio/libcdaudio-0.99.12-r5.ebuild index d64a5a9ac226..44b0a9468c60 100644 --- a/media-libs/libcdaudio/libcdaudio-0.99.12-r5.ebuild +++ b/media-libs/libcdaudio/libcdaudio-0.99.12-r5.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit autotools +inherit autotools flag-o-matic DESCRIPTION="Library of cd audio related routines" HOMEPAGE="https://libcdaudio.sourceforge.net/" @@ -31,6 +31,15 @@ src_prepare() { } src_configure() { + # -Werror=lto-type-mismatch + # + # Upstream is pretty dead. The best that can be said is that as of a year + # ago if you posted support tickets, upstream would ask you: + # + # "libcdaudio is looking for a maintainer. Would you accept becoming a + # maintainer, so that you can integrate the change directly?" + filter-lto + econf --enable-threads --disable-static }