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 6AA61138359 for ; Sat, 21 Nov 2020 13:45:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9F0ACE07A5; Sat, 21 Nov 2020 13:45:35 +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 88099E07A5 for ; Sat, 21 Nov 2020 13:45:35 +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 46B9D340DF1 for ; Sat, 21 Nov 2020 13:45:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8DD34451 for ; Sat, 21 Nov 2020 13:45:32 +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: <1605966239.2185ae8dc748888b8f86221018b77d4aac8770e8.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: 2185ae8dc748888b8f86221018b77d4aac8770e8 X-VCS-Branch: master Date: Sat, 21 Nov 2020 13:45:32 +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: c1faf7ed-bf81-49a5-8013-669991a740dd X-Archives-Hash: daac4a5e773438928e57e90e23da0187 commit: 2185ae8dc748888b8f86221018b77d4aac8770e8 Author: Fabian Groffen gentoo org> AuthorDate: Sat Nov 21 13:43:59 2020 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Sat Nov 21 13:43:59 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=2185ae8d scripts/bootstrap-prefix: use latest portage which matches snapshot Signed-off-by: Fabian Groffen gentoo.org> scripts/bootstrap-prefix.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index 7edc5b9d3e..ca029edc21 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -660,8 +660,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="2.3.100" - [[ ${TESTING_PV} == latest ]] && TESTING_PV="2.3.100" + STABLE_PV="3.0.8" + [[ ${TESTING_PV} == latest ]] && TESTING_PV="3.0.8" PV="${TESTING_PV:-${STABLE_PV}}" A=prefix-portage-${PV}.tar.bz2 einfo "Bootstrapping ${A%-*}"