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 D32F815802F for ; Mon, 6 Mar 2023 04:53:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DAD28E07B2; Mon, 6 Mar 2023 04:53:02 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B5967E07B2 for ; Mon, 6 Mar 2023 04:53:02 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CE0FC3412B8 for ; Mon, 6 Mar 2023 04:53:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 227747F9 for ; Mon, 6 Mar 2023 04:53:00 +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: <1678078368.5185768c98c742d1ac6126a8d36f2ccb6a262a4d.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: 5185768c98c742d1ac6126a8d36f2ccb6a262a4d X-VCS-Branch: master Date: Mon, 6 Mar 2023 04:53:00 +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: 14ee34d0-a1fb-4c39-8866-47cf9fa7dfc6 X-Archives-Hash: 83b554106c06c5507e8415d0c17b5358 commit: 5185768c98c742d1ac6126a8d36f2ccb6a262a4d Author: Sam James gentoo org> AuthorDate: Sat Mar 4 02:25:42 2023 +0000 Commit: Sam James gentoo org> CommitDate: Mon Mar 6 04:52:48 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=5185768c scripts/bootstrap-prefix.sh: drop obsolete FEATURES="force-prefix" This was dropped in >=sys-apps/portage-3.0.45 upstream. Closes: https://github.com/gentoo/prefix/pull/23 Signed-off-by: Sam James gentoo.org> scripts/bootstrap-prefix.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index f35de28ff8..f1aa870462 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -2002,8 +2002,7 @@ bootstrap_stage3() { emerge_pkgs() { # stage3 tools should be used first. - # PORTAGE_TMPDIR, EMERGE_LOG_DIR, FEATURES=force-prefix are - # needed with host portage. + # PORTAGE_TMPDIR, EMERGE_LOG_DIR are needed with host portage. # # After the introduction of EAPI-7, eclasses now # strictly distinguish between build dependencies that @@ -2013,7 +2012,6 @@ bootstrap_stage3() { # PORTAGE_OVERRIDE_EPREFIX as BROOT is needed. PREROOTPATH="${ROOT}"$(echo /{,tmp/}{usr/,}{,lib/llvm/{12,11,10}/}{s,}bin | sed "s, ,:${ROOT},g") \ EPREFIX="${ROOT}" PORTAGE_TMPDIR="${PORTAGE_TMPDIR}" \ - FEATURES="${FEATURES} force-prefix" \ EMERGE_LOG_DIR="${ROOT}"/var/log \ STAGE=stage3 \ do_emerge_pkgs "$@"