Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/mpir/
Date: Fri, 20 May 2022 00:19:46
Message-Id: 1653005974.68dc143c02ece794317b08e6977ad026f91dfafd.sam@gentoo
1 commit: 68dc143c02ece794317b08e6977ad026f91dfafd
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 20 00:19:34 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri May 20 00:19:34 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68dc143c
7
8 sci-libs/mpir: fix EendMissingArg
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 sci-libs/mpir/mpir-3.0.0-r1.ebuild | 6 ++++--
13 1 file changed, 4 insertions(+), 2 deletions(-)
14
15 diff --git a/sci-libs/mpir/mpir-3.0.0-r1.ebuild b/sci-libs/mpir/mpir-3.0.0-r1.ebuild
16 index 3c3622524aac..15beb9f34033 100644
17 --- a/sci-libs/mpir/mpir-3.0.0-r1.ebuild
18 +++ b/sci-libs/mpir/mpir-3.0.0-r1.ebuild
19 @@ -25,12 +25,14 @@ PATCHES=(
20
21 src_prepare() {
22 tc-export CC
23 +
24 default
25 +
26 # In the same way there was QA regarding executable stacks
27 # with GMP we have some here as well. We cannot apply the
28 # GMP solution as yasm is used, at least on x86/amd64.
29 # Furthermore we are able to patch config.ac.
30 - ebegin "Patching assembler files to remove executable sections"
31 + einfo "Patching assembler files to remove executable sections"
32 local i
33 for i in $(find . -type f -name '*.asm') ; do
34 cat >> $i <<-EOF || die
35 @@ -49,7 +51,7 @@ src_prepare() {
36 %endif
37 EOF
38 done
39 - eend
40 +
41 eautoreconf
42 }