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 7DD7F158043 for ; Fri, 19 Apr 2024 09:37:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 35333E29EE; Fri, 19 Apr 2024 09:37:16 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 17A0FE29EE for ; Fri, 19 Apr 2024 09:37:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 09A653434B5 for ; Fri, 19 Apr 2024 09:37:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1F4481729 for ; Fri, 19 Apr 2024 09:37:13 +0000 (UTC) From: "Petr Vaněk" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Petr Vaněk" Message-ID: <1713519347.2799cb060ccd96724ef5f627ce94ab74547de2b9.arkamar@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/hiredis/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/hiredis/hiredis-1.0.2-r3.ebuild X-VCS-Directories: dev-libs/hiredis/ X-VCS-Committer: arkamar X-VCS-Committer-Name: Petr Vaněk X-VCS-Revision: 2799cb060ccd96724ef5f627ce94ab74547de2b9 X-VCS-Branch: master Date: Fri, 19 Apr 2024 09:37:13 +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: 3d4afa29-19ed-4350-bef0-2c0ff46f7edf X-Archives-Hash: e1cad89e5d3cb9de41fe920c9cdf3ca6 commit: 2799cb060ccd96724ef5f627ce94ab74547de2b9 Author: Petr Vaněk gentoo org> AuthorDate: Fri Apr 19 09:19:14 2024 +0000 Commit: Petr Vaněk gentoo org> CommitDate: Fri Apr 19 09:35:47 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2799cb06 dev-libs/hiredis: correct hiredis-test parameter The -p parameter expects redis port, not PID. Tests still fail, but those issues were fixed in version 1.1.0, which is about to be stabilized, therefore, I don't think we have to spend time fixing them. Failures are most probably related to used redis server version, see comments in [1]. [1] https://github.com/redis/hiredis/commit/b455b33818be4dab51777433fcac0d15e0c221ec Closes: https://bugs.gentoo.org/864795 Closes: https://bugs.gentoo.org/866944 Closes: https://bugs.gentoo.org/880395 Signed-off-by: Petr Vaněk gentoo.org> dev-libs/hiredis/hiredis-1.0.2-r3.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-libs/hiredis/hiredis-1.0.2-r3.ebuild b/dev-libs/hiredis/hiredis-1.0.2-r3.ebuild index b990a555460f..178cf593343d 100644 --- a/dev-libs/hiredis/hiredis-1.0.2-r3.ebuild +++ b/dev-libs/hiredis/hiredis-1.0.2-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -66,7 +66,7 @@ src_test() { _build hiredis-test "${EPREFIX}"/usr/sbin/redis-server - <<< "${REDIS_TEST_CONFIG}" || die - ./hiredis-test -h 127.0.0.1 -p ${REDIS_PID} -s ${REDIS_SOCK} + ./hiredis-test -h 127.0.0.1 -p ${REDIS_PORT} -s ${REDIS_SOCK} local ret=$? kill "$(<"${REDIS_PID}")" || die