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 E1A1F158094 for ; Fri, 1 Jul 2022 06:30:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1B29DE0DE2; Fri, 1 Jul 2022 06:30:31 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DD265E0DE2 for ; Fri, 1 Jul 2022 06:30:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ABF54340B57 for ; Fri, 1 Jul 2022 06:30:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0138D3C7 for ; Fri, 1 Jul 2022 06:30:28 +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: <1656657008.23e04465be51d3e2156981bf9851a4bd3163e96c.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: 23e04465be51d3e2156981bf9851a4bd3163e96c X-VCS-Branch: master Date: Fri, 1 Jul 2022 06:30:28 +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: 83937fb2-8c44-4359-a87b-2380b8b1da6c X-Archives-Hash: d83a36e47238b396d37af6944585b6fd commit: 23e04465be51d3e2156981bf9851a4bd3163e96c Author: Fabian Groffen gentoo org> AuthorDate: Fri Jul 1 06:30:08 2022 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Fri Jul 1 06:30:08 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=23e04465 scripts/bootstrap-prefix: cleanup bootstrap_python somewhat Signed-off-by: Fabian Groffen gentoo.org> scripts/bootstrap-prefix.sh | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index 127d91aca7..2a28478970 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -1039,10 +1039,7 @@ bootstrap_python() { A=Python-${PV}.tar.xz einfo "Bootstrapping ${A%.tar.*}" - # Don't really want to put this on the mirror, since they are - # non-vanilla sources, bit specific for us. Ideally use HTTPS / upstream - # but fall back to dev.gentoo.org w/ HTTP (host wget may not suport HTTPS). - efetch https://www.python.org/ftp/python/${PV}/${A} || efetch ${DISTFILES_URL}/${A} || return 1 + efetch https://www.python.org/ftp/python/${PV}/${A} einfo "Unpacking ${A%.tar.*}" export S="${PORTAGE_TMPDIR}/python-${PV}" @@ -1195,7 +1192,7 @@ bootstrap_python() { einfo "Compiling ${A%.tar.*}" # - Some ancient versions of hg fail with "hg id -i", so help - # configure to not find them using HAS_HG + # configure to not find them using HAS_HG (TODO: obsolete?) # - Do not find libffi via pkg-config using PKG_CONFIG HAS_HG=no \ PKG_CONFIG= \