app-shells/nushell: drop 0.111.0

Signed-off-by: Jonas Frei <freijon@pm.me>
Part-of: https://github.com/gentoo/gentoo/pull/46525
Closes: https://github.com/gentoo/gentoo/pull/46525
Signed-off-by: Zac Medico <zmedico@gentoo.org>
This commit is contained in:
Jonas Frei
2026-07-07 21:00:23 +02:00
committed by Zac Medico
parent fbfa7472e9
commit ad0e1453d0
2 changed files with 0 additions and 98 deletions

View File

@@ -1,7 +1,5 @@
DIST nushell-0.110.0-crates.tar.xz 74774668 BLAKE2B c18b384fd9b5f8a88f8ac3d376ca50158a022c65597790fc8b51160191ef41a8148213e3d4f96b8d4a1d79f941671bf95da8bc1eb3c8d883aa1c04406df2b7b9 SHA512 32a8bc1e882913c9e0bcf98ccd740b9f109d30fb45c65138d305c6f2179e6e2f2c13c69baffebabab493f172b7b3180d2bc5f04a587fdb75152550c1d96cc7db
DIST nushell-0.110.0.tar.gz 3754147 BLAKE2B 9f37f4947de870421bd85b87b52cd3cc066b88f06897c6b13b759bffe57e7e9137580b9227b2b261423b77c51b5779e91857138de30d98fb492fd38a16100b6c SHA512 c030acb3cfa5aad35e1b516028de16b9b99e0b18be6fa4c1e75ab59f98fa8e7dfa2e448f8e6f7d08b1412f3fedae615d2d42179d4d83e4c5a06aae3dc51fd467
DIST nushell-0.111.0-crates.tar.xz 82711756 BLAKE2B 88fa3ec429cc2482468e9a09f1151af1a993d409542e5382f7d6c2df08192b4044960546d77b25c90bd2d536864ed1842c6bcf65c6a6e102e2a3414d8ab50022 SHA512 42a4704a9d671a18d229ef23ad146c5483e7f51ac76d084870a49391c4657ac872b1e1d7ae24322646e5625421b6514b25c353c73495362196c17e8a4011f2d9
DIST nushell-0.111.0.tar.gz 3849051 BLAKE2B 0861e107664d41df3ba3f2411518ea12a8858c577611555629ad0310a1e8e739a927025e1ea6f13880e82b2f78caba63535d62366039dd63cc6eca9ca14d7872 SHA512 13734dfd89136c43e6612e05598c7ca042c422598c43d7e6b68171a1a56d7ab7624168fb40eb6f5704970c798d21020e490a5ecbfdbca8b7697d508452332f9e
DIST nushell-0.112.1-crates.tar.xz 77893136 BLAKE2B 6e74e7b42c74f1d6fc1345e12460353d56f16314fc422b5bdb7075ea34e8e9b15c4fb0b7cd279279e9b388ded23388ff13f0028a2f609221e8fc0c093a117d8e SHA512 4fe70c220c6ff1b22f5d0478444b8dd134f42003f8ebfb257a7e5d451da4574e8cc078cb60a42cf039033cded34dabe68cb9eb0ec260da7d8d956c00cb7bdf22
DIST nushell-0.112.1.tar.gz 3942402 BLAKE2B b4b00f0210c300273a872e045cc5874fc161096f5ef3a8053a70a11e6594b5a59a620500fcc024f98d37fa23c550cf33d5af81cafec55dc40f333f82ac10a60f SHA512 913b3d0068f7939aeee7dba28980581626e10373825721a63270782ac446b92715179504016265652db3b71cfea1a8282a84d2ba85328b6b700cced436af4b7a
DIST nushell-0.113.0-crates.tar.xz 78541236 BLAKE2B 70a5396c96cf53757ff307a601439cdb68b06d16ce8f61f1b36af8ace5cddd08a2330062ac840837e7d6927b0639d648e3d3d8c5436b5bed8813597830d2630b SHA512 e58721092f1b24c18d77e67c6e39ad4154e11cdbbbccb6b81f1382938d20b40e0e8543e788a49f754b9caa8efc609b64f58c073a2172f27b6c262f8562a55b5f

View File

@@ -1,96 +0,0 @@
# Copyright 2023-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
RUST_MIN_VER="1.91.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"
SRC_URI+=" https://github.com/gentoo-crate-dist/nushell/releases/download/${PV}/${P}-crates.tar.xz"
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="mcp plugins system-clipboard X"
DEPEND="
dev-libs/openssl:0=
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-from-106.patch"
default
}
src_configure() {
# high magic to allow system-libs
export LIBSQLITE3_SYS_USE_PKG_CONFIG=1
export OPENSSL_NO_VENDOR=true
export PKG_CONFIG_ALLOW_CROSS=1
local myfeatures=(
$(usev mcp)
native-tls
network
plugin
sqlite
$(usev system-clipboard)
trash-support
)
cargo_src_configure --no-default-features
}
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
}