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 90F26158088 for ; Tue, 23 Nov 2021 08:12:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7AA4FE085E; Tue, 23 Nov 2021 08:12:19 +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 4FAE8E085B for ; Tue, 23 Nov 2021 08:12:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 53A39342FBA for ; Tue, 23 Nov 2021 08:12:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E82F71DC for ; Tue, 23 Nov 2021 08:12:16 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1637655134.4b2b76c7b700e31dcdcd41495b4e8778546a98ce.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/redis-py/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/redis-py/redis-py-4.0.2.ebuild X-VCS-Directories: dev-python/redis-py/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4b2b76c7b700e31dcdcd41495b4e8778546a98ce X-VCS-Branch: master Date: Tue, 23 Nov 2021 08:12:16 +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: 3d62bffd-7370-45a8-be81-d455c03ba4f9 X-Archives-Hash: 79f3534e5e55613ca26b0fddb6c724bc commit: 4b2b76c7b700e31dcdcd41495b4e8778546a98ce Author: Michał Górny gentoo org> AuthorDate: Tue Nov 23 07:48:51 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Nov 23 08:12:14 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b2b76c7 dev-python/redis-py: Replace elog with einfo Signed-off-by: Michał Górny gentoo.org> dev-python/redis-py/redis-py-4.0.2.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/redis-py/redis-py-4.0.2.ebuild b/dev-python/redis-py/redis-py-4.0.2.ebuild index ccefac5ea7ba..d9c474ea7e29 100644 --- a/dev-python/redis-py/redis-py-4.0.2.ebuild +++ b/dev-python/redis-py/redis-py-4.0.2.ebuild @@ -41,8 +41,8 @@ python_test() { # Spawn Redis itself for testing purposes # NOTE: On sam@'s machine, spawning Redis can hang in the sandbox. # I'm not restricting tests yet because this doesn't happen for anyone else AFAICT. - elog "Spawning Redis" - elog "NOTE: Port ${redis_port} must be free" + einfo "Spawning Redis" + einfo "NOTE: Port ${redis_port} must be free" "${EPREFIX}"/usr/sbin/redis-server - <<< "${redis_test_config}" || die # Run the tests