From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1600719-garchives=archives.gentoo.org@lists.gentoo.org>
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 E92EE15808B
	for <garchives@archives.gentoo.org>; Fri, 16 Feb 2024 00:19:37 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id EF0FBE29C9;
	Fri, 16 Feb 2024 00:19:36 +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) server-digest SHA256)
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id D450BE29C9
	for <gentoo-commits@lists.gentoo.org>; Fri, 16 Feb 2024 00:19:36 +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 10C8834301D
	for <gentoo-commits@lists.gentoo.org>; Fri, 16 Feb 2024 00:19:36 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 770FF148C
	for <gentoo-commits@lists.gentoo.org>; Fri, 16 Feb 2024 00:19:34 +0000 (UTC)
From: "Sam James" <sam@gentoo.org>
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" <sam@gentoo.org>
Message-ID: <1708042617.ea70234532b5091dbed48fb975db26d1d57c863e.sam@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/bat/
X-VCS-Repository: repo/gentoo
X-VCS-Files: sys-apps/bat/bat-0.23.0-r1.ebuild sys-apps/bat/bat-0.24.0.ebuild
X-VCS-Directories: sys-apps/bat/
X-VCS-Committer: sam
X-VCS-Committer-Name: Sam James
X-VCS-Revision: ea70234532b5091dbed48fb975db26d1d57c863e
X-VCS-Branch: master
Date: Fri, 16 Feb 2024 00:19:34 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: b4f12509-11c1-458c-a2eb-972ebde303b9
X-Archives-Hash: baeb1e533d8652b3acf581259ff957f6

commit:     ea70234532b5091dbed48fb975db26d1d57c863e
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 16 00:16:57 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Feb 16 00:16:57 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea702345

sys-apps/bat: move src_test above src_install

... to reflect phase execution order.

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-apps/bat/bat-0.23.0-r1.ebuild | 14 +++++++-------
 sys-apps/bat/bat-0.24.0.ebuild    | 14 +++++++-------
 2 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/sys-apps/bat/bat-0.23.0-r1.ebuild b/sys-apps/bat/bat-0.23.0-r1.ebuild
index f815894bb3b6..86995149aabc 100644
--- a/sys-apps/bat/bat-0.23.0-r1.ebuild
+++ b/sys-apps/bat/bat-0.23.0-r1.ebuild
@@ -206,6 +206,13 @@ src_configure() {
 	sed -i -e 's/strip = true/strip = false/g' Cargo.toml || die
 }
 
+src_test() {
+	# Set COLUMNS for deterministic help output, #913364
+	export COLUMNS=100
+
+	cargo_src_test
+}
+
 src_install() {
 	cargo_src_install
 
@@ -220,10 +227,3 @@ src_install() {
 	newzshcomp assets/completions/${PN}.zsh _${PN}
 	dofishcomp assets/completions/${PN}.fish
 }
-
-src_test() {
-	# Set COLUMNS for deterministic help output, #913364
-	export COLUMNS=100
-
-	cargo_src_test
-}

diff --git a/sys-apps/bat/bat-0.24.0.ebuild b/sys-apps/bat/bat-0.24.0.ebuild
index 126e73832de9..5e377473db87 100644
--- a/sys-apps/bat/bat-0.24.0.ebuild
+++ b/sys-apps/bat/bat-0.24.0.ebuild
@@ -227,6 +227,13 @@ src_configure() {
 	cargo_src_configure
 }
 
+src_test() {
+	# Set COLUMNS for deterministic help output, #913364
+	export COLUMNS=100
+
+	cargo_src_test
+}
+
 src_install() {
 	cargo_src_install
 
@@ -241,10 +248,3 @@ src_install() {
 	newzshcomp assets/completions/${PN}.zsh _${PN}
 	dofishcomp assets/completions/${PN}.fish
 }
-
-src_test() {
-	# Set COLUMNS for deterministic help output, #913364
-	export COLUMNS=100
-
-	cargo_src_test
-}