Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ncurses for openSUSE:Factory checked in at 2023-07-12 17:26:39 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ncurses (Old) and /work/SRC/openSUSE:Factory/.ncurses.new.8922 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ncurses" Wed Jul 12 17:26:39 2023 rev:243 rq:1097901 version:unknown Changes: -------- --- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes 2023-06-21 22:36:52.945296297 +0200 +++ /work/SRC/openSUSE:Factory/.ncurses.new.8922/ncurses.changes 2023-07-12 17:26:50.770317696 +0200 @@ -1,0 +2,19 @@ +Mon Jul 3 07:27:16 UTC 2023 - Dr. Werner Fink <wer...@suse.de> + +- Add ncurses patch 20230701 + + fix mandoc warnings about unnecessary markup. + + improve parameter check in tparm_setup() +- Extend compiled in fall back terminals with xterm-256color + and ms-terminal (the first is now a days more common and second + one is useful for ssh connections to MS(tm)) + +------------------------------------------------------------------- +Mon Jun 26 08:57:42 UTC 2023 - Dr. Werner Fink <wer...@suse.de> + +- Add ncurses patch 20230624 + + fixes for out-of-memory condition (report by "eaglegai"). +- Add ncurses patch 20230625 + + adjust man/make_sed.sh to work with dates as the third field of TH. + + fixes for out-of-memory condition (report by "eaglegai"). + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ncurses.spec ++++++ --- /var/tmp/diff_new_pack.hwYEYj/_old 2023-07-12 17:26:51.742323363 +0200 +++ /var/tmp/diff_new_pack.hwYEYj/_new 2023-07-12 17:26:51.746323386 +0200 @@ -424,9 +424,9 @@ test ! -f /.buildenv || . /.buildenv OPATH=$PATH %ifarch s390x s390 - FALLBK="unknown,dumb,xterm,ibm327x,vt100,vt102,vt220" + FALLBK="unknown,dumb,xterm,xterm-256color,ibm327x,ms-terminal,vt100,vt102,vt220" %else - FALLBK="unknown,dumb,xterm,linux,vt100,vt102,vt220" + FALLBK="unknown,dumb,xterm,xterm-256color,linux,ms-terminal,vt100,vt102,vt220" %endif CC=gcc CXX=g++ ++++++ ncurses-6.4-patches.tar.bz2 ++++++ ++++ 12269 lines of diff (skipped) ++++++ ncurses-6.4.dif ++++++ --- /var/tmp/diff_new_pack.hwYEYj/_old 2023-07-12 17:26:52.654328679 +0200 +++ /var/tmp/diff_new_pack.hwYEYj/_new 2023-07-12 17:26:52.658328702 +0200 @@ -366,11 +366,11 @@ scanf.3 scanf.3 ttys.5 ttys.4 --- man/ncurses.3x -+++ man/ncurses.3x 2023-01-23 13:00:47.039268881 +0000 -@@ -139,6 +139,10 @@ after the shell environment variable \fB ++++ man/ncurses.3x 2023-07-03 07:58:55.716619576 +0000 +@@ -136,6 +136,10 @@ after the shell environment variable \fB + \fB@TSET@(1)\fP is usually responsible for doing this. [See \fBterminfo\fP(\*n) for further details.] .SS Datatypes - .PP +Beware: the terminal your program is running may or may not have +the features you expect. Ncurses makes no attempt to check available +features in advance. This is upon the programmer.