commit: 1c2220d6c46f9542310910a26414a8cc12b9a1ee Author: Jonas Frei <freijon <AT> pm <DOT> me> AuthorDate: Tue May 27 03:25:26 2025 +0000 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org> CommitDate: Thu May 29 03:06:01 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c2220d6
app-shells/nushell: add 0.104.1 Signed-off-by: Jonas Frei <freijon <AT> pm.me> From: https://github.com/gentoo/gentoo/pull/42274 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org> app-shells/nushell/Manifest | 2 + app-shells/nushell/nushell-0.104.1.ebuild | 104 ++++++++++++++++++++++++++++++ 2 files changed, 106 insertions(+) diff --git a/app-shells/nushell/Manifest b/app-shells/nushell/Manifest index 662043a0dd02..c427e31d82c7 100644 --- a/app-shells/nushell/Manifest +++ b/app-shells/nushell/Manifest @@ -4,3 +4,5 @@ DIST nushell-0.103.0-crates.tar.xz 65126568 BLAKE2B 28005d82c254dfc4ff599acf15cf DIST nushell-0.103.0.tar.gz 3435849 BLAKE2B 5907214eb362dbb3edcda29b47cf3f34159ed5fb71af47dea0f27df5857b22662f7e73463f4648f3eb32e26376fbefd9c1a72860cb387d6e36ec200b05d7a135 SHA512 9570f2f92ea158b4604a2b19e0141d804b48d2b0a105214558e61d97c247d9cddbf7023e9539f01258c31650fcdb37aa10a593ab4671f2d4ee4a84c697fe2150 DIST nushell-0.104.0-crates.tar.xz 65932312 BLAKE2B 5aa7e4b4870454bf52033084fbafd70a9315cc043313a2f5103bfe8e524c67422aca8b2656ddd5f36c8e4ff62a573684d22ec70ef6c02dd4e175ff076c019ce7 SHA512 349937a83c6179b014f34fd29c62267b8d7e618ed9883e64bd4178ee400255a173031d72d363bc4c794c1d68a5ed35fa2e51c1715052fe547e0755167eaad4c7 DIST nushell-0.104.0.tar.gz 3477814 BLAKE2B ce7515f4650cb2e86c5bc59bcd903ef2ec95f39abb7a8f00e3a15afde9d0fb61118c7c6ae02630c8da22412216b2dd075125ad43f693f6b37dffd0f7e9aa01cb SHA512 c21ae55be6db83f98545197a4049bc7d6b50533e9b106cc4c01a03c8793a9dd0b4ea2c0bf691041bb329da871061b39137613cf71dc20f2d4e4e0dd4dd1383d7 +DIST nushell-0.104.1-crates.tar.xz 65912192 BLAKE2B b96b2e4b705f9082696ad0b8401ca0f2a90585accdc69489e3d5cf9b46af98afedcf4f1d09a37e1aa464c6edecb300f03d1e92c0bf956685e679b16acb1f6265 SHA512 ffeecdd630f53b7987992bef247f398418d3deb6f6119c0d9ee3d41f1fa5b8746b79f812a209766f9f9ff0c8a70b92b727c09c3668929cb12ac58b82e34f272e +DIST nushell-0.104.1.tar.gz 3486074 BLAKE2B 2278b8a862f0a2ece0824028fc8e00e48ee027552441f78d112fecff111ffa8875c9b48a44def5864e792e256f16ab35c700a13cd2cf1707b1dd14bcb5a36c84 SHA512 963efb959385d28839a1505111a3841c08cad7c1941c7c5a3dfc941d34cbd0d2a46d1602cd72f8b5920d86a03b2c157da9893f8ea2b25bbab81c12651a2e91c9 diff --git a/app-shells/nushell/nushell-0.104.1.ebuild b/app-shells/nushell/nushell-0.104.1.ebuild new file mode 100644 index 000000000000..5a730cec9dd2 --- /dev/null +++ b/app-shells/nushell/nushell-0.104.1.ebuild @@ -0,0 +1,104 @@ +# Copyright 2023-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +CRATES="" + +RUST_MIN_VER="1.84.1" + +inherit cargo + +DESCRIPTION="A new type of shell, written in Rust" +HOMEPAGE="https://www.nushell.sh" +SRC_URI=" + https://github.com/nushell/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz +" +DEPS_URI="https://github.com/freijon/${PN}/releases/download/${PV}/${P}-crates.tar.xz" +SRC_URI+=" ${DEPS_URI}" + +LICENSE="MIT" +# Dependent crate licenses +LICENSE+=" + 0BSD Apache-2.0 BSD Boost-1.0 CC-PD CC0-1.0 ISC MIT MPL-2.0 MPL-2.0 + Unicode-DFS-2016 ZLIB +" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv" +IUSE="plugins system-clipboard X" + +DEPEND=" + >=dev-libs/libgit2-0.99:= + dev-libs/oniguruma:= + dev-libs/openssl:0= + net-libs/libssh2:= + net-libs/nghttp2:= + net-misc/curl + dev-db/sqlite:3= + system-clipboard? ( + X? ( + x11-libs/libX11 + x11-libs/libxcb + ) + ) +" +RDEPEND="${DEPEND}" +BDEPEND=" + virtual/pkgconfig +" + +RESTRICT+=" test" + +QA_FLAGS_IGNORED="usr/bin/nu.*" + +src_prepare() { + use plugins || eapply "${FILESDIR/${PN}-dont-build-plugins.patch}" + default +} + +src_configure() { + # high magic to allow system-libs + export OPENSSL_NO_VENDOR=true + export RUSTONIG_SYSTEM_LIBONIG=1 + export LIBGIT2_SYS_USE_PKG_CONFIG=1 + export LIBSSH2_SYS_USE_PKG_CONFIG=1 + export PKG_CONFIG_ALLOW_CROSS=1 + + local myfeatures=( + $(usev system-clipboard) + ) + + cargo_src_configure +} + +src_compile() { + cargo_src_compile --workspace +} + +src_install() { + cargo_src_install + if use plugins ; then + # 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 + cargo_src_install --path crates/nu_plugin_gstat + cargo_src_install --path crates/nu_plugin_inc + cargo_src_install --path crates/nu_plugin_polars + cargo_src_install --path crates/nu_plugin_query + cargo_src_install --path crates/nu_plugin_stress_internals + fi + local DOCS=( README.md ) + einstalldocs +} + +pkg_postinst() { + if use plugins ; then + einfo "The plugins are installed alongside the main 'nu' binary." + einfo "Visit https://www.nushell.sh/book/plugins.html#adding-a-plugin" + einfo "for more information on how to use plugins." + fi +}
