From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 AA40315ACFC for ; Thu, 4 May 2023 07:54:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DCBD4E101C; Thu, 4 May 2023 07:54:09 +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 BDD72E101C for ; Thu, 4 May 2023 07:54:09 +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 D0E2C3414C6 for ; Thu, 4 May 2023 07:54:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 21F578E4 for ; Thu, 4 May 2023 07:54:07 +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: <1683186839.1b73ceadb8401fec2bfaa2e7e95a05e1b14671f0.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: 1b73ceadb8401fec2bfaa2e7e95a05e1b14671f0 X-VCS-Branch: master Date: Thu, 4 May 2023 07:54:07 +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: ad609154-6ef8-4dd3-af50-728b2c6b2280 X-Archives-Hash: 1dc431ea270e7af28a41072b89d8dbb4 commit: 1b73ceadb8401fec2bfaa2e7e95a05e1b14671f0 Author: Fabian Groffen gentoo org> AuthorDate: Thu May 4 07:53:59 2023 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Thu May 4 07:53:59 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=1b73cead scripts/bootstrap-prefix: use 3.11 as stage1 python Signed-off-by: Fabian Groffen gentoo.org> scripts/bootstrap-prefix.sh | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index 65661f615e..de4f70201f 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -1001,16 +1001,16 @@ python_ver() { if [[ ${CHOST} == *-cygwin* ]] ; then echo 3.9 # keep this number in line with PV below for stage1,2 else - echo 3.10 # keep this number in line with PV below for stage1,2 + echo 3.11 # keep this number in line with PV below for stage1,2 fi } bootstrap_python() { if [[ ${CHOST} == *-cygwin* ]] ; then - PV=3.9.10 - else - PV=3.10.4 - fi + PV=$(python_ver).10 + else + PV=$(python_ver).3 + fi A=Python-${PV}.tar.xz einfo "Bootstrapping ${A%.tar.*}" @@ -3423,7 +3423,8 @@ fi bootstrap_${TODO#non} || exit 1 # Local Variables: -# sh-indentation: 8 -# sh-basic-offset: 8 +# sh-indentation: 4 +# sh-basic-offset: 4 # indent-tabs-mode: t # End: +# vim: set ts=4 sw=4 noexpandtab: