fish: Update to 3.2.1
This commit is contained in:
parent
f775bdb9c1
commit
ebf4e36990
@ -2,9 +2,9 @@ TERMUX_PKG_HOMEPAGE=https://fishshell.com/
|
|||||||
TERMUX_PKG_DESCRIPTION="Shell geared towards interactive use"
|
TERMUX_PKG_DESCRIPTION="Shell geared towards interactive use"
|
||||||
TERMUX_PKG_LICENSE="GPL-2.0"
|
TERMUX_PKG_LICENSE="GPL-2.0"
|
||||||
TERMUX_PKG_MAINTAINER="@termux"
|
TERMUX_PKG_MAINTAINER="@termux"
|
||||||
TERMUX_PKG_VERSION=3.2.0
|
TERMUX_PKG_VERSION=3.2.1
|
||||||
TERMUX_PKG_SRCURL=https://github.com/fish-shell/fish-shell/releases/download/$TERMUX_PKG_VERSION/fish-${TERMUX_PKG_VERSION}.tar.xz
|
TERMUX_PKG_SRCURL=https://github.com/fish-shell/fish-shell/releases/download/$TERMUX_PKG_VERSION/fish-${TERMUX_PKG_VERSION}.tar.xz
|
||||||
TERMUX_PKG_SHA256=4f0293ed9f6a6b77e47d41efabe62f3319e86efc8bf83cc58733044fbc6f9211
|
TERMUX_PKG_SHA256=d8e49f4090d3778df17dd825e4a2a80192015682423cd9dd02b6675d65c3af5b
|
||||||
# fish calls 'tput' from ncurses-utils, at least when cancelling (Ctrl+C) a command line.
|
# 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.
|
# man is needed since fish calls apropos during command completion.
|
||||||
TERMUX_PKG_DEPENDS="libc++, ncurses, libandroid-support, ncurses-utils, man, bc, pcre2, libandroid-spawn"
|
TERMUX_PKG_DEPENDS="libc++, ncurses, libandroid-support, ncurses-utils, man, bc, pcre2, libandroid-spawn"
|
||||||
|
@ -1,25 +0,0 @@
|
|||||||
From d948b34420736c06d020ce0a910018e6f09a52a5 Mon Sep 17 00:00:00 2001
|
|
||||||
From: =?UTF-8?q?=C3=89rico=20Rolim?= <erico.erc@gmail.com>
|
|
||||||
Date: Mon, 1 Mar 2021 15:34:31 -0300
|
|
||||||
Subject: [PATCH] Include <termios.h> instead of <sys/termios.h>.
|
|
||||||
|
|
||||||
Slipped by with ffa24eb3610dc2853c1a468b8aa2fd327cd0d3fa. Given
|
|
||||||
daf5ef1bbd4b8ceb005294c512004010010897b8, fish should be using
|
|
||||||
<termios.h> in all cases.
|
|
||||||
---
|
|
||||||
src/termsize.cpp | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/src/termsize.cpp b/src/termsize.cpp
|
|
||||||
index f1547632d2..8a1b231d93 100644
|
|
||||||
--- a/src/termsize.cpp
|
|
||||||
+++ b/src/termsize.cpp
|
|
||||||
@@ -8,7 +8,7 @@
|
|
||||||
#include "wutil.h"
|
|
||||||
|
|
||||||
#ifdef HAVE_WINSIZE
|
|
||||||
-#include <sys/termios.h>
|
|
||||||
+#include <termios.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// A counter which is incremented every SIGWINCH, or when the tty is otherwise invalidated.
|
|
Loading…
Reference in New Issue
Block a user