]> git.ipfire.org Git - thirdparty/openwrt.git/commitdiff
readline: update to 8.3 19327/head
authorRosen Penev <rosenp@gmail.com>
Sun, 6 Jul 2025 03:30:19 +0000 (20:30 -0700)
committerRobert Marko <robimarko@gmail.com>
Mon, 7 Jul 2025 13:43:07 +0000 (15:43 +0200)
Needed to fix GCC 15 compilation with dependent packages.

Removed upstreamed patch.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/19327
Signed-off-by: Robert Marko <robimarko@gmail.com>
package/libs/readline/Makefile
package/libs/readline/patches/010-ncursesw-first.patch [deleted file]

index 03e56f36ed4d154add24f88794a19243785652af..70e96699ee38b674d5920cf83366ab8730c64f22 100644 (file)
@@ -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 (file)
index d66cc04..0000000
+++ /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