commit: f04650fcd51a6207285cd3d4e92c92a51e702921
Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 1 19:18:28 2025 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Mon Dec 1 19:18:28 2025 +0000
URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=f04650fc
scripts/bootstrap-prefix: bump portage version
Changes in PORTAGE_USER/PORTAGE_USERNAME and GROUP/GRPNAME cause loss of
uid/gid as configured. Use Portage 3.0.72 so the new(er) variables are
present and we don't need to keep backwards support.
Signed-off-by: Fabian Groffen <grobian <AT> 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 2870ebdf97..125695a587 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -628,8 +628,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.56.1"
- [[ ${TESTING_PV} == latest ]] && TESTING_PV="3.0.56.1"
+ STABLE_PV="3.0.72"
+ [[ ${TESTING_PV} == latest ]] && TESTING_PV="3.0.72"
PV="${TESTING_PV:-${STABLE_PV}}"
A=prefix-portage-${PV}.tar.bz2
einfo "Bootstrapping ${A%.tar.*}"