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 4E8E8158064 for ; Thu, 9 May 2024 01:35:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5D9EFE2DE9; Thu, 9 May 2024 01:35:55 +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 402CCE2DE9 for ; Thu, 9 May 2024 01:35:55 +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 0EB923431B8 for ; Thu, 9 May 2024 01:35:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6CADA1A3F for ; Thu, 9 May 2024 01:35:52 +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: <1715218506.8f2601e3633f4e5f2c0ac4a5f6fad49b70759c04.sam@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-apps/kfloppy/ X-VCS-Repository: proj/kde X-VCS-Files: kde-apps/kfloppy/kfloppy-9999.ebuild X-VCS-Directories: kde-apps/kfloppy/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 8f2601e3633f4e5f2c0ac4a5f6fad49b70759c04 X-VCS-Branch: master Date: Thu, 9 May 2024 01:35:52 +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: dada8c34-77b5-4e6f-b1d1-6cef0728de2b X-Archives-Hash: 5b1fc6bdc49252f1e573da375439323a commit: 8f2601e3633f4e5f2c0ac4a5f6fad49b70759c04 Author: Eli Schwartz gmail com> AuthorDate: Thu May 9 01:26:46 2024 +0000 Commit: Sam James gentoo org> CommitDate: Thu May 9 01:35:06 2024 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=8f2601e3 kde-apps/kfloppy: mark as LTO-unsafe I submitted an upstream patch to fix it, but not importing it here since it isn't merged yet. Closes: https://bugs.gentoo.org/926320 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> kde-apps/kfloppy/kfloppy-9999.ebuild | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/kde-apps/kfloppy/kfloppy-9999.ebuild b/kde-apps/kfloppy/kfloppy-9999.ebuild index ffce3668c3..8536b3f3fd 100644 --- a/kde-apps/kfloppy/kfloppy-9999.ebuild +++ b/kde-apps/kfloppy/kfloppy-9999.ebuild @@ -6,7 +6,7 @@ EAPI=8 ECM_HANDBOOK="forceoptional" KFMIN=6.0.0 QTMIN=6.6.2 -inherit ecm kde.org +inherit ecm flag-o-matic kde.org DESCRIPTION="Straightforward graphical means to format 3.5\" and 5.25\" floppy disks" HOMEPAGE="https://apps.kde.org/kfloppy/" @@ -31,3 +31,12 @@ DEPEND=" RDEPEND="${DEPEND} !${CATEGORY}/${PN}:5 " + +src_configure() { + # -Werror=odr + # https://bugs.gentoo.org/926320 + # https://invent.kde.org/utilities/kfloppy/-/merge_requests/8 + filter-lto + + cmake_src_configure +}