bump(main/fish): 4.1.2

- Fixes https://github.com/termux/termux-packages/issues/26890
This commit is contained in:
termux-pacman-bot
2025-10-15 21:35:15 +00:00
parent 8a80fabd9e
commit 90e9386fc9
2 changed files with 10 additions and 9 deletions

View File

@@ -1,13 +1,14 @@
the command 'fish -c "uname"', and most other uses of fish's -c argument,
are not working if this is enabled.
--- a/build.rs
+++ b/build.rs
@@ -96,7 +96,9 @@ fn detect_cfgs(target: &mut Target) {
Ok(target.has_symbol("localeconv_l"))
@@ -90,7 +90,7 @@ fn detect_cfgs(target: &mut Target) {
target.has_symbol("localeconv_l")
}),
("FISH_USE_POSIX_SPAWN", &|target| {
- Ok(target.has_header("spawn.h"))
+ // the command 'fish -c "uname"', and most other uses of fish's -c argument,
+ // are not working if this is enabled.
+ Ok(false)
- target.has_header("spawn.h")
+ false
}),
("HAVE_PIPE2", &|target| {
Ok(target.has_symbol("pipe2"))
target.has_symbol("pipe2")

View File

@@ -2,9 +2,9 @@ TERMUX_PKG_HOMEPAGE=https://fishshell.com/
TERMUX_PKG_DESCRIPTION="The user-friendly command line shell"
TERMUX_PKG_LICENSE="GPL-2.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="4.1.0"
TERMUX_PKG_VERSION="4.1.2"
TERMUX_PKG_SRCURL=https://github.com/fish-shell/fish-shell/releases/download/$TERMUX_PKG_VERSION/fish-${TERMUX_PKG_VERSION}.tar.xz
TERMUX_PKG_SHA256=07a76c67e161b9edc772e6f1d66ebead85d7056e86631d61577f9f9a529c4d9c
TERMUX_PKG_SHA256=52873934fc1ee21a1496e9f4521409013e540f77cbf29142a1b17ab93ffaafac
TERMUX_PKG_AUTO_UPDATE=true
# fish calls 'tput' from ncurses-utils, at least when cancelling (Ctrl+C) a command line.
# man is needed since fish calls apropos during command completion.