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 5B762158090 for ; Fri, 20 May 2022 00:19:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 914C9E0919; Fri, 20 May 2022 00:19:45 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 69ED4E0919 for ; Fri, 20 May 2022 00:19:45 +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 64695341AE6 for ; Fri, 20 May 2022 00:19:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 81429445 for ; Fri, 20 May 2022 00:19:42 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1653005974.68dc143c02ece794317b08e6977ad026f91dfafd.sam@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-r1.ebuild X-VCS-Directories: sci-libs/mpir/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 68dc143c02ece794317b08e6977ad026f91dfafd X-VCS-Branch: master Date: Fri, 20 May 2022 00:19:42 +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: d62c016d-3351-418d-94af-43bb85758e13 X-Archives-Hash: 175c78ad5a2a43c417798f1ca320e13b commit: 68dc143c02ece794317b08e6977ad026f91dfafd Author: Sam James gentoo org> AuthorDate: Fri May 20 00:19:34 2022 +0000 Commit: Sam James gentoo org> CommitDate: Fri May 20 00:19:34 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68dc143c sci-libs/mpir: fix EendMissingArg Signed-off-by: Sam James gentoo.org> sci-libs/mpir/mpir-3.0.0-r1.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sci-libs/mpir/mpir-3.0.0-r1.ebuild b/sci-libs/mpir/mpir-3.0.0-r1.ebuild index 3c3622524aac..15beb9f34033 100644 --- a/sci-libs/mpir/mpir-3.0.0-r1.ebuild +++ b/sci-libs/mpir/mpir-3.0.0-r1.ebuild @@ -25,12 +25,14 @@ PATCHES=( src_prepare() { tc-export CC + default + # In the same way there was QA regarding executable stacks # with GMP we have some here as well. We cannot apply the # GMP solution as yasm is used, at least on x86/amd64. # Furthermore we are able to patch config.ac. - ebegin "Patching assembler files to remove executable sections" + einfo "Patching assembler files to remove executable sections" local i for i in $(find . -type f -name '*.asm') ; do cat >> $i <<-EOF || die @@ -49,7 +51,7 @@ src_prepare() { %endif EOF done - eend + eautoreconf }