Gentoo Archives: gentoo-commits

From: Mark Wright <gienah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/z3/
Date: Wed, 26 Apr 2017 08:13:11
Message-Id: 1493194366.fac58ef78e53cdf1de639bb181601565443f3d5c.gienah@gentoo
1 commit: fac58ef78e53cdf1de639bb181601565443f3d5c
2 Author: Mark Wright <gienah <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 26 08:12:07 2017 +0000
4 Commit: Mark Wright <gienah <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 26 08:12:46 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fac58ef7
7
8 sci-mathematics/z3: Use echo instead of elog.
9
10 Thanks to mgorny for reporting and the fix, K_F, Blackb|rd and Arfrever for helping.
11
12 Package-Manager: portage-2.3.5
13
14 sci-mathematics/z3/z3-4.4.1.ebuild | 2 +-
15 sci-mathematics/z3/z3-4.5.0.ebuild | 4 ++--
16 2 files changed, 3 insertions(+), 3 deletions(-)
17
18 diff --git a/sci-mathematics/z3/z3-4.4.1.ebuild b/sci-mathematics/z3/z3-4.4.1.ebuild
19 index 438fa4dd504..8fd027f17fe 100644
20 --- a/sci-mathematics/z3/z3-4.4.1.ebuild
21 +++ b/sci-mathematics/z3/z3-4.4.1.ebuild
22 @@ -83,7 +83,7 @@ src_configure() {
23 set -- \
24 $(usex gmp --gmp "") \
25 $(usex java --java "")
26 - elog ./configure "$@"
27 + echo ./configure "$@" >&2
28 ./configure "$@" || die
29 ${EPYTHON} scripts/mk_make.py || die
30 }
31
32 diff --git a/sci-mathematics/z3/z3-4.5.0.ebuild b/sci-mathematics/z3/z3-4.5.0.ebuild
33 index 6f26e54e0d2..5f19493a454 100644
34 --- a/sci-mathematics/z3/z3-4.5.0.ebuild
35 +++ b/sci-mathematics/z3/z3-4.5.0.ebuild
36 @@ -77,13 +77,13 @@ src_configure() {
37 $(usex gmp --gmp "") \
38 $(usex python --python "") \
39 $(usex java --java "")
40 - elog ./configure "$@"
41 + echo ./configure "$@" >&2
42 # LANG=C to force external tools to output ascii text only
43 # otherwise configure crashes as:
44 # File "scripts/mk_make.py", line 21, in <module>
45 # UnicodeEncodeError: 'ascii' codec can't encode characters in position 80-82: ordinal not in range(128)
46 LANG=C ./configure "$@" || die
47 - elog ${EPYTHON} scripts/mk_make.py "$@"
48 + echo ${EPYTHON} scripts/mk_make.py "$@" >&2
49 LANG=C ${EPYTHON} scripts/mk_make.py || die
50 }