commit: fe66a10754a70c3abe4dd16bf88c9a7248d4992a Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Fri Feb 19 12:29:48 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Fri Feb 19 12:45:27 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe66a107
sci-libs/getdata: workaround gcc 10 (fortran) failure Closes: https://bugs.gentoo.org/723076 Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Sam James <sam <AT> gentoo.org> sci-libs/getdata/getdata-0.9.0-r3.ebuild | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/sci-libs/getdata/getdata-0.9.0-r3.ebuild b/sci-libs/getdata/getdata-0.9.0-r3.ebuild index 9282f015685..118a1e4dace 100644 --- a/sci-libs/getdata/getdata-0.9.0-r3.ebuild +++ b/sci-libs/getdata/getdata-0.9.0-r3.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 FORTRAN_STANDARD="95" FORTRAN_NEEDED=fortran -inherit autotools fortran-2 +inherit autotools fortran-2 flag-o-matic DESCRIPTION="Reference implementation of the Dirfile, format for time-ordered binary data" HOMEPAGE="http://getdata.sourceforge.net/" @@ -31,6 +31,10 @@ src_prepare() { } src_configure() { + # GCC 10 workaround + # bug #723076 + append-fflags $(test-flags-FC -fallow-argument-mismatch) + econf \ --disable-idl \ --disable-matlab \
