commit: 4d0c954ff831e48f0bce2f391b5ed4a675791d1e Author: yank.nvim <yanknvim <AT> gmail <DOT> com> AuthorDate: Tue Aug 26 02:31:38 2025 +0000 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org> CommitDate: Wed Aug 27 18:42:20 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d0c954f
app-shells/nushell: fix invalid format of FILESDIR in src_prepare Signed-off-by: yank.nvim <yanknvim <AT> gmail.com> Closes: https://github.com/gentoo/gentoo/pull/43563 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org> app-shells/nushell/nushell-0.103.0.ebuild | 4 ++-- app-shells/nushell/nushell-0.104.1.ebuild | 2 +- app-shells/nushell/nushell-0.105.1-r1.ebuild | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app-shells/nushell/nushell-0.103.0.ebuild b/app-shells/nushell/nushell-0.103.0.ebuild index 08916b1cde54..4c8527d10785 100644 --- a/app-shells/nushell/nushell-0.103.0.ebuild +++ b/app-shells/nushell/nushell-0.103.0.ebuild @@ -52,7 +52,7 @@ RESTRICT+=" test" QA_FLAGS_IGNORED="usr/bin/nu.*" src_prepare() { - use plugins || eapply "${FILESDIR/${PN}-dont-build-plugins.patch}" + use plugins || eapply "${FILESDIR}/${PN}-dont-build-plugins.patch" default } @@ -81,7 +81,7 @@ src_install() { # Clear features to compile plugins local myfeatures=() cargo_src_configure - + cargo_src_install --path crates/nu_plugin_custom_values cargo_src_install --path crates/nu_plugin_example cargo_src_install --path crates/nu_plugin_formats diff --git a/app-shells/nushell/nushell-0.104.1.ebuild b/app-shells/nushell/nushell-0.104.1.ebuild index 5a730cec9dd2..17d60590029f 100644 --- a/app-shells/nushell/nushell-0.104.1.ebuild +++ b/app-shells/nushell/nushell-0.104.1.ebuild @@ -52,7 +52,7 @@ RESTRICT+=" test" QA_FLAGS_IGNORED="usr/bin/nu.*" src_prepare() { - use plugins || eapply "${FILESDIR/${PN}-dont-build-plugins.patch}" + use plugins || eapply "${FILESDIR}/${PN}-dont-build-plugins.patch" default } diff --git a/app-shells/nushell/nushell-0.105.1-r1.ebuild b/app-shells/nushell/nushell-0.105.1-r1.ebuild index c64239ceb29b..9d00bd17ce00 100644 --- a/app-shells/nushell/nushell-0.105.1-r1.ebuild +++ b/app-shells/nushell/nushell-0.105.1-r1.ebuild @@ -42,7 +42,7 @@ RESTRICT+=" test" QA_FLAGS_IGNORED="usr/bin/nu.*" src_prepare() { - use plugins || eapply "${FILESDIR/${PN}-dont-build-plugins.patch}" + use plugins || eapply "${FILESDIR}/${PN}-dont-build-plugins.patch" default }
