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 01594158176 for ; Wed, 15 Oct 2025 15:34:15 +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 D1EE0335D0E for ; Wed, 15 Oct 2025 15:34:15 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id BD1E21104A0; Wed, 15 Oct 2025 15:34:14 +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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id B0BEA1104A0 for ; Wed, 15 Oct 2025 15:34:14 +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 6D1D2340B10 for ; Wed, 15 Oct 2025 15:34:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CBF6834DD for ; Wed, 15 Oct 2025 15:34:12 +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: <1760542437.490faaf2428c4d5265841d825032b2e571e9d452.sam@gentoo> Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/ X-VCS-Repository: repo/proj/prefix X-VCS-Files: scripts/bootstrap-bash.sh X-VCS-Directories: scripts/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 490faaf2428c4d5265841d825032b2e571e9d452 X-VCS-Branch: master Date: Wed, 15 Oct 2025 15:34:12 +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: a887eda1-8a52-4fea-b8b3-23a674143e8a X-Archives-Hash: f6d09077d47df35a46713a4bc333d451 commit: 490faaf2428c4d5265841d825032b2e571e9d452 Author: Sam James gentoo org> AuthorDate: Wed Oct 15 15:33:29 2025 +0000 Commit: Sam James gentoo org> CommitDate: Wed Oct 15 15:33:57 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=490faaf2 scripts/bootstrap-bash.sh: bash-5.2 -> bash-5.3 This also has GCC 15 / C23 fixes. Signed-off-by: Sam James gentoo.org> scripts/bootstrap-bash.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/bootstrap-bash.sh b/scripts/bootstrap-bash.sh index d587c68b69..04a672e476 100755 --- a/scripts/bootstrap-bash.sh +++ b/scripts/bootstrap-bash.sh @@ -36,7 +36,7 @@ same_file() { fi } -if [ ! -e bash-5.2.tar.gz ] ; then +if [ ! -e bash-5.3.tar.gz ] ; then eerror() { echo "!!! $*" 1>&2; } einfo() { echo "* $*"; } @@ -72,12 +72,12 @@ if [ ! -e bash-5.2.tar.gz ] ; then exit 1 fi fi - ${FETCH_COMMAND} "${GENTOO_MIRRORS}/bash-5.2.tar.gz" < /dev/null + ${FETCH_COMMAND} "${GENTOO_MIRRORS}/bash-5.3.tar.gz" < /dev/null fi -gzip -d bash-5.2.tar.gz -tar -xf bash-5.2.tar -cd bash-5.2 || exit 2 +gzip -d bash-5.3.tar.gz +tar -xf bash-5.3.tar +cd bash-5.3 || exit 2 ./configure --prefix="${1}"/usr --disable-nls make