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 C9417158083 for ; Sun, 22 Sep 2024 11:27:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D13522BC08E; Sun, 22 Sep 2024 11:27:02 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 BCF192BC08E for ; Sun, 22 Sep 2024 11:27:02 +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 085C334327F for ; Sun, 22 Sep 2024 11:27:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5A20727FB for ; Sun, 22 Sep 2024 11:27:00 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1727004391.d41ccfca6ff4e0ec8652b6808070f9b718e74413.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/git/git-2.46.0.ebuild dev-vcs/git/git-2.46.1.ebuild dev-vcs/git/git-9999.ebuild X-VCS-Directories: dev-vcs/git/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d41ccfca6ff4e0ec8652b6808070f9b718e74413 X-VCS-Branch: master Date: Sun, 22 Sep 2024 11:27:00 +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: 66bf7700-af2b-4a08-b583-e9cba409f003 X-Archives-Hash: 8e538c12fc5107ecf21406cb2ae307c9 commit: d41ccfca6ff4e0ec8652b6808070f9b718e74413 Author: Sam James gentoo org> AuthorDate: Sun Sep 22 11:25:37 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Sep 22 11:26:31 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d41ccfca dev-vcs/git: fixup netrc test handling * Use emake for cleaner error handling * Always give verbose logs * Fix directory Signed-off-by: Sam James gentoo.org> dev-vcs/git/git-2.46.0.ebuild | 5 ++--- dev-vcs/git/git-2.46.1.ebuild | 5 ++--- dev-vcs/git/git-9999.ebuild | 5 ++--- 3 files changed, 6 insertions(+), 9 deletions(-) diff --git a/dev-vcs/git/git-2.46.0.ebuild b/dev-vcs/git/git-2.46.0.ebuild index 0247cf6cb525..6112d2fa6228 100644 --- a/dev-vcs/git/git-2.46.0.ebuild +++ b/dev-vcs/git/git-2.46.0.ebuild @@ -487,10 +487,9 @@ src_test() { # And bail if there was a problem [[ ${rc} -eq 0 ]] || die "Tests failed. Please file a bug!" + popd &>/dev/null || die if use perl ; then - make -C contrib/credential/netrc test || \ - make -C contrib/credential/netrc testverbose || \ - die "Tests failed for git-credential-netrc failed. Please file a bug!" + emake -C contrib/credential/netrc testverbose fi } diff --git a/dev-vcs/git/git-2.46.1.ebuild b/dev-vcs/git/git-2.46.1.ebuild index 0247cf6cb525..6112d2fa6228 100644 --- a/dev-vcs/git/git-2.46.1.ebuild +++ b/dev-vcs/git/git-2.46.1.ebuild @@ -487,10 +487,9 @@ src_test() { # And bail if there was a problem [[ ${rc} -eq 0 ]] || die "Tests failed. Please file a bug!" + popd &>/dev/null || die if use perl ; then - make -C contrib/credential/netrc test || \ - make -C contrib/credential/netrc testverbose || \ - die "Tests failed for git-credential-netrc failed. Please file a bug!" + emake -C contrib/credential/netrc testverbose fi } diff --git a/dev-vcs/git/git-9999.ebuild b/dev-vcs/git/git-9999.ebuild index 0247cf6cb525..6112d2fa6228 100644 --- a/dev-vcs/git/git-9999.ebuild +++ b/dev-vcs/git/git-9999.ebuild @@ -487,10 +487,9 @@ src_test() { # And bail if there was a problem [[ ${rc} -eq 0 ]] || die "Tests failed. Please file a bug!" + popd &>/dev/null || die if use perl ; then - make -C contrib/credential/netrc test || \ - make -C contrib/credential/netrc testverbose || \ - die "Tests failed for git-credential-netrc failed. Please file a bug!" + emake -C contrib/credential/netrc testverbose fi }