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 318B2158094 for ; Thu, 15 Sep 2022 19:32:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7B24BE090F; Thu, 15 Sep 2022 19:32:52 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 67265E090F for ; Thu, 15 Sep 2022 19:32:52 +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 5EC6C340A9D for ; Thu, 15 Sep 2022 19:32:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BC3145C7 for ; Thu, 15 Sep 2022 19:32:49 +0000 (UTC) From: "Thomas Beierlein" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Beierlein" Message-ID: <1663270360.97dfeef8f03b04169fa2879d0be1c7adbb67793d.tomjbe@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-radio/flrig/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-radio/flrig/flrig-1.4.5.ebuild media-radio/flrig/flrig-1.4.7.ebuild X-VCS-Directories: media-radio/flrig/ X-VCS-Committer: tomjbe X-VCS-Committer-Name: Thomas Beierlein X-VCS-Revision: 97dfeef8f03b04169fa2879d0be1c7adbb67793d X-VCS-Branch: master Date: Thu, 15 Sep 2022 19:32:49 +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: a5caa388-2d09-4f82-a75f-44821692dc4c X-Archives-Hash: bd0c3d9df1969979458090ac6432e925 commit: 97dfeef8f03b04169fa2879d0be1c7adbb67793d Author: Thomas Beierlein gentoo org> AuthorDate: Thu Sep 15 19:31:46 2022 +0000 Commit: Thomas Beierlein gentoo org> CommitDate: Thu Sep 15 19:32:40 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97dfeef8 media-radio/flrig: filter out -flto Closes: https://bugs.gentoo.org/860408 Signed-off-by: Thomas Beierlein gentoo.org> media-radio/flrig/flrig-1.4.5.ebuild | 9 +++++++++ media-radio/flrig/flrig-1.4.7.ebuild | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/media-radio/flrig/flrig-1.4.5.ebuild b/media-radio/flrig/flrig-1.4.5.ebuild index 91b26b7fb75c..81a737736eac 100644 --- a/media-radio/flrig/flrig-1.4.5.ebuild +++ b/media-radio/flrig/flrig-1.4.5.ebuild @@ -3,6 +3,8 @@ EAPI=8 +inherit flag-o-matic + DESCRIPTION="Transceiver control program for Amateur Radio use" HOMEPAGE="http://www.w1hkj.com/flrig-help/index.html" SRC_URI="mirror://sourceforge/fldigi/${P}.tar.gz" @@ -27,3 +29,10 @@ src_prepare() { eapply ${PATCHES[@]} eapply_user } + +src_configure() { + #fails to compile with -flto (bug #860408) + filter-lto + + econf +} diff --git a/media-radio/flrig/flrig-1.4.7.ebuild b/media-radio/flrig/flrig-1.4.7.ebuild index fa8591685185..6dbb605b0a9c 100644 --- a/media-radio/flrig/flrig-1.4.7.ebuild +++ b/media-radio/flrig/flrig-1.4.7.ebuild @@ -3,6 +3,8 @@ EAPI=8 +inherit flag-o-matic + DESCRIPTION="Transceiver control program for Amateur Radio use" HOMEPAGE="http://www.w1hkj.com/flrig-help/index.html" SRC_URI="mirror://sourceforge/fldigi/${P}.tar.gz" @@ -27,3 +29,10 @@ src_prepare() { eapply ${PATCHES[@]} eapply_user } + +src_configure() { + #fails to compile with -flto (bug #860408) + filter-lto + + econf +}