From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 69E2F158074 for ; Sat, 28 Jun 2025 02:31:11 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 577C33410E3 for ; Sat, 28 Jun 2025 02:31:11 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 9AF8211056E; Sat, 28 Jun 2025 02:30:39 +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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 8F50C11056C for ; Sat, 28 Jun 2025 02:30:39 +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) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4022C340EAC for ; Sat, 28 Jun 2025 02:30:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EAB352AB0 for ; Sat, 28 Jun 2025 02:30:35 +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: <1751077820.e2c757593c98a4821443911147c4e18da9b55809.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/save-ebuild-env.sh X-VCS-Directories: bin/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e2c757593c98a4821443911147c4e18da9b55809 X-VCS-Branch: master Date: Sat, 28 Jun 2025 02:30: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: 710318dd-6fbf-4e70-bc4f-25d4f62915f2 X-Archives-Hash: f9b40421444f83f980801cf170067dda commit: e2c757593c98a4821443911147c4e18da9b55809 Author: Kerin Millar plushkava net> AuthorDate: Fri Jun 27 05:34:13 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jun 28 02:30:20 2025 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=e2c75759 save-ebuild-env.sh: drop bash 3.x support Bash 4.0 was released in February 2009. Portage, itself, cannot function correctly without at least 4.4, which was released in September 2016. The sys-apps/portage ebuild expresses a runtime dependency for at least 5.0, which was released in January 2019. As such, no concessions need be made for versions bearing a major number of 3. Signed-off-by: Kerin Millar plushkava.net> Signed-off-by: Sam James gentoo.org> bin/save-ebuild-env.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/bin/save-ebuild-env.sh b/bin/save-ebuild-env.sh index 418006da20..05557356e9 100644 --- a/bin/save-ebuild-env.sh +++ b/bin/save-ebuild-env.sh @@ -130,7 +130,4 @@ __save_ebuild_env() ( declare -p declare -fp - if [[ ${BASH_VERSINFO[0]} == 3 ]]; then - export - fi )