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 7C0F915815E for ; Thu, 8 Feb 2024 17:37:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C10B1E2A89; Thu, 8 Feb 2024 17:37:19 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 A9F23E2A89 for ; Thu, 8 Feb 2024 17:37:19 +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 D8338343096 for ; Thu, 8 Feb 2024 17:37:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4939C7E7 for ; Thu, 8 Feb 2024 17:37:17 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1707413776.2334eb2d0b76ee113e0bf438c6e719a90c95b235.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/baselayout/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/baselayout/baselayout-2.14-r1.ebuild sys-apps/baselayout/baselayout-2.14-r2.ebuild sys-apps/baselayout/baselayout-9999.ebuild X-VCS-Directories: sys-apps/baselayout/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 2334eb2d0b76ee113e0bf438c6e719a90c95b235 X-VCS-Branch: master Date: Thu, 8 Feb 2024 17:37:17 +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: af3dc49e-af46-4305-8d2c-3267c915bc66 X-Archives-Hash: cf8006317f5c8cadb043c9855be9503c commit: 2334eb2d0b76ee113e0bf438c6e719a90c95b235 Author: Yiyang Wu gmail com> AuthorDate: Thu Feb 8 07:39:02 2024 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Thu Feb 8 17:36:16 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2334eb2d sys-apps/baselayout: ROOTPATH should have host paths on Prefix Same as PATH, ROOTPATH should be modified to contain host paths. This fixes app-shells/zsh not having host paths when EUID=1000 or root user, because it sets ROOTPATH as PATH in /etc/zsh/zprofile, which make zsh's behavior align with bash. Closes: https://bugs.gentoo.org/924032 Signed-off-by: Yiyang Wu gmail.com> Closes: https://github.com/gentoo/gentoo/pull/35225 Signed-off-by: Mike Gilbert gentoo.org> .../{baselayout-2.14-r1.ebuild => baselayout-2.14-r2.ebuild} | 3 ++- sys-apps/baselayout/baselayout-9999.ebuild | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/sys-apps/baselayout/baselayout-2.14-r1.ebuild b/sys-apps/baselayout/baselayout-2.14-r2.ebuild similarity index 99% rename from sys-apps/baselayout/baselayout-2.14-r1.ebuild rename to sys-apps/baselayout/baselayout-2.14-r2.ebuild index d95e2efe9ff4..72bb2496fd2d 100644 --- a/sys-apps/baselayout/baselayout-2.14-r1.ebuild +++ b/sys-apps/baselayout/baselayout-2.14-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -209,6 +209,7 @@ src_prepare() { hprefixify -w '/PATH=/' etc/env.d/50baselayout hprefixify -w 1 etc/env.d/50baselayout echo PATH=/usr/sbin:/sbin:/usr/bin:/bin >> etc/env.d/99host + echo ROOTPATH=/usr/sbin:/sbin:/usr/bin:/bin >> etc/env.d/99host echo MANPATH=/usr/share/man >> etc/env.d/99host # change branding diff --git a/sys-apps/baselayout/baselayout-9999.ebuild b/sys-apps/baselayout/baselayout-9999.ebuild index b1f52aa3baa7..76beeff5aac8 100644 --- a/sys-apps/baselayout/baselayout-9999.ebuild +++ b/sys-apps/baselayout/baselayout-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -209,6 +209,7 @@ src_prepare() { hprefixify -w '/PATH=/' etc/env.d/50baselayout hprefixify -w 1 etc/env.d/50baselayout echo PATH=/usr/sbin:/sbin:/usr/bin:/bin >> etc/env.d/99host + echo ROOTPATH=/usr/sbin:/sbin:/usr/bin:/bin >> etc/env.d/99host echo MANPATH=/usr/share/man >> etc/env.d/99host # change branding