summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRosen Penev2025-07-06 03:30:19 +0000
committerRobert Marko2025-07-07 13:43:07 +0000
commit7c8d73e374de40d3daf287d8520221518ecc96aa (patch)
tree461cf6d4855650aabeba56a77eff82a76f0ecf3f
parent77b9393d2f3609956a54a6e7d38bda8ddba6046a (diff)
downloadopenwrt-7c8d73e374de40d3daf287d8520221518ecc96aa.tar.gz
readline: update to 8.3
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>
-rw-r--r--package/libs/readline/Makefile6
-rw-r--r--package/libs/readline/patches/010-ncursesw-first.patch20
2 files changed, 3 insertions, 23 deletions
diff --git a/package/libs/readline/Makefile b/package/libs/readline/Makefile
index 03e56f36ed..70e96699ee 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 d66cc04622..0000000000
--- 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