diff --git a/cursescheck b/cursescheck index 53cc942..a2f7401 100644 --- a/cursescheck +++ b/cursescheck @@ -2,7 +2,7 @@ # Test ACS Line Graphics and REP capability of a terminal line # Author: Werner Fink -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 diff --git a/ncurses-5.9-ibm327x.dif b/ncurses-5.9-ibm327x.dif index 6298989..2a8dc0c 100644 --- a/ncurses-5.9-ibm327x.dif +++ b/ncurses-5.9-ibm327x.dif @@ -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, diff --git a/ncurses-6.2-patches.tar.bz2 b/ncurses-6.2-patches.tar.bz2 index 3c6c228..db1c10c 100644 --- a/ncurses-6.2-patches.tar.bz2 +++ b/ncurses-6.2-patches.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1daabf054484e9eba9c115243d0c75f72fc52ce43ea06c58cefa3111503807ad -size 1970432 +oid sha256:a028cf09a9c8314dc75f06b06b717dfdadd65dd64319ed22b3e4d4ac9dbff372 +size 2037995 diff --git a/ncurses-6.2.dif b/ncurses-6.2.dif index 719bbea..9cfa924 100644 --- a/ncurses-6.2.dif +++ b/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 #if defined(__cplusplus) -@@ -5562,12 +5562,15 @@ cat >>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <\$TMP CF_EOF if test -n "$cf_compress" ; then -@@ -5692,9 +5695,9 @@ cat >>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <\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 # diff --git a/ncurses.changes b/ncurses.changes index 69c85a8..65c4603 100644 --- a/ncurses.changes +++ b/ncurses.changes @@ -1,3 +1,22 @@ +------------------------------------------------------------------- +Mon Mar 22 08:37:32 UTC 2021 - Dr. Werner Fink + +- 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 diff --git a/ncurses.spec b/ncurses.spec index ccfbdfe..df90bd2 100644 --- a/ncurses.spec +++ b/ncurses.spec @@ -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