Accepting request 1097901 from Base:System

Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/1097901
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ncurses?expand=0&rev=243
This commit is contained in:
Dominique Leuenberger 2023-07-12 15:26:39 +00:00 committed by Git OBS Bridge
parent aa863c786c
commit b5d11c73a9
4 changed files with 26 additions and 7 deletions

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f2c475c0bf0ea6d2d9d4e15f11beee31babae70d4f222edee380a21f82b2f26b
size 815379
oid sha256:267ecc41bbee74974fdfc0f9bd59a35168e38f8742bd576709895a7c111044d4
size 867179

View File

@ -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.

View File

@ -1,3 +1,22 @@
-------------------------------------------------------------------
Mon Jul 3 07:27:16 UTC 2023 - Dr. Werner Fink <werner@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 <werner@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").
-------------------------------------------------------------------
Mon Jun 19 07:43:18 UTC 2023 - Dr. Werner Fink <werner@suse.de>

View File

@ -424,9 +424,9 @@ export CFLAGS_SHARED
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++