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 DC5431581B9 for ; Wed, 17 Sep 2025 12:16:39 +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 C3C2E340D96 for ; Wed, 17 Sep 2025 12:16:39 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id B9991110571; Wed, 17 Sep 2025 12:16:38 +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 AE24D110571 for ; Wed, 17 Sep 2025 12:16:38 +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 617BE340D96 for ; Wed, 17 Sep 2025 12:16:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0289C323D for ; Wed, 17 Sep 2025 12:16:37 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1758111344.697a2a91e6cd003e6ab3182b7814635afbaf34ae.grobian@gentoo> Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/ X-VCS-Repository: repo/proj/prefix X-VCS-Files: scripts/bootstrap-prefix.sh X-VCS-Directories: scripts/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 697a2a91e6cd003e6ab3182b7814635afbaf34ae X-VCS-Branch: master Date: Wed, 17 Sep 2025 12:16:37 +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: 0a49ab73-5898-4c1a-8129-fbc85ee0aa5c X-Archives-Hash: b04b050ad79420be305248ab8b8dde10 commit: 697a2a91e6cd003e6ab3182b7814635afbaf34ae Author: Fabian Groffen gentoo org> AuthorDate: Wed Sep 17 12:15:44 2025 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Wed Sep 17 12:15:44 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=697a2a91 scripts/bootstrap-prefix: add new guesstimator for macos Tahoe Apple changed their versioning (again) with Tahoe, adapt for it. Bug: https://bugs.gentoo.org/962964 Signed-off-by: Fabian Groffen gentoo.org> scripts/bootstrap-prefix.sh | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index 02c144b676..90929f2016 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -393,11 +393,12 @@ bootstrap_profile() { rev=${CHOST##*darwin} profile="prefix/darwin/macos/10.$((rev - 4))/x64" ;; - *64-apple-darwin2[0123456789]) + *64-apple-darwin2[01234]) # Big Sur is 11.0 darwin20 # Monterey is 12.0 darwin21 # Ventura is 13.0 darwin22 # Sanoma is 14.0 darwin23 + # Sequoia is 15.0 darwin24 rev=${CHOST##*darwin} case ${CHOST%%-*} in x86_64) arch=x64 ;; @@ -406,6 +407,16 @@ bootstrap_profile() { esac profile="prefix/darwin/macos/$((rev - 9)).0/${arch}" ;; + *64-apple-darwin2[56789]) + # Tahoe is 26.0 darwin25 + rev=${CHOST##*darwin} + case ${CHOST%%-*} in + x86_64) arch=x64 ;; + arm64) arch=arm64 ;; + *) arch=error ;; + esac + profile="prefix/darwin/macos/$((rev + 1)).0/${arch}" + ;; i*86-pc-linux-gnu) profile=${profile_linux/ARCH/x86} ;;