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 75FC8138350 for ; Thu, 19 Mar 2020 22:34:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B9DA0E0AF7; Thu, 19 Mar 2020 22:34:37 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 A38F9E0AF7 for ; Thu, 19 Mar 2020 22:34:37 +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 9C11A34F093 for ; Thu, 19 Mar 2020 22:34:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 423BB106 for ; Thu, 19 Mar 2020 22:34:35 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1584657271.b8d5a27733ec5a3841d2635a0aad64d88b2a973a.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/ffcall/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/ffcall/ffcall-2.1.ebuild X-VCS-Directories: dev-libs/ffcall/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: b8d5a27733ec5a3841d2635a0aad64d88b2a973a X-VCS-Branch: master Date: Thu, 19 Mar 2020 22:34:35 +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: f9a355b8-e9ce-4102-a0c2-94690715ee76 X-Archives-Hash: 83c14267b0add17c46c68391825e538c commit: b8d5a27733ec5a3841d2635a0aad64d88b2a973a Author: Sergei Trofimovich gentoo org> AuthorDate: Thu Mar 19 22:34:22 2020 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Thu Mar 19 22:34:31 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8d5a277 dev-libs/ffcall: use einfo, not elog in src_prepare() Noticed the post-merge output from dev-libs/ffcall when was installing gforth. The output did not look useful: ``` * Messages for package dev-libs/ffcall-2.1: * Patching 'Makefile.in' * Patching 'avcall/Makefile.in' * Patching 'callback/Makefile.in' * Patching 'gnulib-lib/Makefile.in' * Patching 'trampoline/Makefile.in' * Patching 'vacall/Makefile.in' * Patching 'callback/trampoline_r/Makefile.in' * Patching 'callback/vacall_r/Makefile.in' * Patching 'Makefile.in' ``` Package-Manager: Portage-2.3.94, Repoman-2.3.21 Signed-off-by: Sergei Trofimovich gentoo.org> dev-libs/ffcall/ffcall-2.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-libs/ffcall/ffcall-2.1.ebuild b/dev-libs/ffcall/ffcall-2.1.ebuild index 8a690e7e2c0..d627c694ee2 100644 --- a/dev-libs/ffcall/ffcall-2.1.ebuild +++ b/dev-libs/ffcall/ffcall-2.1.ebuild @@ -32,7 +32,7 @@ src_prepare() { for mfi in {,*/,*/*/,}Makefile.in do - elog "Patching '${mfi}'" + einfo "Patching '${mfi}'" # usually uses only assembler here, but -march= # and -Wa, are a must to pass here. sed -e 's/$(CC) /&$(CFLAGS) /g' \