forked from pool/ncurses
Update to ncurses-6.2 patch 20210320
OBS-URL: https://build.opensuse.org/package/show/Base:System/ncurses?expand=0&rev=537
This commit is contained in:
parent
a994b0934c
commit
a3986b9a46
221
cursescheck
221
cursescheck
@ -2,7 +2,7 @@
|
||||
# Test ACS Line Graphics and REP capability of a terminal line
|
||||
# Author: Werner Fink <werner@suse.de>
|
||||
|
||||
typeset -i rep=0 line=0
|
||||
typeset -i rep=0 line=0 color=0
|
||||
for s in 0 1 2
|
||||
do
|
||||
test -c /proc/$$/fd/$s || { echo "Missing /proc/$$/fd/$s" 1>&2; exit 1; }
|
||||
@ -15,7 +15,7 @@ for d in pts fd
|
||||
do
|
||||
test -d /dev/$d || { echo "Missing /dev/$d/" 1>&2; exit 1; }
|
||||
done
|
||||
for p in tput infocmp fold tty grep od
|
||||
for p in tput infocmp tty grep od
|
||||
do
|
||||
type -p $p 1> /dev/null 2>&1 || { echo "Missing $p in path" 1>&2; exit 1; }
|
||||
done
|
||||
@ -30,7 +30,8 @@ typeset -i height=$(tput lines) || { echo "No terminal size" 1>&2; exit 1; }
|
||||
# arrays used later on.
|
||||
#
|
||||
typeset -i c
|
||||
typeset -a tmp="($(tput acsc | od -A none -tx1))" acsc acsn
|
||||
typeset -A acsc acsn
|
||||
typeset -a tmp="($(tput acsc | od -A none -tx1))"
|
||||
for ((c=0;c<${#tmp[@]};c+=2))
|
||||
do
|
||||
acsc[0x${tmp[c]}]="0x${tmp[c+1]}"
|
||||
@ -43,10 +44,15 @@ unset tmp c
|
||||
#
|
||||
tput init || { echo "Not a terminal" 1>&2; exit 1; }
|
||||
|
||||
if test -n "$(infocmp -T $TERM -1 | grep "colors#")"
|
||||
then
|
||||
let color++
|
||||
fi
|
||||
|
||||
#
|
||||
# Restore screen at exit
|
||||
#
|
||||
trap 'tput cvvis; tput rmcup' EXIT HUP INT TERM
|
||||
trap 'tput cup 0 0; tput sgr0; tput cvvis; tput rmcup; exit' EXIT HUP INT TERM
|
||||
|
||||
#
|
||||
# Save screen, make curse invisible, and goto upper left
|
||||
@ -54,15 +60,101 @@ trap 'tput cvvis; tput rmcup' EXIT HUP INT TERM
|
||||
tput smcup
|
||||
tput civis
|
||||
tput cup 0 0
|
||||
if ((color > 0))
|
||||
then
|
||||
tput setab 4
|
||||
tput setaf 7
|
||||
fi
|
||||
tput ed
|
||||
|
||||
echo Checking for Line Graphics on $tty with TERM=$TERM
|
||||
let line++
|
||||
|
||||
smacs="$(tput enacs;tput smacs)"
|
||||
rmacs="$(tput rmacs)"
|
||||
echo Found ${#acsc[@]} ACSC characters, check used Font and its Mapping
|
||||
let line++
|
||||
|
||||
tput cup $((line + 2)) 0
|
||||
typeset -i row=$((line+2)) col=4
|
||||
for sub in ${!acsc[@]}
|
||||
do
|
||||
tput cup $row $col
|
||||
printf "$sub\t\x${sub//0x/}\t${smacs}${acsn[$sub]}${rmacs}"
|
||||
if ((row++ > height-4))
|
||||
then
|
||||
let col=width/2-4
|
||||
let row=line+2
|
||||
fi
|
||||
done
|
||||
unset sub smacs rmacs
|
||||
|
||||
tput cup $line 0
|
||||
tput cvvis
|
||||
echo -n "OK> "
|
||||
read -t 5 yesno
|
||||
|
||||
#
|
||||
# Could use clear
|
||||
#
|
||||
tput -S <<-!
|
||||
civis
|
||||
cup 0 0
|
||||
ed
|
||||
!
|
||||
let line=0
|
||||
|
||||
echo Checking for UTF-8 Line Graphics on $tty with TERM=$TERM
|
||||
let line++
|
||||
|
||||
smacs="$(tput enacs;tput smacs)"
|
||||
rmacs="$(tput rmacs)"
|
||||
echo Use U+2500 upto U+25FF glyps, check used Font and its Mapping
|
||||
let line++
|
||||
|
||||
tput cup $((line+2)) 0
|
||||
typeset -i row=$((line+2)) col=4
|
||||
for x in 94 95 96 97
|
||||
do
|
||||
x=\\x$x
|
||||
for ((c=128;c<=191;c++))
|
||||
do
|
||||
y=\\x$(printf '%x\n' $c)
|
||||
tput cup $row $col
|
||||
printf "\xe2${x}${y}"
|
||||
if ((row++ > height-4))
|
||||
then
|
||||
let col+=2
|
||||
let row=line+2
|
||||
fi
|
||||
done
|
||||
done
|
||||
unset sub smacs rmacs
|
||||
|
||||
tput cup $line 0
|
||||
tput cvvis
|
||||
echo -n "OK> "
|
||||
read -t 5 yesno
|
||||
|
||||
#
|
||||
# Could use clear
|
||||
#
|
||||
tput -S <<-!
|
||||
civis
|
||||
cup 0 0
|
||||
ed
|
||||
!
|
||||
let line=0
|
||||
|
||||
if ((${#acsc[@]} > 0))
|
||||
then
|
||||
echo Terminal TERM=$TERM has ASC Line Graphics, check them.
|
||||
echo Terminal TERM=$TERM has ASC Line Graphics
|
||||
let line++
|
||||
tput cup $((height/2)) 0
|
||||
echo Use them to draw a simple box
|
||||
let line++
|
||||
let row=height/2-4
|
||||
let col=8
|
||||
tput cup $row $col
|
||||
tput -S <<-!
|
||||
enacs
|
||||
smacs
|
||||
@ -70,19 +162,19 @@ then
|
||||
echo -ne ${acsn[0x6c]}
|
||||
for ((c=0;c<20;c++)); do echo -ne ${acsn[0x71]}; done
|
||||
echo -ne ${acsn[0x6b]}
|
||||
tput cup $((height/2+1)) 0
|
||||
tput cup $((row+1)) $col
|
||||
echo -ne ${acsn[0x78]}
|
||||
tput hpa 21
|
||||
tput hpa $((col+21))
|
||||
echo -ne ${acsn[0x78]}
|
||||
tput cup $((height/2+2)) 0
|
||||
tput cup $((row+2)) $col
|
||||
echo -ne ${acsn[0x78]}
|
||||
tput hpa 21
|
||||
tput hpa $((col+21))
|
||||
echo -ne ${acsn[0x78]}
|
||||
tput cup $((height/2+3)) 0
|
||||
tput cup $((row+3)) $col
|
||||
echo -ne ${acsn[0x78]}
|
||||
tput hpa 21
|
||||
tput hpa $((col+21))
|
||||
echo -ne ${acsn[0x78]}
|
||||
tput cup $((height/2+4)) 0
|
||||
tput cup $((row+4)) $col
|
||||
echo -ne ${acsn[0x6d]}
|
||||
for ((c=0;c<20;c++)); do echo -ne ${acsn[0x71]}; done
|
||||
echo -ne ${acsn[0x6a]}
|
||||
@ -95,6 +187,12 @@ then
|
||||
read -t 5 yesno
|
||||
else
|
||||
echo Terminal TERM=$TERM has no ASC Line Graphics. Done
|
||||
tput -S <<-!
|
||||
cup 0 0
|
||||
sgr0
|
||||
ed
|
||||
rmcup
|
||||
!
|
||||
exit 0
|
||||
fi
|
||||
|
||||
@ -102,6 +200,71 @@ fi
|
||||
# Could use clear
|
||||
#
|
||||
tput -S <<-!
|
||||
civis
|
||||
cup 0 0
|
||||
ed
|
||||
!
|
||||
let line=0
|
||||
|
||||
if ((1))
|
||||
then
|
||||
|
||||
ul=\\xe2\\x94\\x8c
|
||||
ur=\\xe2\\x94\\x90
|
||||
hl=\\xe2\\x94\\x80
|
||||
vl=\\xe2\\x94\\x82
|
||||
dl=\\xe2\\x94\\x94
|
||||
dr=\\xe2\\x94\\x98
|
||||
|
||||
echo Terminal TERM=$TERM with UTF-8 Line Graphics
|
||||
let line++
|
||||
echo Use them to draw a simple box
|
||||
let line++
|
||||
let row=height/2-4
|
||||
let col=8
|
||||
tput cup $row $col
|
||||
tput enacs
|
||||
|
||||
echo -ne ${ul}
|
||||
for ((c=0;c<20;c++)); do echo -ne ${hl}; done
|
||||
echo -ne ${ur}
|
||||
tput cup $((row+1)) $col
|
||||
echo -ne ${vl}
|
||||
tput hpa $((col+21))
|
||||
echo -ne ${vl}
|
||||
tput cup $((row+2)) $col
|
||||
echo -ne ${vl}
|
||||
tput hpa $((col+21))
|
||||
echo -ne ${vl}
|
||||
tput cup $((row+3)) $col
|
||||
echo -ne ${vl}
|
||||
tput hpa $((col+21))
|
||||
echo -ne ${vl}
|
||||
tput cup $((row+4)) $col
|
||||
echo -ne ${dl}
|
||||
for ((c=0;c<20;c++)); do echo -ne ${hl}; done
|
||||
echo -ne ${dr}
|
||||
|
||||
tput cup $line 0
|
||||
tput cvvis
|
||||
echo -n "OK> "
|
||||
read -t 5 yesno
|
||||
else
|
||||
echo Terminal TERM=$TERM has no ASC Line Graphics. Done
|
||||
tput -S <<-!
|
||||
cup 0 0
|
||||
sgr0
|
||||
ed
|
||||
rmcup
|
||||
!
|
||||
exit 0
|
||||
fi
|
||||
|
||||
#
|
||||
# Could use clear
|
||||
#
|
||||
tput -S <<-!
|
||||
civis
|
||||
cup 0 0
|
||||
ed
|
||||
!
|
||||
@ -113,44 +276,58 @@ then
|
||||
let line++
|
||||
else
|
||||
echo No rep capability given in terminfo database for TERM=$TERM
|
||||
tput cvvis
|
||||
echo -n "OK> "
|
||||
read -t 5 yesno
|
||||
tput -S <<-!
|
||||
cup 0 0
|
||||
sgr0
|
||||
ed
|
||||
rmcup
|
||||
!
|
||||
exit 0
|
||||
fi
|
||||
if ((rep > 0))
|
||||
then
|
||||
echo Testing rep capability of TERM=$TERM
|
||||
let line++
|
||||
let row=height/2-4
|
||||
let col=8
|
||||
tput -S <<-!
|
||||
civis
|
||||
enacs
|
||||
smacs
|
||||
bold
|
||||
cup $((height/2)) 0
|
||||
cup $row $col
|
||||
rep ${acsc[0x6c]} 0
|
||||
rep ${acsc[0x71]} 20
|
||||
rep ${acsc[0x6b]} 0
|
||||
cup $((height/2+1)) 0
|
||||
cup $((row+1)) $col
|
||||
rep ${acsc[0x78]} 0
|
||||
hpa 21
|
||||
hpa $((col+21))
|
||||
rep ${acsc[0x78]} 0
|
||||
cup $((height/2+2)) 0
|
||||
cup $((row+2)) $col
|
||||
rep ${acsc[0x78]} 0
|
||||
hpa 21
|
||||
hpa $((col+21))
|
||||
rep ${acsc[0x78]} 0
|
||||
cup $((height/2+3)) 0
|
||||
cup $((row+3)) $col
|
||||
rep ${acsc[0x78]} 0
|
||||
hpa 21
|
||||
hpa $((col+21))
|
||||
rep ${acsc[0x78]} 0
|
||||
cup $((height/2+4)) 0
|
||||
cup $((row+4)) $col
|
||||
rep ${acsc[0x6d]} 0
|
||||
rep ${acsc[0x71]} 20
|
||||
rep ${acsc[0x6a]} 0
|
||||
sgr0
|
||||
rmacs
|
||||
cvvis
|
||||
!
|
||||
if ((color > 0))
|
||||
then
|
||||
tput setab 4
|
||||
tput setaf 7
|
||||
fi
|
||||
tput cup $line 0
|
||||
tput cvvis
|
||||
echo -n "OK> "
|
||||
read -t 5 yesno
|
||||
fi
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
--- misc/terminfo.src
|
||||
+++ misc/terminfo.src 2018-10-29 10:23:47.271511864 +0000
|
||||
@@ -17396,8 +17396,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
|
||||
@@ -17417,8 +17417,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
|
||||
#
|
||||
|
||||
ibm327x|line mode IBM 3270 style,
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1daabf054484e9eba9c115243d0c75f72fc52ce43ea06c58cefa3111503807ad
|
||||
size 1970432
|
||||
oid sha256:a028cf09a9c8314dc75f06b06b717dfdadd65dd64319ed22b3e4d4ac9dbff372
|
||||
size 2037995
|
||||
|
115
ncurses-6.2.dif
115
ncurses-6.2.dif
@ -1,27 +1,28 @@
|
||||
---
|
||||
aclocal.m4 | 40 ++++++------
|
||||
configure | 40 ++++++------
|
||||
include/curses.h.in | 3
|
||||
aclocal.m4 | 40 ++++++++--------
|
||||
configure | 42 +++++++++-------
|
||||
include/curses.h.in | 3 +
|
||||
include/termcap.h.in | 2
|
||||
include/tic.h | 4 -
|
||||
man/man_db.renames | 2
|
||||
man/ncurses.3x | 4 +
|
||||
misc/gen-pkgconfig.in | 8 ++
|
||||
misc/gen-pkgconfig.in | 8 +++
|
||||
misc/terminfo.src | 107 ++++++++++++++++++++++++++++++++++++-------
|
||||
ncurses/Makefile.in | 2
|
||||
ncurses/curses.priv.h | 2
|
||||
ncurses/run_cmd.sh | 11 +++
|
||||
ncurses/tinfo/MKfallback.sh | 10 ++-
|
||||
ncurses/tinfo/access.c | 28 ++++++++
|
||||
ncurses/tinfo/lib_setup.c | 3
|
||||
ncurses/run_cmd.sh | 11 ++++
|
||||
ncurses/tinfo/MKfallback.sh | 10 +++-
|
||||
ncurses/tinfo/access.c | 28 +++++++++++
|
||||
ncurses/tinfo/lib_setup.c | 3 +
|
||||
ncurses/tinfo/read_entry.c | 2
|
||||
ncurses/tinfo/read_termcap.c | 21 ++++--
|
||||
ncurses/tinfo/read_termcap.c | 21 +++++---
|
||||
progs/Makefile.in | 4 -
|
||||
test/test.priv.h | 4 -
|
||||
19 files changed, 231 insertions(+), 68 deletions(-)
|
||||
test/tracemunch | 2
|
||||
20 files changed, 232 insertions(+), 69 deletions(-)
|
||||
|
||||
--- aclocal.m4
|
||||
+++ aclocal.m4 2021-01-11 07:35:24.208330490 +0000
|
||||
+++ aclocal.m4 2021-03-22 08:38:25.448950138 +0000
|
||||
@@ -639,7 +639,7 @@ AC_CHECK_SIZEOF(bool,,[
|
||||
AC_CACHE_CHECK(for type of bool, cf_cv_type_of_bool,[
|
||||
rm -f cf_test.out
|
||||
@ -31,7 +32,7 @@
|
||||
#include <stdio.h>
|
||||
|
||||
#if defined(__cplusplus)
|
||||
@@ -5562,12 +5562,15 @@ cat >>$cf_edit_man <<CF_EOF
|
||||
@@ -5614,12 +5614,15 @@ cat >>$cf_edit_man <<CF_EOF
|
||||
echo "? missing rename for \$cf_source"
|
||||
cf_target="\$cf_source"
|
||||
fi
|
||||
@ -49,7 +50,7 @@
|
||||
sed -f "$cf_man_alias" \\
|
||||
CF_EOF
|
||||
|
||||
@@ -5577,7 +5580,7 @@ cat >>$cf_edit_man <<CF_EOF
|
||||
@@ -5629,7 +5632,7 @@ cat >>$cf_edit_man <<CF_EOF
|
||||
CF_EOF
|
||||
else
|
||||
cat >>$cf_edit_man <<CF_EOF
|
||||
@ -58,7 +59,7 @@
|
||||
CF_EOF
|
||||
fi
|
||||
|
||||
@@ -5617,7 +5620,7 @@ cat >>$cf_edit_man <<CF_EOF
|
||||
@@ -5669,7 +5672,7 @@ cat >>$cf_edit_man <<CF_EOF
|
||||
mv \$TMP.$cf_so_strip \$TMP
|
||||
fi
|
||||
fi
|
||||
@ -67,7 +68,7 @@
|
||||
CF_EOF
|
||||
fi
|
||||
|
||||
@@ -5626,23 +5629,23 @@ case "$MANPAGE_FORMAT" in
|
||||
@@ -5678,23 +5681,23 @@ case "$MANPAGE_FORMAT" in
|
||||
cat >>$cf_edit_man <<CF_EOF
|
||||
if test "\$form" = format ; then
|
||||
# BSDI installs only .0 suffixes in the cat directories
|
||||
@ -97,7 +98,7 @@
|
||||
for cf_alias in \$aliases
|
||||
do
|
||||
if test "\$section" = 1 ; then
|
||||
@@ -5651,7 +5654,7 @@ cat >>$cf_edit_man <<CF_EOF
|
||||
@@ -5703,7 +5706,7 @@ cat >>$cf_edit_man <<CF_EOF
|
||||
|
||||
if test "$MANPAGE_SYMLINKS" = yes ; then
|
||||
if test -f "\$cf_alias\${suffix}" ; then
|
||||
@ -106,7 +107,7 @@
|
||||
then
|
||||
continue
|
||||
fi
|
||||
@@ -5661,18 +5664,18 @@ CF_EOF
|
||||
@@ -5713,18 +5716,18 @@ CF_EOF
|
||||
case "x$LN_S" in
|
||||
(*-f)
|
||||
cat >>$cf_edit_man <<CF_EOF
|
||||
@ -128,7 +129,7 @@
|
||||
echo ".so \$cf_source" >\$TMP
|
||||
CF_EOF
|
||||
if test -n "$cf_compress" ; then
|
||||
@@ -5692,9 +5695,9 @@ cat >>$cf_edit_man <<CF_EOF
|
||||
@@ -5744,9 +5747,9 @@ cat >>$cf_edit_man <<CF_EOF
|
||||
)
|
||||
)
|
||||
elif test "\$verb" = removing ; then
|
||||
@ -141,7 +142,7 @@
|
||||
)
|
||||
test -d "\$cf_subdir\${section}" &&
|
||||
test -n "\$aliases" && (
|
||||
@@ -5714,6 +5717,7 @@ cat >>$cf_edit_man <<CF_EOF
|
||||
@@ -5766,6 +5769,7 @@ cat >>$cf_edit_man <<CF_EOF
|
||||
# echo ".hy 0"
|
||||
cat \$TMP
|
||||
fi
|
||||
@ -150,7 +151,7 @@
|
||||
esac
|
||||
done
|
||||
--- configure
|
||||
+++ configure 2021-01-11 07:39:08.776005262 +0000
|
||||
+++ configure 2021-03-22 08:38:25.448950138 +0000
|
||||
@@ -5836,7 +5836,7 @@ echo $ECHO_N "checking for an rpath opti
|
||||
fi
|
||||
;;
|
||||
@ -288,8 +289,8 @@
|
||||
esac
|
||||
done
|
||||
--- include/curses.h.in
|
||||
+++ include/curses.h.in 2021-01-11 07:27:32.117420019 +0000
|
||||
@@ -186,6 +186,9 @@ typedef @cf_cv_typeof_chtype@ chtype;
|
||||
+++ include/curses.h.in 2021-03-22 08:38:25.448950138 +0000
|
||||
@@ -198,6 +198,9 @@ typedef @cf_cv_typeof_chtype@ chtype;
|
||||
typedef @cf_cv_typeof_mmask_t@ mmask_t;
|
||||
#endif
|
||||
|
||||
@ -300,7 +301,7 @@
|
||||
* We need FILE, etc. Include this before checking any feature symbols.
|
||||
*/
|
||||
--- include/termcap.h.in
|
||||
+++ include/termcap.h.in 2021-01-11 07:27:32.117420019 +0000
|
||||
+++ include/termcap.h.in 2021-03-22 08:38:25.448950138 +0000
|
||||
@@ -47,6 +47,8 @@ extern "C"
|
||||
{
|
||||
#endif /* __cplusplus */
|
||||
@ -311,7 +312,7 @@
|
||||
|
||||
#undef NCURSES_OSPEED
|
||||
--- include/tic.h
|
||||
+++ include/tic.h 2021-01-11 07:27:32.117420019 +0000
|
||||
+++ include/tic.h 2021-03-22 08:38:25.448950138 +0000
|
||||
@@ -237,12 +237,12 @@ struct user_table_entry
|
||||
*/
|
||||
|
||||
@ -328,7 +329,7 @@
|
||||
#define CANCELLED_STRING (char *)(-1)
|
||||
|
||||
--- man/man_db.renames
|
||||
+++ man/man_db.renames 2021-01-11 07:27:32.117420019 +0000
|
||||
+++ man/man_db.renames 2021-03-22 08:38:25.452950063 +0000
|
||||
@@ -164,6 +164,7 @@ term.7 term.7
|
||||
term_variables.3x terminfo_variables.3ncurses
|
||||
terminfo.5 terminfo.5
|
||||
@ -346,7 +347,7 @@
|
||||
#
|
||||
getty.1 getty.8
|
||||
--- man/ncurses.3x
|
||||
+++ man/ncurses.3x 2021-01-11 07:27:32.117420019 +0000
|
||||
+++ man/ncurses.3x 2021-03-22 08:38:25.452950063 +0000
|
||||
@@ -139,6 +139,10 @@ after the shell environment variable \fB
|
||||
[See \fBterminfo\fR(\*n) for further details.]
|
||||
.SS Datatypes
|
||||
@ -359,7 +360,7 @@
|
||||
called \fIwindows\fR, which can be thought of as two-dimensional
|
||||
arrays of characters representing all or part of a CRT screen.
|
||||
--- misc/gen-pkgconfig.in
|
||||
+++ misc/gen-pkgconfig.in 2021-01-11 07:27:32.117420019 +0000
|
||||
+++ misc/gen-pkgconfig.in 2021-03-22 08:38:25.452950063 +0000
|
||||
@@ -92,6 +92,9 @@ do
|
||||
-specs*) # ignore linker specs-files which were used to build library
|
||||
continue
|
||||
@ -400,7 +401,7 @@
|
||||
|
||||
if [ $name = $MAIN_LIBRARY ]
|
||||
--- misc/terminfo.src
|
||||
+++ misc/terminfo.src 2021-01-11 07:27:32.121419944 +0000
|
||||
+++ misc/terminfo.src 2021-03-22 08:38:25.452950063 +0000
|
||||
@@ -305,7 +305,9 @@ dumb|80-column dumb tty,
|
||||
am,
|
||||
cols#80,
|
||||
@ -473,7 +474,7 @@
|
||||
bce,
|
||||
kdch1=^?, kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS,
|
||||
use=xterm-color,
|
||||
@@ -5944,10 +5971,14 @@ mgt|Multi GNOME Terminal,
|
||||
@@ -5965,10 +5992,14 @@ mgt|Multi GNOME Terminal,
|
||||
#### KDE
|
||||
# This is kvt 0-18.7, shipped with Redhat 6.0 (though whether it supports bce
|
||||
# or not is debatable).
|
||||
@ -489,7 +490,7 @@
|
||||
# Konsole 1.0.1 (2001/11/25)
|
||||
# (formerly known as kvt)
|
||||
#
|
||||
@@ -6199,7 +6230,7 @@ mlterm3|multi lingual terminal emulator,
|
||||
@@ -6220,7 +6251,7 @@ mlterm3|multi lingual terminal emulator,
|
||||
mlterm2|multi lingual terminal emulator,
|
||||
am, eslok, km, mc5i, mir, msgr, npc, xenl, XT,
|
||||
colors#8, cols#80, it#8, lines#24, pairs#64,
|
||||
@ -498,7 +499,7 @@
|
||||
bel=^G, bold=\E[1m, cbt=\E[Z, clear=\E[H\E[2J, cr=\r,
|
||||
csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H,
|
||||
cud=\E[%p1%dB, cud1=\n, cuf=\E[%p1%dC, cuf1=\E[C,
|
||||
@@ -6276,7 +6307,7 @@ rxvt-basic|rxvt terminal base (X Window
|
||||
@@ -6297,7 +6328,7 @@ rxvt-basic|rxvt terminal base (X Window
|
||||
enacs=\E(B\E)0, flash=\E[?5h$<100/>\E[?5l, home=\E[H,
|
||||
ht=^I, hts=\EH, ich=\E[%p1%d@, il=\E[%p1%dL, il1=\E[L,
|
||||
ind=\n, is1=\E[?47l\E=\E[?1l,
|
||||
@ -507,7 +508,7 @@
|
||||
kcbt=\E[Z, kmous=\E[M, rc=\E8, rev=\E[7m, ri=\EM, rmacs=^O,
|
||||
rmcup=\E[2J\E[?47l\E8, rmir=\E[4l, rmkx=\E>, rmso=\E[27m,
|
||||
rmul=\E[24m,
|
||||
@@ -6371,8 +6402,8 @@ rxvt-basic|rxvt terminal base (X Window
|
||||
@@ -6392,8 +6423,8 @@ rxvt-basic|rxvt terminal base (X Window
|
||||
# Removed kDN6, etc (control+shift) since rxvt does not implement this -TD
|
||||
rxvt+pcfkeys|fragment for PC-style fkeys,
|
||||
kDC=\E[3$, kEND=\E[8$, kHOM=\E[7$, kIC=\E[2$, kLFT=\E[d,
|
||||
@ -518,7 +519,7 @@
|
||||
kf10=\E[21~, kf11=\E[23~, kf12=\E[24~, kf13=\E[25~,
|
||||
kf14=\E[26~, kf15=\E[28~, kf16=\E[29~, kf17=\E[31~,
|
||||
kf18=\E[32~, kf19=\E[33~, kf2=\E[12~, kf20=\E[34~,
|
||||
@@ -6462,6 +6493,38 @@ rxvt-cygwin-native|rxvt terminal emulato
|
||||
@@ -6483,6 +6514,38 @@ rxvt-cygwin-native|rxvt terminal emulato
|
||||
\302x\263y\363z\362{\343|\330~\376,
|
||||
use=rxvt-cygwin,
|
||||
|
||||
@ -557,7 +558,7 @@
|
||||
# This variant is supposed to work with rxvt 2.7.7 when compiled with
|
||||
# NO_BRIGHTCOLOR defined. rxvt needs more work...
|
||||
rxvt-16color|rxvt with 16 colors like aixterm,
|
||||
@@ -6526,7 +6589,7 @@ Eterm|Eterm-color|Eterm with xterm-style
|
||||
@@ -6547,7 +6610,7 @@ Eterm|Eterm-color|Eterm with xterm-style
|
||||
home=\E[H, hpa=\E[%i%p1%dG, ht=^I, hts=\EH, ich=\E[%p1%d@,
|
||||
il=\E[%p1%dL, il1=\E[L, ind=\n, is1=\E[?47l\E>\E[?1l,
|
||||
is2=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;3;4;6l\E[4l, kNXT@,
|
||||
@ -566,7 +567,7 @@
|
||||
kc1=\E[8~, kc3=\E[6~, kent=\EOM, khlp=\E[28~, kmous=\E[M,
|
||||
mc4=\E[4i, mc5=\E[5i, rc=\E8, rev=\E[7m, ri=\EM, rmacs=^O,
|
||||
rmam=\E[?7l, rmcup=\E[2J\E[?47l\E8, rmir=\E[4l, rmkx=,
|
||||
@@ -7514,7 +7577,7 @@ pty|4bsd pseudo teletype,
|
||||
@@ -7535,7 +7598,7 @@ pty|4bsd pseudo teletype,
|
||||
# https://github.com/emacs-mirror/emacs/blob/master/lisp/term.el
|
||||
#
|
||||
# The codes supported by the term.el terminal emulation in GNU Emacs 19.30
|
||||
@ -575,7 +576,7 @@
|
||||
am, mir, xenl,
|
||||
cols#80, lines#24,
|
||||
bel=^G, bold=\E[1m, clear=\E[H\E[J, cr=\r,
|
||||
@@ -7527,6 +7590,13 @@ eterm|gnu emacs term.el terminal emulati
|
||||
@@ -7548,6 +7611,13 @@ eterm|gnu emacs term.el terminal emulati
|
||||
rmcup=\E[2J\E[?47l\E8, rmir=\E[4l, rmso=\E[m, rmul=\E[m,
|
||||
sgr0=\E[m, smcup=\E7\E[?47h, smir=\E[4h, smso=\E[7m,
|
||||
smul=\E[4m,
|
||||
@ -589,7 +590,7 @@
|
||||
|
||||
# The codes supported by the term.el terminal emulation in GNU Emacs 22.2
|
||||
eterm-color|Emacs term.el terminal emulator term-protocol-version 0.96,
|
||||
@@ -7654,7 +7724,7 @@ screen|VT 100/ANSI X3.64 virtual termina
|
||||
@@ -7675,7 +7745,7 @@ screen|VT 100/ANSI X3.64 virtual termina
|
||||
dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, el=\E[K, el1=\E[1K,
|
||||
enacs=\E(B\E)0, flash=\Eg, home=\E[H, hpa=\E[%i%p1%dG,
|
||||
ht=^I, hts=\EH, ich=\E[%p1%d@, il=\E[%p1%dL, il1=\E[L,
|
||||
@ -598,7 +599,7 @@
|
||||
kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, kf1=\EOP,
|
||||
kf10=\E[21~, kf11=\E[23~, kf12=\E[24~, kf2=\EOQ, kf3=\EOR,
|
||||
kf4=\EOS, kf5=\E[15~, kf6=\E[17~, kf7=\E[18~, kf8=\E[19~,
|
||||
@@ -7774,6 +7844,13 @@ screen.xterm-xfree86|screen.xterm-new|sc
|
||||
@@ -7795,6 +7865,13 @@ screen.xterm-xfree86|screen.xterm-new|sc
|
||||
use=xterm+x11mouse, use=xterm-new,
|
||||
#:screen.xterm|screen for modern xterm,
|
||||
#: use=screen.xterm-new,
|
||||
@ -612,7 +613,7 @@
|
||||
# xterm-r6 does not really support khome/kend unless it is propped up by
|
||||
# the translations resource.
|
||||
screen.xterm-r6|screen customized for X11R6 xterm,
|
||||
@@ -7861,7 +7938,7 @@ screen2|old VT 100/ANSI X3.64 virtual te
|
||||
@@ -7882,7 +7959,7 @@ screen2|old VT 100/ANSI X3.64 virtual te
|
||||
cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A,
|
||||
dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, ed=\E[J,
|
||||
el=\E[K, ht=^I, hts=\EH, ich=\E[%p1%d@, ich1=, il=\E[%p1%dL,
|
||||
@ -621,7 +622,7 @@
|
||||
kcuu1=\EA, kf0=\E~, kf1=\ES, kf2=\ET, kf3=\EU, kf4=\EV,
|
||||
kf5=\EW, kf6=\EP, kf7=\EQ, kf8=\ER, kf9=\E0I, khome=\EH,
|
||||
nel=\r\n, rc=\E8, ri=\EM, rmir=\E[4l, rmso=\E[23m,
|
||||
@@ -9759,7 +9836,7 @@ hp700-wy|HP700/41 emulating wyse30,
|
||||
@@ -9780,7 +9857,7 @@ hp700-wy|HP700/41 emulating wyse30,
|
||||
ri=\Ej, rmir=\Er, rmso=\EG0$<10/>, rmul=\EG0$<10/>,
|
||||
sgr0=\EG0$<10/>, smir=\Eq, smso=\EG4$<10/>,
|
||||
smul=\EG8$<10/>, tbc=\E0, vpa=\E[%p1%{32}%+%c,
|
||||
@ -630,7 +631,7 @@
|
||||
am, da, db, xhp,
|
||||
cols#80, lh#2, lines#24, lm#0, lw#8, nlab#8,
|
||||
acsc=0cjgktlrmfn/q\,t5u6v8w7x., bel=^G, blink=\E&dA,
|
||||
@@ -17406,7 +17483,7 @@ ibm3101|i3101|IBM 3101-10,
|
||||
@@ -17427,7 +17504,7 @@ ibm3101|i3101|IBM 3101-10,
|
||||
cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, ed=\EJ,
|
||||
el=\EI, home=\EH, hts=\E0, ind=\n, kcub1=\ED, kcud1=\EB,
|
||||
kcuf1=\EC, kcuu1=\EA, nel=\r\n, tbc=\EH,
|
||||
@ -639,7 +640,7 @@
|
||||
is2=\E S, rmacs=\E>B, rmcup=\E>B, rs2=\E S, s0ds=\E>B,
|
||||
sgr=\E4%{64}%?%p1%t%{65}%|%;%?%p2%t%{66}%|%;%?%p3%t%{65}%|%;
|
||||
%?%p4%t%{68}%|%;%?%p5%t%{64}%|%;%?%p6%t%{72}%|%;%?%p7%t
|
||||
@@ -17664,7 +17741,7 @@ lft|lft-pc850|LFT-PC850|IBM LFT PC850 De
|
||||
@@ -17685,7 +17762,7 @@ lft|lft-pc850|LFT-PC850|IBM LFT PC850 De
|
||||
tbc=\E[3g, use=ecma+index,
|
||||
# "Megapel" refers to the display adapter, which was used with the IBM RT
|
||||
# aka IBM 6150.
|
||||
@ -649,7 +650,7 @@
|
||||
s1ds=\E(0, sgr0=\E[0m\E(B, use=ibm5154,
|
||||
ibm5081-c|ibmmpel-c|IBM 5081 1024x1024 256/4096 Megapel enhanced color display,
|
||||
--- ncurses/Makefile.in
|
||||
+++ ncurses/Makefile.in 2021-01-11 07:27:32.121419944 +0000
|
||||
+++ ncurses/Makefile.in 2021-03-22 08:38:25.452950063 +0000
|
||||
@@ -230,7 +230,7 @@ $(DESTDIR)$(libdir) :
|
||||
../lib : ; mkdir $@
|
||||
|
||||
@ -660,7 +661,7 @@
|
||||
./lib_gen.c : $(base)/MKlib_gen.sh ../include/curses.h
|
||||
$(SHELL) -e $(base)/MKlib_gen.sh "$(CPP) $(CPPFLAGS)" "$(AWK)" generated <../include/curses.h >$@
|
||||
--- ncurses/curses.priv.h
|
||||
+++ ncurses/curses.priv.h 2021-01-11 07:27:32.121419944 +0000
|
||||
+++ ncurses/curses.priv.h 2021-03-22 08:38:25.456949988 +0000
|
||||
@@ -2277,6 +2277,8 @@ extern NCURSES_EXPORT(char *) _nc_tracec
|
||||
extern NCURSES_EXPORT(char *) _nc_tracemouse (SCREEN *, MEVENT const *);
|
||||
extern NCURSES_EXPORT(char *) _nc_trace_mmask_t (SCREEN *, mmask_t);
|
||||
@ -671,7 +672,7 @@
|
||||
extern NCURSES_EXPORT(int) _nc_freewin (WINDOW *);
|
||||
extern NCURSES_EXPORT(int) _nc_getenv_num (const char *);
|
||||
--- ncurses/run_cmd.sh
|
||||
+++ ncurses/run_cmd.sh 2021-01-11 07:27:32.121419944 +0000
|
||||
+++ ncurses/run_cmd.sh 2021-03-22 08:38:25.456949988 +0000
|
||||
@@ -0,0 +1,11 @@
|
||||
+#!/bin/sh
|
||||
+
|
||||
@ -685,7 +686,7 @@
|
||||
+
|
||||
+exec ${1+"$@"}
|
||||
--- ncurses/tinfo/MKfallback.sh
|
||||
+++ ncurses/tinfo/MKfallback.sh 2021-01-11 07:27:32.121419944 +0000
|
||||
+++ ncurses/tinfo/MKfallback.sh 2021-03-22 08:38:25.456949988 +0000
|
||||
@@ -74,6 +74,12 @@ else
|
||||
tmp_info=
|
||||
fi
|
||||
@ -718,7 +719,7 @@
|
||||
done
|
||||
|
||||
--- ncurses/tinfo/access.c
|
||||
+++ ncurses/tinfo/access.c 2021-01-11 07:27:32.121419944 +0000
|
||||
+++ ncurses/tinfo/access.c 2021-03-22 08:38:25.456949988 +0000
|
||||
@@ -31,6 +31,10 @@
|
||||
* Author: Thomas E. Dickey *
|
||||
****************************************************************************/
|
||||
@ -762,7 +763,7 @@
|
||||
_nc_access(const char *path, int mode)
|
||||
{
|
||||
--- ncurses/tinfo/lib_setup.c
|
||||
+++ ncurses/tinfo/lib_setup.c 2021-01-11 07:27:32.121419944 +0000
|
||||
+++ ncurses/tinfo/lib_setup.c 2021-03-22 08:38:25.456949988 +0000
|
||||
@@ -613,6 +613,9 @@ _nc_locale_breaks_acs(TERMINAL *termp)
|
||||
} else if ((value = tigetnum("U8")) >= 0) {
|
||||
result = value; /* use extension feature */
|
||||
@ -774,7 +775,7 @@
|
||||
result = 1; /* always broken */
|
||||
} else if (strstr(env, "screen") != 0
|
||||
--- ncurses/tinfo/read_entry.c
|
||||
+++ ncurses/tinfo/read_entry.c 2021-01-11 07:27:32.121419944 +0000
|
||||
+++ ncurses/tinfo/read_entry.c 2021-03-22 08:38:25.456949988 +0000
|
||||
@@ -551,6 +551,7 @@ _nc_read_file_entry(const char *const fi
|
||||
FILE *fp = 0;
|
||||
int code;
|
||||
@ -792,7 +793,7 @@
|
||||
return (code);
|
||||
}
|
||||
--- ncurses/tinfo/read_termcap.c
|
||||
+++ ncurses/tinfo/read_termcap.c 2021-01-11 07:27:32.121419944 +0000
|
||||
+++ ncurses/tinfo/read_termcap.c 2021-03-22 08:38:25.456949988 +0000
|
||||
@@ -323,14 +323,18 @@ _nc_getent(
|
||||
*/
|
||||
if (fd >= 0) {
|
||||
@ -839,7 +840,7 @@
|
||||
}
|
||||
if (copied != 0)
|
||||
--- progs/Makefile.in
|
||||
+++ progs/Makefile.in 2021-01-11 07:27:32.121419944 +0000
|
||||
+++ progs/Makefile.in 2021-03-22 08:38:25.456949988 +0000
|
||||
@@ -101,7 +101,7 @@ CFLAGS_LIBTOOL = $(CCFLAGS)
|
||||
CFLAGS_NORMAL = $(CCFLAGS) -DNCURSES_STATIC
|
||||
CFLAGS_DEBUG = $(CCFLAGS) -DNCURSES_STATIC @CC_G_OPT@ -DTRACE
|
||||
@ -859,8 +860,8 @@
|
||||
LDFLAGS_DEFAULT = $(LDFLAGS_@DFT_UPR_MODEL@)
|
||||
|
||||
--- test/test.priv.h
|
||||
+++ test/test.priv.h 2021-01-11 07:27:32.121419944 +0000
|
||||
@@ -1027,12 +1027,12 @@ extern char *_nc_strstr(const char *, co
|
||||
+++ test/test.priv.h 2021-03-22 08:38:25.456949988 +0000
|
||||
@@ -1037,12 +1037,12 @@ extern char *_nc_strstr(const char *, co
|
||||
#endif
|
||||
|
||||
/* out-of-band values for representing absent capabilities */
|
||||
@ -875,3 +876,11 @@
|
||||
#define CANCELLED_NUMERIC (-2)
|
||||
#define CANCELLED_STRING (char *)(-1)
|
||||
|
||||
--- test/tracemunch
|
||||
+++ test/tracemunch 2021-03-22 09:05:17.914573340 +0000
|
||||
@@ -1,4 +1,4 @@
|
||||
-#!/usr/bin/env perl
|
||||
+#!/usr/bin/perl
|
||||
# $Id: tracemunch,v 1.40 2021/02/13 19:29:12 tom Exp $
|
||||
##############################################################################
|
||||
# Copyright 2018-2020,2021 Thomas E. Dickey #
|
||||
|
@ -1,3 +1,22 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 22 08:37:32 UTC 2021 - Dr. Werner Fink <werner@suse.de>
|
||||
|
||||
- Add ncurses patch 20210320
|
||||
+ improve parameter-checking in tput by forcing it to analyze any
|
||||
extended string capability, e.g., as used in the Cs and Ms
|
||||
capabilities of the tmux description (report by Brad Town,
|
||||
cf: 20200531).
|
||||
+ remove an incorrect free in the fallback (non-checking) version of
|
||||
_nc_free_and_exit (report by Miroslav Lichvar).
|
||||
+ correct use-ordering in some xterm-direct flavors -TD
|
||||
+ add hterm, hterm-256color (Mike Frysinger)
|
||||
+ if the build-time compiler accepts c11's _Noreturn keyword, use that
|
||||
rather than gcc's attribute.
|
||||
+ change configure-check for gcc's noreturn attribute to assume it is
|
||||
a prefix rather than suffix, matching c11's _Noreturn convention.
|
||||
+ add "lint" rule to c++/Makefile, e.g., with cppcheck.
|
||||
- Port patch ncurses-6.2.dif by correcting offsets
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 16 12:20:59 UTC 2021 - Dr. Werner Fink <werner@suse.de>
|
||||
|
||||
|
@ -125,6 +125,7 @@ reset -- terminal initialization utility
|
||||
Summary: Tools using the new curses libraries
|
||||
License: MIT
|
||||
Group: System/Base
|
||||
Requires: ncurses-utils >= %{version}
|
||||
|
||||
%description -n ncurses-tests
|
||||
The ncurses based test programs
|
||||
|
Loading…
Reference in New Issue
Block a user