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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 597B71382C5 for ; Mon, 7 Dec 2020 18:10:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A7881E0AB4; Mon, 7 Dec 2020 18:09:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8D73FE0AB4 for ; Mon, 7 Dec 2020 18:09:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 145CD3410C8 for ; Mon, 7 Dec 2020 18:09:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BC77A46F for ; Mon, 7 Dec 2020 18:09:56 +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: <1607364565.d05e8fa62e24a99468fc3a0fac1fb7a8b621eac4.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: d05e8fa62e24a99468fc3a0fac1fb7a8b621eac4 X-VCS-Branch: master Date: Mon, 7 Dec 2020 18:09:56 +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: cd5a701f-8ce8-43bd-89f5-ece08b74253e X-Archives-Hash: 99f929ac3bc09a3e4d35c49b2ec52497 commit: d05e8fa62e24a99468fc3a0fac1fb7a8b621eac4 Author: Fabian Groffen gentoo org> AuthorDate: Mon Dec 7 18:09:25 2020 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Mon Dec 7 18:09:25 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=d05e8fa6 scripts/bootstrap-portage: use latest portage, python 3.8 Signed-off-by: Fabian Groffen gentoo.org> scripts/bootstrap-prefix.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index bed81f04ea..37e87ac08b 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -664,8 +664,8 @@ bootstrap_portage() { # STABLE_PV that is known to work. Intended for power users only. ## It is critical that STABLE_PV is the lastest (non-masked) version that is ## included in the snapshot for bootstrap_tree. - STABLE_PV="3.0.10.2" - [[ ${TESTING_PV} == latest ]] && TESTING_PV="3.0.10.2" + STABLE_PV="3.0.12" + [[ ${TESTING_PV} == latest ]] && TESTING_PV="3.0.12" PV="${TESTING_PV:-${STABLE_PV}}" A=prefix-portage-${PV}.tar.bz2 einfo "Bootstrapping ${A%-*}" @@ -968,9 +968,9 @@ bootstrap_gnu() { einfo "${PN}-${PV} successfully bootstrapped" } -PYTHONMAJMIN=3.7 # keep this number in line with PV below for stage1,2 +PYTHONMAJMIN=3.8 # keep this number in line with PV below for stage1,2 bootstrap_python() { - PV=3.7.8 + PV=3.8.5 A=Python-${PV}.tar.xz patch=true