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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0725A1382C5 for ; Sun, 7 Jun 2020 21:11:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3A628E08BF; Sun, 7 Jun 2020 21:11:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0C093E08BF for ; Sun, 7 Jun 2020 21:11:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 53AA134F016 for ; Sun, 7 Jun 2020 21:11:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0E65C26 for ; Sun, 7 Jun 2020 21:11:38 +0000 (UTC) From: "Alexey Shvetsov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexey Shvetsov" Message-ID: <1591564290.56bb49e97ee1dc6ee5a257bed3e45c2154b87dab.alexxy@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/arpack/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/arpack/arpack-3.4.0.ebuild sci-libs/arpack/arpack-3.5.0.ebuild sci-libs/arpack/arpack-9999.ebuild X-VCS-Directories: sci-libs/arpack/ X-VCS-Committer: alexxy X-VCS-Committer-Name: Alexey Shvetsov X-VCS-Revision: 56bb49e97ee1dc6ee5a257bed3e45c2154b87dab X-VCS-Branch: master Date: Sun, 7 Jun 2020 21:11:38 +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: 7ad39acf-34e7-4de7-b1c5-33018e734463 X-Archives-Hash: a2bcf6c6d3cb3cde712c097e1ae59374 commit: 56bb49e97ee1dc6ee5a257bed3e45c2154b87dab Author: Alexey Shvetsov gentoo org> AuthorDate: Sun Jun 7 21:11:18 2020 +0000 Commit: Alexey Shvetsov gentoo org> CommitDate: Sun Jun 7 21:11:30 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56bb49e9 sci-libs/arpack: Fix build with gcc10 Closes: https://bugs.gentoo.org/721858 Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Alexey Shvetsov gentoo.org> sci-libs/arpack/arpack-3.4.0.ebuild | 13 +++++++------ sci-libs/arpack/arpack-3.5.0.ebuild | 11 ++++++----- sci-libs/arpack/arpack-9999.ebuild | 10 +++++----- 3 files changed, 18 insertions(+), 16 deletions(-) diff --git a/sci-libs/arpack/arpack-3.4.0.ebuild b/sci-libs/arpack/arpack-3.4.0.ebuild index bdb9445f39b..0b424e22868 100644 --- a/sci-libs/arpack/arpack-3.4.0.ebuild +++ b/sci-libs/arpack/arpack-3.4.0.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit autotools eutils fortran-2 toolchain-funcs +inherit autotools eutils flag-o-matic fortran-2 toolchain-funcs DESCRIPTION="Arnoldi package library to solve large scale eigenvalue problems" HOMEPAGE="http://www.caam.rice.edu/software/ARPACK/ https://github.com/opencollab/arpack-ng" @@ -33,6 +33,7 @@ src_prepare() { } src_configure() { + append-fflags -fallow-argument-mismatch econf \ --disable-static \ --with-blas="$($(tc-getPKG_CONFIG) --libs blas)" \ @@ -47,11 +48,11 @@ src_install() { newdoc DOCUMENTS/README README.doc use doc && dodoc "${WORKDIR}"/*.ps if use examples; then - insinto /usr/share/doc/${PF} - doins -r EXAMPLES + docinto /usr/share/doc/${PF} + dodoc -r EXAMPLES if use mpi; then - insinto /usr/share/doc/${PF}/EXAMPLES/PARPACK - doins -r PARPACK/EXAMPLES/MPI + docinto /usr/share/doc/${PF}/EXAMPLES/PARPACK + dodoc -r PARPACK/EXAMPLES/MPI fi fi } diff --git a/sci-libs/arpack/arpack-3.5.0.ebuild b/sci-libs/arpack/arpack-3.5.0.ebuild index 8f4f64772fd..097be6e89f8 100644 --- a/sci-libs/arpack/arpack-3.5.0.ebuild +++ b/sci-libs/arpack/arpack-3.5.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit autotools eutils fortran-2 toolchain-funcs +inherit autotools eutils flag-o-matic fortran-2 toolchain-funcs DESCRIPTION="Arnoldi package library to solve large scale eigenvalue problems" HOMEPAGE="http://www.caam.rice.edu/software/ARPACK/ https://github.com/opencollab/arpack-ng" @@ -33,6 +33,7 @@ src_prepare() { } src_configure() { + append-fflags -fallow-argument-mismatch econf \ --disable-static \ --with-blas="$($(tc-getPKG_CONFIG) --libs blas)" \ @@ -47,11 +48,11 @@ src_install() { newdoc DOCUMENTS/README README.doc use doc && dodoc "${WORKDIR}"/*.ps if use examples; then - insinto /usr/share/doc/${PF} - doins -r EXAMPLES + docinto /usr/share/doc/${PF} + dodoc -r EXAMPLES if use mpi; then - insinto /usr/share/doc/${PF}/EXAMPLES/PARPACK - doins -r PARPACK/EXAMPLES/MPI + docinto /usr/share/doc/${PF}/EXAMPLES/PARPACK + dodoc -r PARPACK/EXAMPLES/MPI fi fi } diff --git a/sci-libs/arpack/arpack-9999.ebuild b/sci-libs/arpack/arpack-9999.ebuild index e81afe18fb4..e295ad66c2c 100644 --- a/sci-libs/arpack/arpack-9999.ebuild +++ b/sci-libs/arpack/arpack-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -47,11 +47,11 @@ src_install() { dodoc DOCUMENTS/*.doc newdoc DOCUMENTS/README README.doc if use examples; then - insinto /usr/share/doc/${PF} - doins -r EXAMPLES + docinto /usr/share/doc/${PF} + dodoc -r EXAMPLES if use mpi; then - insinto /usr/share/doc/${PF}/EXAMPLES/PARPACK - doins -r PARPACK/EXAMPLES/MPI + docinto /usr/share/doc/${PF}/EXAMPLES/PARPACK + dodoc -r PARPACK/EXAMPLES/MPI fi fi }