mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-12 18:59:50 +03:00
main/readline: upgrade to 8.3.1
This commit is contained in:
parent
6a99bc632c
commit
1d76ecdcac
3 changed files with 5 additions and 41 deletions
|
@ -1,8 +1,8 @@
|
||||||
# Maintainer: Celeste <cielesti@protonmail.com>
|
# Maintainer: Celeste <cielesti@protonmail.com>
|
||||||
maintainer="Celeste <cielesti@protonmail.com>"
|
maintainer="Celeste <cielesti@protonmail.com>"
|
||||||
pkgname=readline
|
pkgname=readline
|
||||||
pkgver=8.3.0
|
pkgver=8.3.1
|
||||||
pkgrel=2
|
pkgrel=0
|
||||||
_myver=${pkgver%.*}
|
_myver=${pkgver%.*}
|
||||||
pkgdesc="GNU readline library"
|
pkgdesc="GNU readline library"
|
||||||
url="https://tiswww.cwru.edu/php/chet/readline/rltop.html"
|
url="https://tiswww.cwru.edu/php/chet/readline/rltop.html"
|
||||||
|
@ -20,7 +20,6 @@ subpackages="
|
||||||
"
|
"
|
||||||
source="https://ftp.gnu.org/gnu/readline/readline-$_myver.tar.gz
|
source="https://ftp.gnu.org/gnu/readline/readline-$_myver.tar.gz
|
||||||
display-null-prompt.patch
|
display-null-prompt.patch
|
||||||
event-hook.patch
|
|
||||||
fix-ncurses-underlinking.patch
|
fix-ncurses-underlinking.patch
|
||||||
inputrc
|
inputrc
|
||||||
"
|
"
|
||||||
|
@ -70,7 +69,7 @@ libhistory() {
|
||||||
sha512sums="
|
sha512sums="
|
||||||
513002753dcf5db9213dbbb61d51217245f6a40d33b1dd45238e8062dfa8eef0c890b87a5548e11db959e842724fb572c4d3d7fb433773762a63c30efe808344 readline-8.3.tar.gz
|
513002753dcf5db9213dbbb61d51217245f6a40d33b1dd45238e8062dfa8eef0c890b87a5548e11db959e842724fb572c4d3d7fb433773762a63c30efe808344 readline-8.3.tar.gz
|
||||||
256ea47fc513455a7d3f6e5ea5bdbb3f029385b7ae5b74cb79939d476d6e8eeb59d9a35e9094d138724be658d58b0a1e541cab03029c65a19ccab7434a584e92 display-null-prompt.patch
|
256ea47fc513455a7d3f6e5ea5bdbb3f029385b7ae5b74cb79939d476d6e8eeb59d9a35e9094d138724be658d58b0a1e541cab03029c65a19ccab7434a584e92 display-null-prompt.patch
|
||||||
c6d963cd251267554bda53a3631c97b4c09ce1411804bd34087185c1852f43a5c5b4820e0f5adaa7d228a1f051953112752712eebb37b5c194adf1b6f5ba22a0 event-hook.patch
|
3fa096385feee5f6c01866ef220a92ba646dcebf59c6bba701bc5a3d234df899c37c8f7954b900aa2738c70697b7444da2c9b76dc64ba33c68dec02ac2244371 fix-ncurses-underlinking.patch
|
||||||
b8e2f9a5c9294b49d35c2e1bbde523f01390dd3c8729f3a78e79799a236515ec723af795ba91b0a662a30e8c31df0f63bc80771e82cd31b4673f41428a5049ae fix-ncurses-underlinking.patch
|
|
||||||
5dbe872e94166aaed7ca2edec5a34ef9b13b254381e252cc6d851877b461579903cbb5b5dc588eabececcf1ebe636f6cb4da406cd01b64757f8c7e7f62e9a276 inputrc
|
5dbe872e94166aaed7ca2edec5a34ef9b13b254381e252cc6d851877b461579903cbb5b5dc588eabececcf1ebe636f6cb4da406cd01b64757f8c7e7f62e9a276 inputrc
|
||||||
|
ced50af353ed527f6ec0eac5f65261f2ed208825ec72fe2acf5f0217f34f84f33dcbf01b895325f6b33664b5a426bac99506193e2ddb6eea8c79ccad37364b89 readline83-001.patch
|
||||||
"
|
"
|
||||||
|
|
|
@ -1,35 +0,0 @@
|
||||||
Patch-Source: https://lists.gnu.org/archive/html/bug-readline/2025-07/msg00012.html
|
|
||||||
|
|
||||||
*** ../readline-8.3/input.c Fri May 2 09:29:05 2025
|
|
||||||
--- input.c Tue Jul 8 15:37:13 2025
|
|
||||||
***************
|
|
||||||
*** 262,266 ****
|
|
||||||
tty = fileno (rl_instream);
|
|
||||||
|
|
||||||
! /* Move this up here to give it first shot, but it can't set chars_avail */
|
|
||||||
/* XXX - need rl_chars_available_hook? */
|
|
||||||
if (rl_input_available_hook)
|
|
||||||
--- 262,267 ----
|
|
||||||
tty = fileno (rl_instream);
|
|
||||||
|
|
||||||
! /* Move this up here to give it first shot, but it can't set chars_avail,
|
|
||||||
! so we assume a single character is available. */
|
|
||||||
/* XXX - need rl_chars_available_hook? */
|
|
||||||
if (rl_input_available_hook)
|
|
||||||
***************
|
|
||||||
*** 269,272 ****
|
|
||||||
--- 270,275 ----
|
|
||||||
if (result == 0)
|
|
||||||
result = -1;
|
|
||||||
+ else
|
|
||||||
+ chars_avail = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
***************
|
|
||||||
*** 286,289 ****
|
|
||||||
--- 289,293 ----
|
|
||||||
if (result <= 0)
|
|
||||||
return 0; /* Nothing to read. */
|
|
||||||
+ result = -1; /* there is something, so check how many chars below */
|
|
||||||
}
|
|
||||||
#endif
|
|
|
@ -1,6 +1,6 @@
|
||||||
--- shlib/Makefile.in.orig
|
--- shlib/Makefile.in.orig
|
||||||
+++ shlib/Makefile.in
|
+++ shlib/Makefile.in
|
||||||
@@ -86,7 +86,7 @@
|
@@ -88,7 +88,7 @@ SHOBJ_XLDFLAGS = @SHOBJ_XLDFLAGS@
|
||||||
SHOBJ_LIBS = @SHOBJ_LIBS@
|
SHOBJ_LIBS = @SHOBJ_LIBS@
|
||||||
|
|
||||||
SHLIB_XLDFLAGS = @LDFLAGS@ @SHLIB_XLDFLAGS@
|
SHLIB_XLDFLAGS = @LDFLAGS@ @SHLIB_XLDFLAGS@
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue