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 EFC7315814C for ; Wed, 11 Oct 2023 00:19:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AEFD52BC020; Wed, 11 Oct 2023 00:19:43 +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 8FFE32BC017 for ; Wed, 11 Oct 2023 00:19:43 +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 91690335C5D for ; Wed, 11 Oct 2023 00:19:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E1D24EC5 for ; Wed, 11 Oct 2023 00:19:40 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1696983576.cf9b68b0d67394d255792e4d302c9a96715361ff.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/pwsh-bin/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-shells/pwsh-bin/pwsh-bin-7.3.6-r1.ebuild app-shells/pwsh-bin/pwsh-bin-7.3.6.ebuild app-shells/pwsh-bin/pwsh-bin-7.3.7-r1.ebuild app-shells/pwsh-bin/pwsh-bin-7.3.7.ebuild X-VCS-Directories: app-shells/pwsh-bin/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: cf9b68b0d67394d255792e4d302c9a96715361ff X-VCS-Branch: master Date: Wed, 11 Oct 2023 00:19:40 +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: bd5e3b80-3a59-4113-99b2-4f5289789671 X-Archives-Hash: bfcdeb050369139301ba05aa50f18da2 commit: cf9b68b0d67394d255792e4d302c9a96715361ff Author: Maciej Barć gentoo org> AuthorDate: Tue Oct 10 23:04:14 2023 +0000 Commit: Maciej Barć gentoo org> CommitDate: Wed Oct 11 00:19:36 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf9b68b0 app-shells/pwsh-bin: fix Gentoo-managed PSModulePath Signed-off-by: Maciej Barć gentoo.org> app-shells/pwsh-bin/{pwsh-bin-7.3.6.ebuild => pwsh-bin-7.3.6-r1.ebuild} | 2 +- app-shells/pwsh-bin/{pwsh-bin-7.3.7.ebuild => pwsh-bin-7.3.7-r1.ebuild} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app-shells/pwsh-bin/pwsh-bin-7.3.6.ebuild b/app-shells/pwsh-bin/pwsh-bin-7.3.6-r1.ebuild similarity index 93% rename from app-shells/pwsh-bin/pwsh-bin-7.3.6.ebuild rename to app-shells/pwsh-bin/pwsh-bin-7.3.6-r1.ebuild index 8b0cee74b025..748d3db6ec06 100644 --- a/app-shells/pwsh-bin/pwsh-bin-7.3.6.ebuild +++ b/app-shells/pwsh-bin/pwsh-bin-7.3.6-r1.ebuild @@ -56,7 +56,7 @@ src_install() { fperms 0755 "${dest_root}/pwsh" - local gentoo_path='PSModulePath="${PSModulePath}:/usr/share/GentooPowerShell/Modules:"' + local gentoo_path='PSModulePath="${PSModulePath}:${EPREFIX}/usr/share/GentooPowerShell/Modules:"' make_wrapper "${PN}-${SLOT}" "env ${gentoo_path} ${dest_root}/pwsh" } diff --git a/app-shells/pwsh-bin/pwsh-bin-7.3.7.ebuild b/app-shells/pwsh-bin/pwsh-bin-7.3.7-r1.ebuild similarity index 93% rename from app-shells/pwsh-bin/pwsh-bin-7.3.7.ebuild rename to app-shells/pwsh-bin/pwsh-bin-7.3.7-r1.ebuild index 94b1b6ce19ec..d5dc3e03bc4a 100644 --- a/app-shells/pwsh-bin/pwsh-bin-7.3.7.ebuild +++ b/app-shells/pwsh-bin/pwsh-bin-7.3.7-r1.ebuild @@ -56,7 +56,7 @@ src_install() { fperms 0755 "${dest_root}/pwsh" - local gentoo_path='PSModulePath="${PSModulePath}:/usr/share/GentooPowerShell/Modules:"' + local gentoo_path='PSModulePath="${PSModulePath}:${EPREFIX}/usr/share/GentooPowerShell/Modules:"' make_wrapper "${PN}-${SLOT}" "env ${gentoo_path} ${dest_root}/pwsh" }