commit: 201a904e0c3f2677ac3b70b54113cd510c4d2445 Author: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org> AuthorDate: Mon Jun 16 12:53:42 2025 +0000 Commit: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org> CommitDate: Mon Jun 16 12:54:12 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=201a904e
sci-electronics/voacapl: Fix unstripped LTO libs bump EAPI Closes: https://bugs.gentoo.org/957831 Signed-off-by: Thomas Beierlein <tomjbe <AT> gentoo.org> ...oacapl-0.7.6-r1.ebuild => voacapl-0.7.6-r2.ebuild} | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/sci-electronics/voacapl/voacapl-0.7.6-r1.ebuild b/sci-electronics/voacapl/voacapl-0.7.6-r2.ebuild similarity index 73% rename from sci-electronics/voacapl/voacapl-0.7.6-r1.ebuild rename to sci-electronics/voacapl/voacapl-0.7.6-r2.ebuild index 31ddee59a282..a47a4ca6534b 100644 --- a/sci-electronics/voacapl/voacapl-0.7.6-r1.ebuild +++ b/sci-electronics/voacapl/voacapl-0.7.6-r2.ebuild @@ -1,15 +1,16 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="7" +EAPI="8" -inherit autotools fortran-2 +inherit autotools dot-a fortran-2 MY_P=${PN}-v.${PV} DESCRIPTION="HF propagation prediction tool" HOMEPAGE="https://www.qsl.net/hz1jw/voacapl/index.html" SRC_URI="https://github.com/jawatson/${PN}/archive/v.${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${MY_P}" LICENSE="all-rights-reserved" SLOT="0" @@ -17,14 +18,22 @@ KEYWORDS="amd64 ~x86" RESTRICT="mirror bindist" -S="${WORKDIR}/${MY_P}" - src_prepare() { eapply_user eautoreconf } +src_configure() { + lto-guarantee-fat + econf +} + src_compile() { # bug 513766 emake -j1 } + +src_install() { + default + strip-lto-bytecode +}
