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 73FC4158041 for ; Thu, 14 Mar 2024 19:21:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B87F4E29E3; Thu, 14 Mar 2024 19:21:42 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8B645E29E3 for ; Thu, 14 Mar 2024 19:21:42 +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 B228B33BF39 for ; Thu, 14 Mar 2024 19:21:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 259331313 for ; Thu, 14 Mar 2024 19:21:40 +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: <1710444046.dd7f72eea440a3a10303e9adcf61f1275964ef03.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/hamlib/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/hamlib/hamlib-4.5.5-r1.ebuild media-libs/hamlib/hamlib-4.5.5-r2.ebuild X-VCS-Directories: media-libs/hamlib/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: dd7f72eea440a3a10303e9adcf61f1275964ef03 X-VCS-Branch: master Date: Thu, 14 Mar 2024 19:21:40 +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: 0af8f629-1237-4c0b-ad66-f30cbc6710d5 X-Archives-Hash: a27d2c43242648275fe90a7fd4469cc6 commit: dd7f72eea440a3a10303e9adcf61f1275964ef03 Author: Eli Schwartz gmail com> AuthorDate: Thu Mar 14 19:06:14 2024 +0000 Commit: Sam James gentoo org> CommitDate: Thu Mar 14 19:20:46 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd7f72ee media-libs/hamlib: mark as LTO-unsafe Closes: https://bugs.gentoo.org/926839 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> media-libs/hamlib/hamlib-4.5.5-r1.ebuild | 7 ++++++- media-libs/hamlib/hamlib-4.5.5-r2.ebuild | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/media-libs/hamlib/hamlib-4.5.5-r1.ebuild b/media-libs/hamlib/hamlib-4.5.5-r1.ebuild index b02816dc92bc..6b9c869d3b30 100644 --- a/media-libs/hamlib/hamlib-4.5.5-r1.ebuild +++ b/media-libs/hamlib/hamlib-4.5.5-r1.ebuild @@ -6,7 +6,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{10..11} ) MY_P=${P/_rc2/~rc2} -inherit autotools python-single-r1 +inherit autotools flag-o-matic python-single-r1 DESCRIPTION="Ham radio backend rig control libraries" HOMEPAGE="https://www.hamlib.github.io" @@ -60,6 +60,11 @@ src_prepare() { } src_configure() { + # -Werror=lto-type-mismatch + # https://bugs.gentoo.org/926839 + # https://github.com/Hamlib/Hamlib/issues/1524 + filter-lto + econf \ --libdir=/usr/$(get_libdir)/hamlib \ --disable-static \ diff --git a/media-libs/hamlib/hamlib-4.5.5-r2.ebuild b/media-libs/hamlib/hamlib-4.5.5-r2.ebuild index 8c3f902caed5..025890f30263 100644 --- a/media-libs/hamlib/hamlib-4.5.5-r2.ebuild +++ b/media-libs/hamlib/hamlib-4.5.5-r2.ebuild @@ -6,7 +6,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{10..11} ) MY_P=${P/_rc2/~rc2} -inherit autotools python-single-r1 +inherit autotools flag-o-matic python-single-r1 DESCRIPTION="Ham radio backend rig control libraries" HOMEPAGE="https://www.hamlib.github.io" @@ -64,6 +64,11 @@ src_prepare() { } src_configure() { + # -Werror=lto-type-mismatch + # https://bugs.gentoo.org/926839 + # https://github.com/Hamlib/Hamlib/issues/1524 + filter-lto + econf \ --libdir=/usr/$(get_libdir)/hamlib \ --disable-static \