Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/
Date: Sun, 29 Nov 2020 10:28:13
Message-Id: 1606645580.74d2d6f731bfec531a2effefb10aabe842238078.grobian@gentoo
1 commit: 74d2d6f731bfec531a2effefb10aabe842238078
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 29 10:26:20 2020 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 29 10:26:20 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=74d2d6f7
7
8 scripts/bootstrap-prefix: bump tree and portage snapshot
9
10 - bump tree snapshot for assorted Big Sur fixes
11 - bump portage snapshot for symbols check fix on Big Sur
12
13 Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
14
15 scripts/bootstrap-prefix.sh | 6 +++---
16 1 file changed, 3 insertions(+), 3 deletions(-)
17
18 diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
19 index 759e06e172..595a0019f3 100755
20 --- a/scripts/bootstrap-prefix.sh
21 +++ b/scripts/bootstrap-prefix.sh
22 @@ -595,7 +595,7 @@ do_tree() {
23 bootstrap_tree() {
24 # RAP uses the latest gentoo main repo snapshot to bootstrap.
25 is-rap && LATEST_TREE_YES=1
26 - local PV="20201126"
27 + local PV="20201128"
28 if [[ -n ${LATEST_TREE_YES} ]]; then
29 do_tree "${SNAPSHOT_URL}" portage-latest.tar.bz2
30 else
31 @@ -661,8 +661,8 @@ bootstrap_portage() {
32 # STABLE_PV that is known to work. Intended for power users only.
33 ## It is critical that STABLE_PV is the lastest (non-masked) version that is
34 ## included in the snapshot for bootstrap_tree.
35 - STABLE_PV="3.0.10.1"
36 - [[ ${TESTING_PV} == latest ]] && TESTING_PV="3.0.10.1"
37 + STABLE_PV="3.0.10.2"
38 + [[ ${TESTING_PV} == latest ]] && TESTING_PV="3.0.10.2"
39 PV="${TESTING_PV:-${STABLE_PV}}"
40 A=prefix-portage-${PV}.tar.bz2
41 einfo "Bootstrapping ${A%-*}"