From: Rosen Penev Date: Sun, 6 Jul 2025 03:30:19 +0000 (-0700) Subject: readline: update to 8.3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7c8d73e374de40d3daf287d8520221518ecc96aa;p=thirdparty%2Fopenwrt.git readline: update to 8.3 Needed to fix GCC 15 compilation with dependent packages. Removed upstreamed patch. Signed-off-by: Rosen Penev Link: https://github.com/openwrt/openwrt/pull/19327 Signed-off-by: Robert Marko --- diff --git a/package/libs/readline/Makefile b/package/libs/readline/Makefile index 03e56f36ed4..70e96699ee3 100644 --- a/package/libs/readline/Makefile +++ b/package/libs/readline/Makefile @@ -8,12 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=readline -PKG_VERSION:=8.2 -PKG_RELEASE:=2 +PKG_VERSION:=8.3 +PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=@GNU/readline -PKG_HASH:=3feb7171f16a84ee82ca18a36d7b9be109a52c04f492a053331d7d1095007c35 +PKG_HASH:=fe5383204467828cd495ee8d1d3c037a7eba1389c22bc6a041f627976f9061cc PKG_LICENSE:=GPL-3.0-or-later PKG_LICENSE_FILES:=COPYING diff --git a/package/libs/readline/patches/010-ncursesw-first.patch b/package/libs/readline/patches/010-ncursesw-first.patch deleted file mode 100644 index d66cc046229..00000000000 --- a/package/libs/readline/patches/010-ncursesw-first.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- a/configure -+++ b/configure -@@ -7305,6 +7305,9 @@ TERMCAP_DEP= - elif test $bash_cv_termcap_lib = libncurses; then - TERMCAP_LIB=-lncurses - TERMCAP_DEP= -+elif test $bash_cv_termcap_lib = libncursesw; then -+TERMCAP_LIB=-lncursesw -+TERMCAP_DEP= - elif test $bash_cv_termcap_lib = libc; then - TERMCAP_LIB= - TERMCAP_DEP= -@@ -7340,6 +7343,7 @@ case "$TERMCAP_LIB" in - -ltinfo) TERMCAP_PKG_CONFIG_LIB=tinfo ;; - -lcurses) TERMCAP_PKG_CONFIG_LIB=ncurses ;; - -lncurses) TERMCAP_PKG_CONFIG_LIB=ncurses ;; -+-lncursesw) TERMCAP_PKG_CONFIG_LIB=ncursesw ;; - -ltermcap) TERMCAP_PKG_CONFIG_LIB=termcap ;; - *) TERMCAP_PKG_CONFIG_LIB=termcap ;; - esac