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 BE04013997D for ; Mon, 11 Nov 2019 21:48:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E0DF6E0900; Mon, 11 Nov 2019 21:48:52 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 C5F55E0900 for ; Mon, 11 Nov 2019 21:48:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 8C25C34CBB5 for ; Mon, 11 Nov 2019 21:48:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 045F089F for ; Mon, 11 Nov 2019 21:48:49 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1573508922.298d3c36aed5cdb79508f1527944cf2e64bf8686.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/mpir/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/mpir/mpir-3.0.0.ebuild X-VCS-Directories: sci-libs/mpir/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 298d3c36aed5cdb79508f1527944cf2e64bf8686 X-VCS-Branch: master Date: Mon, 11 Nov 2019 21:48: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: 4725e997-d6af-4f83-b979-787c2e92b519 X-Archives-Hash: 5c6f9627e6cac0e5c2e2e282bc89fbbd commit: 298d3c36aed5cdb79508f1527944cf2e64bf8686 Author: Mike Gilbert gentoo org> AuthorDate: Mon Nov 11 21:48:10 2019 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Mon Nov 11 21:48:42 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=298d3c36 sci-libs/mpir: pass --with-yasm=/bin/false on non-x86 archs Closes: https://bugs.gentoo.org/661430 Package-Manager: Portage-2.3.78_p18, Repoman-2.3.17_p114 Signed-off-by: Mike Gilbert gentoo.org> sci-libs/mpir/mpir-3.0.0.ebuild | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/sci-libs/mpir/mpir-3.0.0.ebuild b/sci-libs/mpir/mpir-3.0.0.ebuild index 9fd8a755b58..6efc062bb0a 100644 --- a/sci-libs/mpir/mpir-3.0.0.ebuild +++ b/sci-libs/mpir/mpir-3.0.0.ebuild @@ -59,12 +59,16 @@ src_configure() { # beware that cpudetection aka fat binaries is x86/amd64 only. # Place mpir in profiles/arch/$arch/package.use.mask # when making it available on $arch. - local myeconfargs+=( + local myeconfargs=( $(use_enable cxx) $(use_enable cpudetection fat) $(use_enable static-libs static) ) - econf ${myeconfargs[@]} + # https://bugs.gentoo.org/661430 + if !use amd64 && !use x86; then + myeconfargs+=( --with-yasm=/bin/false ) + fi + econf "${myeconfargs[@]}" } src_install() {