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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9995A15A7D9 for ; Sun, 19 Mar 2023 01:03:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B2D89E0894; Sun, 19 Mar 2023 01:03:52 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 99D7CE0894 for ; Sun, 19 Mar 2023 01:03:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CA4553412EE for ; Sun, 19 Mar 2023 01:03:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 644F28D7 for ; Sun, 19 Mar 2023 01:03:50 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1679187827.a2d6d90f481821f7d5a10aadd40b86810f845f1e.sam@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: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a2d6d90f481821f7d5a10aadd40b86810f845f1e X-VCS-Branch: master Date: Sun, 19 Mar 2023 01:03:50 +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: 606dfade-e428-4a11-b754-3159817c4893 X-Archives-Hash: 265d8ef67803dc9d2e7603df75122557 commit: a2d6d90f481821f7d5a10aadd40b86810f845f1e Author: Tom Gillespie gmail com> AuthorDate: Sat Mar 18 00:42:37 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sun Mar 19 01:03:47 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=a2d6d90f 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 gmail.com> Closes: https://github.com/gentoo/prefix/pull/25 Signed-off-by: Sam James 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 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 -