commit:     0d222fbe7ac1ad3a4f1b61482015e19bad923d41
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 17 17:22:20 2025 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat Nov 22 19:52:33 2025 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=0d222fbe

EAPI 9: Update Bash version from 5.2 to 5.3

Bug: https://bugs.gentoo.org/946193
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 bin/eapi.sh   | 2 +-
 bin/ebuild.sh | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/bin/eapi.sh b/bin/eapi.sh
index 7babdf62e0..f5a58da097 100644
--- a/bin/eapi.sh
+++ b/bin/eapi.sh
@@ -86,7 +86,7 @@ ___eapi_usev_has_second_arg()                                 
  [[ ${1-${EAPI-0}
 ___eapi_bash_3_2()                          [[ ${1-${EAPI-0}} == [0-5] ]]
 ___eapi_bash_4_2()                          [[ ${1-${EAPI-0}} == [67]  ]]
 ___eapi_bash_5_0()                          [[ ${1-${EAPI-0}} == 8     ]]
-___eapi_bash_5_2()                          [[ ${1-${EAPI-0}} != [0-8] ]]
+___eapi_bash_5_3()                          [[ ${1-${EAPI-0}} != [0-8] ]]
 ___eapi_enables_failglob_in_global_scope()  [[ ${1-${EAPI-0}} != [0-5] ]]
 ___eapi_has_ENV_UNSET()                     [[ ${1-${EAPI-0}} != [0-6] ]]
 ___eapi_has_strict_keepdir()                [[ ${1-${EAPI-0}} != [0-7] ]]

diff --git a/bin/ebuild.sh b/bin/ebuild.sh
index 12adee68b4..6e59e65d3d 100755
--- a/bin/ebuild.sh
+++ b/bin/ebuild.sh
@@ -34,10 +34,10 @@ __check_bash_version() {
                dependent="EAPI ${EAPI}"
                (( compat_maj = maj = 5 ))
                (( compat_min = min = 0 ))
-       elif ___eapi_bash_5_2; then
+       elif ___eapi_bash_5_3; then
                dependent="EAPI ${EAPI}"
                (( compat_maj = maj = 5 ))
-               (( compat_min = min = 2 ))
+               (( compat_min = min = 3 ))
        fi
 
        # Ensure that the minimum required version is satisfied.

Reply via email to