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 77CFE1382C5 for ; Thu, 14 Jan 2021 10:37:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 92714E096A; Thu, 14 Jan 2021 10:37:09 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 7CBA6E096A for ; Thu, 14 Jan 2021 10:37:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 437A6335DC3 for ; Thu, 14 Jan 2021 10:37:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 71BB64B for ; Thu, 14 Jan 2021 10:37:06 +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: <1610620620.a04d0b455318d4222370beeb4b9b0c809fabf060.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: a04d0b455318d4222370beeb4b9b0c809fabf060 X-VCS-Branch: master Date: Thu, 14 Jan 2021 10:37:06 +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: 67395e8f-8b9c-4709-88ea-2b1a8f063816 X-Archives-Hash: cfcea916d10ca84951f34a77f7fc9771 commit: a04d0b455318d4222370beeb4b9b0c809fabf060 Author: Fabian Groffen gentoo org> AuthorDate: Thu Jan 14 10:37:00 2021 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Thu Jan 14 10:37:00 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=a04d0b45 scripts/bootstrap-prefix.sh: bump bootstrap portage version 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 3f6064f389..95d0b27de9 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -593,8 +593,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.12" - [[ ${TESTING_PV} == latest ]] && TESTING_PV="3.0.12" + STABLE_PV="3.0.12.0.2" + [[ ${TESTING_PV} == latest ]] && TESTING_PV="3.0.12.0.2" PV="${TESTING_PV:-${STABLE_PV}}" A=prefix-portage-${PV}.tar.bz2 einfo "Bootstrapping ${A%.tar.*}"