From a2d6d90f481821f7d5a10aadd40b86810f845f1e Mon Sep 17 00:00:00 2001 From: Tom Gillespie Date: Fri, 17 Mar 2023 17:42:37 -0700 Subject: scripts/bootstrap-prefix.sh: bump cygwin python version 3.9.9 is no longer in the cygwin tree so replace it with 3.9.10 Closes: https://bugs.gentoo.org/902091 Signed-off-by: Tom Gillespie Closes: https://github.com/gentoo/prefix/pull/25 Signed-off-by: Sam James --- 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 f1aa870462..9f048edb00 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -1007,7 +1007,7 @@ python_ver() { bootstrap_python() { if [[ ${CHOST} == *-cygwin* ]] ; then - PV=3.9.9 + PV=3.9.10 else PV=3.10.4 fi @@ -1040,7 +1040,7 @@ bootstrap_python() { # that cygwin has packaged if we don't do exact matches on the # version then some patches may not apply cleanly - cygpyver="3.9.9-1" + cygpyver="3.9.10-1" efetch "https://mirrors.kernel.org/sourceware/cygwin/x86_64/release/python39/python39-${cygpyver}-src.tar.xz" \ || return 1 xz -dc "${DISTDIR}"/"python39-${cygpyver}-src.tar.xz" | tar -xf - -- cgit v1.2.3-65-gdbad