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 00290158094 for ; Thu, 30 Jun 2022 18:16:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 32C57E0C15; Thu, 30 Jun 2022 18:16:45 +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 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 143F8E0C15 for ; Thu, 30 Jun 2022 18:16:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 smtp.gentoo.org (Postfix) with ESMTPS id 25AF5341472 for ; Thu, 30 Jun 2022 18:16:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AA23C326 for ; Thu, 30 Jun 2022 18:16:42 +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: <1656612942.a2d84b5dea75df392e9d4fc093b88c77087fd687.sam@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: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a2d84b5dea75df392e9d4fc093b88c77087fd687 X-VCS-Branch: master Date: Thu, 30 Jun 2022 18:16:42 +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: 363e63fb-e966-47a6-8fa7-4376f5e2ac3c X-Archives-Hash: 6a13e03cd8ad7705c274cddc092f5c9f commit: a2d84b5dea75df392e9d4fc093b88c77087fd687 Author: Sam James gentoo org> AuthorDate: Thu Jun 30 18:15:42 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jun 30 18:15:42 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=a2d84b5d bootstrap-prefix.sh: crank up Python 3.9 version Closes: https://bugs.gentoo.org/843368 Closes: https://bugs.gentoo.org/835579 Signed-off-by: Sam James gentoo.org> scripts/bootstrap-prefix.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index 5670f37bc2..a484eae4d2 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -1035,13 +1035,14 @@ bootstrap_gnu() { PYTHONMAJMIN=3.9 # keep this number in line with PV below for stage1,2 bootstrap_python() { - PV=3.9.6 + PV=3.9.13 A=Python-${PV}.tar.xz einfo "Bootstrapping ${A%.tar.*}" - # don't really want to put this on the mirror, since they are - # non-vanilla sources, bit specific for us - efetch ${DISTFILES_URL}/${A} || return 1 + # Don't really want to put this on the mirror, since they are + # non-vanilla sources, bit specific for us. Ideally use HTTPS / upstream + # but fall back to dev.gentoo.org w/ HTTP (host wget may not suport HTTPS). + efetch https://www.python.org/ftp/python/${PV}/${A} || efetch ${DISTFILES_URL}/${A} || return 1 einfo "Unpacking ${A%.tar.*}" export S="${PORTAGE_TMPDIR}/python-${PV}"