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 EFAEA139694 for ; Wed, 26 Apr 2017 08:13:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0B55121C038; Wed, 26 Apr 2017 08:13:11 +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-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DB80F21C038 for ; Wed, 26 Apr 2017 08:13:10 +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 B3DC033BF1C for ; Wed, 26 Apr 2017 08:13:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1F1562494 for ; Wed, 26 Apr 2017 08:13:08 +0000 (UTC) From: "Mark Wright" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mark Wright" Message-ID: <1493194366.fac58ef78e53cdf1de639bb181601565443f3d5c.gienah@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/z3/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/z3/z3-4.4.1.ebuild sci-mathematics/z3/z3-4.5.0.ebuild X-VCS-Directories: sci-mathematics/z3/ X-VCS-Committer: gienah X-VCS-Committer-Name: Mark Wright X-VCS-Revision: fac58ef78e53cdf1de639bb181601565443f3d5c X-VCS-Branch: master Date: Wed, 26 Apr 2017 08:13:08 +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-Archives-Salt: f9894d53-1793-41ba-8a2d-4b46b749469f X-Archives-Hash: 9139fa227c5679bec6f824a05e31ecf1 commit: fac58ef78e53cdf1de639bb181601565443f3d5c Author: Mark Wright gentoo org> AuthorDate: Wed Apr 26 08:12:07 2017 +0000 Commit: Mark Wright gentoo org> CommitDate: Wed Apr 26 08:12:46 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fac58ef7 sci-mathematics/z3: Use echo instead of elog. Thanks to mgorny for reporting and the fix, K_F, Blackb|rd and Arfrever for helping. Package-Manager: portage-2.3.5 sci-mathematics/z3/z3-4.4.1.ebuild | 2 +- sci-mathematics/z3/z3-4.5.0.ebuild | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sci-mathematics/z3/z3-4.4.1.ebuild b/sci-mathematics/z3/z3-4.4.1.ebuild index 438fa4dd504..8fd027f17fe 100644 --- a/sci-mathematics/z3/z3-4.4.1.ebuild +++ b/sci-mathematics/z3/z3-4.4.1.ebuild @@ -83,7 +83,7 @@ src_configure() { set -- \ $(usex gmp --gmp "") \ $(usex java --java "") - elog ./configure "$@" + echo ./configure "$@" >&2 ./configure "$@" || die ${EPYTHON} scripts/mk_make.py || die } diff --git a/sci-mathematics/z3/z3-4.5.0.ebuild b/sci-mathematics/z3/z3-4.5.0.ebuild index 6f26e54e0d2..5f19493a454 100644 --- a/sci-mathematics/z3/z3-4.5.0.ebuild +++ b/sci-mathematics/z3/z3-4.5.0.ebuild @@ -77,13 +77,13 @@ src_configure() { $(usex gmp --gmp "") \ $(usex python --python "") \ $(usex java --java "") - elog ./configure "$@" + echo ./configure "$@" >&2 # LANG=C to force external tools to output ascii text only # otherwise configure crashes as: # File "scripts/mk_make.py", line 21, in # UnicodeEncodeError: 'ascii' codec can't encode characters in position 80-82: ordinal not in range(128) LANG=C ./configure "$@" || die - elog ${EPYTHON} scripts/mk_make.py "$@" + echo ${EPYTHON} scripts/mk_make.py "$@" >&2 LANG=C ${EPYTHON} scripts/mk_make.py || die }