commit ncurses for openSUSE:Factory

2020-10-30 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2020-10-30 11:45:39

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new.3463 (New)


Package is "ncurses"

Fri Oct 30 11:45:39 2020 rev:179 rq:844100 version:6.2.MACRO

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2020-10-22 
14:22:13.930747543 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new.3463/ncurses.changes
2020-10-30 11:45:42.573603285 +0100
@@ -1,0 +2,56 @@
+Mon Oct 26 12:31:53 UTC 2020 - Dr. Werner Fink 
+
+- Disable usage of libbsd as this one is not in bootstrap image 
+
+---
+Mon Oct 26 07:45:58 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20201024
+  + provide workaround configure-check for bool when cross-compiling.
+  + fix a potential indexing error in _nc_parse_entry(), seen with
+Herlim's test data using address-sanitizer.
+  + change a null-pointer check in set_curterm to a valid-string check,
+needed in to tic's use-resolution work pad_char is cancelled
+(report/testcase by Robert Sebastian Herlim)
+  + improve tic's -c option to validate the number and type of parameters
+and compare against expected number/type before deciding which set of
+parameter-lists to use in tparm calls (report/testcase by Robert
+Sebastian Herlim).
+  + fix a link for tabs.1 manpage in announce.html.in (report by Nick
+Black), as well as some fixes via linklint.
+- Update to tack 1.9 (patch 20200220)
+  * sysdep.c: gcc-warning
+  * tack.c: fix gcc warning for non-ncurses configuration
+  * init.c: zero-out the debug/log-pointers after closing them
+  * tack.1: add -d option, for debug.log
+  * output.c: use debug.log to record putp's and tput's which hint at
+the testing done
+  * sysdep.c: use debug.log to record when the tty is set/reset
+  * tack.h: split-out log_chr and log_str
+  * tack.c: add -d option, for debug.log
+  * tack.1, tack.c, tack.h: add -l option
+  * tack.c: eliminate a confusing comparison for the logging-menu-entry
+state by using #define'd strings for that and the hex-output menu.
+  * tack.c: use getopt
+  * fun.c, crum.c, edit.c:
+fix coverity warning about copying into fixed-size buffer
+  * tack.c: do a sanity-check on $TERM
+  * aclocal.m4: resync with my-autoconf
+  * configure: regen
+  * aclocal.m4: split-out CF__CURSES_DATA to simplify ifdef's
+  * configure: regen
+- Use libbsd which provides strlcpy as well as strlcat to avoid
+  reinvent common BSD standard and string functions
+- Let makedepend find standard header files even if not below /usr/include
+
+---
+Thu Oct 22 08:07:33 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20201017
+  + improve manpage typography.
+  + improve discussion in curs_addch.3x of the use of unctrl to display
+nonprintable characters.
+  + add a note in terminfo.5 explaining that no-parameter strings such
+as sgr0 or cnorm should not be used with tparm.
+
+---

Old:

  tack-1.09-20200202.tgz

New:

  tack-1.09-20200220.tgz



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.gLRMXK/_old  2020-10-30 11:45:43.621604213 +0100
+++ /var/tmp/diff_new_pack.gLRMXK/_new  2020-10-30 11:45:43.625604216 +0100
@@ -24,6 +24,7 @@
 %endif
 %bcond_with memleakck
 %bcond_without  onlytinfo
+%bcond_with libbsd
 
 %if %{with onlytinfo}
 %global soname_tinfo tinfo
@@ -42,6 +43,9 @@
 BuildRequires:  expect
 BuildRequires:  gcc-c++
 BuildRequires:  pkg-config
+%if %{with libbsd}
+BuildRequires:  pkgconfig(libbsd)
+%endif
 BuildRequires:  screen
 %if 0%{?suse_version} > 1130
 BuildRequires:  gpm-devel
@@ -73,7 +77,7 @@
 Source3:README.devel
 Source4:ncurses-rpmlintrc
 # Latest tack can be found at 
ftp://ftp.invisible-island.net/pub/ncurses/current/
-Source5:
ftp://ftp.invisible-island.net/pub/ncurses/current/tack-1.09-20200202.tgz
+Source5:
ftp://ftp.invisible-island.net/pub/ncurses/current/tack-1.09-20200220.tgz
 Source6:edit.sed
 Source7:baselibs.conf
 Patch0: ncurses-6.2.dif
@@ -397,6 +401,24 @@
 cflags -Wl,--hash-size=8599 LDFLAGS
 cflags -Wl,--as-needed  LDFLAGS
 CXXFLAGS=$CFLAGS
+CPPFLAGS=
+include=
+for header in stddef.h limits.h
+do
+   set -- $(echo '#include <'$header'>'|gcc -E -|sed -rn 
's@[^/]*"([a-z0-9/\._-]+)/'$header'".*@\1@p'| sort -u)
+   for found
+   do
+   case "$found" in
+   /usr/include*) continue ;;
+   esac

commit ncurses for openSUSE:Factory

2020-10-22 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2020-10-22 14:21:03

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new.3463 (New)


Package is "ncurses"

Thu Oct 22 14:21:03 2020 rev:178 rq:842479 version:6.2.MACRO

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2020-10-06 
17:10:29.569495280 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new.3463/ncurses.changes
2020-10-22 14:22:13.930747543 +0200
@@ -1,0 +2,42 @@
+Mon Oct 12 06:24:42 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20201010
+  + correct sgr in aaa+rv (report by Florian Weimer) -TD
+  + fix some sgr inconsistencies in d230c, ibm6153, ibm6154,
+ncrvt100an -TD
+  + improve tic's check for errors detected in tparm (prompted by
+discussion with Florian Weimer).
+  + set output-mode to binary in experimental Windows-10 driver (Juergen
+Pfeifer).
+
+---
+Tue Oct  6 07:41:30 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20201003
+  + remove output-related checks for nl/nonl (report by Leon Winter).
+  + change tmux's kbs to ^? (report by Premysl Eric Janouch)
+  + simplify mlterm initialization with DECSTR -TD
+  + fix a typo in man/curs_terminfo.3 (Reuben Thomas).
+  + add tmux-direct (tmux #2370)
+  + add user-defined capabilities from mintty to Caps-ncurses, for
+checking consistency with tic.
+
+---
+Mon Sep 28 06:59:48 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20200926
+  + correct configure-check for gnurx library.
+  + regenerate llib-* files.
+  + modify tracemunch and the panel library to show readable traces for
+panel- and user-pointers.
+
+---
+Tue Sep 22 08:22:49 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20200919
+  + update mlterm3 for 3.9.0 (report by Premysl Eric Janouch) -TD
+- Add ncurses patch 20200918
+  + corrected condition for appending curses.events to the generated
+curses.h (report by Sven Joachim, Debian #970545).
+
+---



Other differences:
--
++ ncurses-5.9-ibm327x.dif ++
--- /var/tmp/diff_new_pack.DqefVT/_old  2020-10-22 14:22:14.906748419 +0200
+++ /var/tmp/diff_new_pack.DqefVT/_new  2020-10-22 14:22:14.906748419 +0200
@@ -4,7 +4,7 @@
 
 --- misc/terminfo.src
 +++ misc/terminfo.src  2018-10-29 10:23:47.271511864 +
-@@ -17155,8 +17155,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
+@@ -17201,8 +17201,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
  #
  
  ibm327x|line mode IBM 3270 style,

++ ncurses-6.2-patches.tar.bz2 ++
 23746 lines of diff (skipped)

++ ncurses-6.2.dif ++
--- /var/tmp/diff_new_pack.DqefVT/_old  2020-10-22 14:22:15.622749062 +0200
+++ /var/tmp/diff_new_pack.DqefVT/_new  2020-10-22 14:22:15.622749062 +0200
@@ -338,7 +338,7 @@
  getty.1   getty.8
 --- man/ncurses.3x
 +++ man/ncurses.3x 2020-08-31 12:06:53.686411216 +
-@@ -140,6 +140,10 @@ after the shell environment variable \fB
+@@ -139,6 +139,10 @@ after the shell environment variable \fB
  [See \fBterminfo\fR(\*n) for further details.]
  .SS Datatypes
  .PP
@@ -496,7 +496,7 @@
ech=\E[%p1%dX, ed=\E[J, el=\E[K, el1=\E[1K, enacs=\E(B\E)0,
flash=\E[?5h$<100/>\E[?5l, home=\E[H, hpa=\E[%i%p1%dG,
ht=^I, hts=\EH, ich=\E[%p1%d@, ich1=\E[@, il=\E[%p1%dL,
-@@ -5160,8 +5173,26 @@ xterm-noapp|xterm with cursor keys in no
+@@ -5164,8 +5177,26 @@ xterm-noapp|xterm with cursor keys in no
  xterm-24|vs100|xterms|xterm terminal emulator (X Window System),
lines#24, use=xterm-old,
  
@@ -523,7 +523,7 @@
use=xterm-new,
  
  # This entry assumes that xterm's handling of VT100 SI/SO is disabled by
-@@ -5506,7 +5537,7 @@ xterms-sun|small (80x24) xterm with sunF
+@@ -5510,7 +5541,7 @@ xterms-sun|small (80x24) xterm with sunF
  
   GNOME (VTE)
  # this describes the alpha-version of Gnome terminal shipped with Redhat 6.0
@@ -532,7 +532,7 @@
bce,
kdch1=^?, kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS,
use=xterm-color,
-@@ -5757,10 +5788,14 @@ mgt|Multi GNOME Terminal,
+@@ -5761,10 +5792,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).
@@ -548,7 +548,7 @@
  # Konsole 1.0.1 (2001/11/25)
  # (formerly known as kvt)
  #
-@@ -5975,14 +6010,14 @@ mlterm3|multi lingual terminal emulator,
+@@ -6016,14 +6051,14 @@ mlterm3|multi lingual terminal emulator,
  mlterm2|multi lingual terminal 

commit ncurses for openSUSE:Factory

2020-10-06 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2020-10-06 17:08:35

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new.4249 (New)


Package is "ncurses"

Tue Oct  6 17:08:35 2020 rev:177 rq:836006 version:6.2.MACRO

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2020-08-04 
20:17:18.824898662 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new.4249/ncurses.changes
2020-10-06 17:10:29.569495280 +0200
@@ -1,0 +2,140 @@
+Tue Sep 15 07:51:09 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20200912
+  + add configure-check for systre/tre with mingw configuration, to get
+the library-dependencies as seen in msys2 configuration for mingw64.
+  + build-fixes for the win32-driver configuration.
+  + use more defensive binary mode setting for Win32 (Juergen Pfeifer).
+- Add ncurses patch 20200907
+  + fix regression in setupterm validating non-empty $TERM (report by
+Soren Tempel).
+- Add ncurses patch 20200906
+  + merge/adapt in-progress work by Juergen Pfeifer for new version of
+win32-driver.
+  + correct description of vt330/vt340 (Ross Combs).
+
+---
+Tue Sep  1 07:20:13 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20200831
+  + build-fix for awk-scripts modified for win32-driver (report by Werner
+Fink).
+- Drop workaround patch awk-scripts.patch as now upstream fixed
+
+---
+Mon Aug 31 13:56:18 UTC 2020 - Dr. Werner Fink 
+
+- Add patch awk-scripts.patch as workaround for patch 20200829
+
+---
+Mon Aug 31 08:47:56 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20200829
+  + remove a redundant NCURSES_EXPORT as a build-fix for "Maarten
+Anonymous".
+  + merge/adapt in-progress work by Juergen Pfeifer for new version of
+win32-driver.
+  + modify configure script, moving gcc -Werror options to EXTRA_CFLAGS
+to avoid breaking configure-checks (adapted from ongoing work on
+mawk and lynx).
+  > errate for terminfo.src (report by Florian Weimer):
+  + correct icl6404 csr
+  + correct ti916 cup
+  + improve ndr9500
+- Refresh patch ncurses-6.2.dif
+
+---
+Mon Aug 24 06:47:44 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20200822
+  + improve version-number extraction in MKlib_gen.sh
+  + make the test-package for manpages installable by adjusting the
+man_db.renames file.
+  + correct an off-by-one loop-limit in convert_strings function
+(report by Yue Tai).
+  + add CF_SHARED_OPTS cases for HPE NonStop systems (Randall S Becker).
+  + modify CF_SHARED_OPTS case for NetBSD to use the same "-shared"
+option for the non-rpath case as for the rpath case, to allow gcc to
+provide suitable runtime initialization (report by Rajeev V Pillai).
+
+---
+Wed Aug 19 06:43:29 UTC 2020 - Dr. Werner Fink 
+
+- Disable wgetch-events as it is deprecated and breaks build of
+  other packages
+
+---
+Tue Aug 18 06:44:15 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20200817
+  + reduce build-warnings by excluding ncurses-internals from deprecation
+warnings.
+  + mark wgetch-events feature as deprecated.
+  + add definition for $(LIBS) to ncurses/Makefile.in, to simplify builds
+using the string-hacks option.
+  + prevent KEY_EVENT from appearing in curses.h unless the configure
+option --enable-wgetch-events is used (report by Werner Fink).
+
+---
+Mon Aug 17 08:08:37 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20200816
+  + amend tic/infocmp check to allow for the respective tool's absence
+(report by Steve Wills, cf: 20200808).
+  + improved some of the build-scripts with shellcheck
+  + filter out -MT/-MD/-MTd/-MDd options in script for Visual Studio C++
+(discussion with "Maarten Anonymous").
+
+---
+Tue Aug 11 09:09:09 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20200808
+  + improve discussion of the system's tic utility when used as part
+of cross-compiling (discussion with Keith Marshall).
+  + modify configuration checks for build-time tic/infocmp to use
+AC_CHECK_TOOL. That can still be overridden by --with-tic-path and
+--with-infocmp-path when fallbacks are used, but even if not using
+fallbacks, the improved check may help with cross-compiling
+(discussion with Keith Marshall).
+  + other build-fixes for Ada95 

commit ncurses for openSUSE:Factory

2020-08-04 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2020-08-04 20:16:56

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new.3592 (New)


Package is "ncurses"

Tue Aug  4 20:16:56 2020 rev:176 rq:820866 version:6.2.MACRO

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2020-06-27 
23:20:53.909490524 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new.3592/ncurses.changes
2020-08-04 20:17:18.824898662 +0200
@@ -1,0 +2,35 @@
+Mon Jul 13 09:20:28 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20200711
+  + fix pound-sign mapping in acsc of linux2.6 entry (report by Ingo
+Bruckl).
+  + additional changes for building with Visual Studio C++ and msys2
+(reports/patches by "Maarten Anonymous")
+  + build-improvements for Windows 10 and MinGW (patch by Juergen
+Pfeifer).
+  + fix a typo in curs_printw.3x (patch by William Pursell).
+  + fix two errors in infotocap which allowed indexing outside the
+buffer (report/testcases by Zhang Gan).
+  + update length of strings in infocmp's usage function to restore a
+trailing null on the longest string (report/testcase by Zhang Gen).
+
+---
+Tue Jul  7 09:11:13 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20200704
+  + modify version-check with Ada generics to use the same pattern as in
+the check for supported gnat versions (report by Pascal Pignard).
+  > additional changes for building with Visual Studio C++ and msys2
+(patches by "Maarten Anonymous"):
+  + adjust headers/declarations to provide for "dllimport" vs "dllexport"
+declarations when constructing DLLs, to worko with Visual Studio C++.
+
+---
+Mon Jun 29 05:56:54 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20200627
+  + build-fixes for gnat 10.1.1, whose gnatmake drops integration with
+gprbuild.
+  + correct buffer-length in test/color_name.h
+
+---
@@ -8,0 +44,5 @@
+- Add ncurses patch 20200613
+  + update list of functions in ncurses.3x
+  + move dlclose() call from lib_mouse.c to delscreen() to avoid a case
+in the former which could be called from SIGTSTP handler (Debian
+#961097).
@@ -16,5 +55,0 @@
-- Add ncurses patch 20200613
-  + update list of functions in ncurses.3x
-  + move dlclose() call from lib_mouse.c to delscreen() to avoid a case
-in the former which could be called from SIGTSTP handler (Debian
-#961097).



Other differences:
--
++ ncurses-6.2-patches.tar.bz2 ++
 6215 lines of diff (skipped)

++ ncurses-6.2.dif ++
--- /var/tmp/diff_new_pack.XLomKF/_old  2020-08-04 20:17:20.344899587 +0200
+++ /var/tmp/diff_new_pack.XLomKF/_new  2020-08-04 20:17:20.344899587 +0200
@@ -429,8 +429,8 @@
  # Linux 2.6.x has a fix for SI/SO to work with UTF-8 encoding added here:
  # http://lkml.iu.edu/hypermail/linux/kernel/0602.2/0738.html
 @@ -1032,6 +1040,7 @@ linux2.6|linux 2.6.x console,
-   acsc=++\,\,--..00__``aaffgghhiijjkkllmmnnooppqqrrssttuuvvwwx
-xyyzz{{||}c~~,
+   acsc=++\,\,--..00``aaffgghhiijjkkllmmnnooppqqrrssttuuvvwwxxy
+yzz{{||}}~~,
enacs=\E)0, rmacs=^O,
 +  cvvis=\E[?25h\E[?8c,
sgr=\E[0;10%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p5
@@ -846,7 +846,7 @@
  #include 
  
  #include 
-@@ -105,6 +109,30 @@ _nc_basename(char *path)
+@@ -111,6 +115,30 @@ _nc_basename(char *path)
  return path + _nc_pathlast(path);
  }
  
@@ -955,9 +955,9 @@
  }
  if (copied != 0)
 --- progs/Makefile.in
-+++ progs/Makefile.in  2020-03-09 09:17:28.753300070 +
-@@ -101,7 +101,7 @@ CFLAGS_LIBTOOL = $(CCFLAGS)
- CFLAGS_NORMAL = $(CCFLAGS)
 progs/Makefile.in  2020-07-07 09:13:53.548391492 +
+@@ -101,7 +101,7 @@ CFLAGS_LIBTOOL = $(CCFLAGS) -DNCURSES_ST
+ CFLAGS_NORMAL = $(CCFLAGS) -DNCURSES_STATIC
  CFLAGS_DEBUG  = $(CCFLAGS) @CC_G_OPT@ -DTRACE
  CFLAGS_PROFILE= $(CCFLAGS) -pg
 -CFLAGS_SHARED = $(CCFLAGS) @CC_SHARED_OPTS@
@@ -976,7 +976,7 @@
  
 --- test/test.priv.h
 +++ test/test.priv.h   2020-03-09 09:17:28.753300070 +
-@@ -994,12 +994,12 @@ extern char *_nc_strstr(const char *, co
+@@ -1001,12 +1001,12 @@ extern char *_nc_strstr(const char *, co
  #endif
  
  /* out-of-band values for representing absent capabilities */




commit ncurses for openSUSE:Factory

2020-06-27 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2020-06-27 23:20:43

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new.3060 (New)


Package is "ncurses"

Sat Jun 27 23:20:43 2020 rev:175 rq:816433 version:6.2.MACRO

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2020-06-11 
14:40:51.844639256 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new.3060/ncurses.changes
2020-06-27 23:20:53.909490524 +0200
@@ -1,0 +2,21 @@
+Mon Jun 22 16:58:17 UTC 2020 - Dr. Werner Fink 
+
+- Run ldconfig local on %buildroot %_lib to get links done (boo#1173222)
+
+---
+Mon Jun 15 11:05:42 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20200606
+  + add xterm+256color2, xterm+88color2, to deprecate nonstandard usage 
+in xterm+256color, xterm+88color -TD
+  + add shifted Linux console keys in linux+sfkeys entry for
+screen.linux (report by Alexandre Montaron).
+  + use vt100+enq in screen (report by Alexandre Montaron).
+  + add screen.linux-s alias (suggested by Alexandre Montaron).
+- Add ncurses patch 20200613
+  + update list of functions in ncurses.3x
+  + move dlclose() call from lib_mouse.c to delscreen() to avoid a case
+in the former which could be called from SIGTSTP handler (Debian
+#961097).
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.ulFku7/_old  2020-06-27 23:20:54.941493918 +0200
+++ /var/tmp/diff_new_pack.ulFku7/_new  2020-06-27 23:20:54.945493930 +0200
@@ -873,6 +873,7 @@
esac
done
 done
+/sbin/ldconfig -r %{buildroot}/ -n -v /%{_lib}
 %if 0
 lnk=%{buildroot}%{_libdir}/libtermcap.so
 echo '/* GNU ld script */' >  ${lnk}

++ ncurses-5.9-ibm327x.dif ++
--- /var/tmp/diff_new_pack.ulFku7/_old  2020-06-27 23:20:55.017494168 +0200
+++ /var/tmp/diff_new_pack.ulFku7/_new  2020-06-27 23:20:55.017494168 +0200
@@ -4,7 +4,7 @@
 
 --- misc/terminfo.src
 +++ misc/terminfo.src  2018-10-29 10:23:47.271511864 +
-@@ -17124,8 +17124,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
+@@ -17155,8 +17155,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
  #
  
  ibm327x|line mode IBM 3270 style,

++ ncurses-6.2-patches.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/patches/ncurses-6.2-20200606.patch 
new/patches/ncurses-6.2-20200606.patch
--- old/patches/ncurses-6.2-20200606.patch  1970-01-01 01:00:00.0 
+0100
+++ new/patches/ncurses-6.2-20200606.patch  2020-06-15 13:01:18.234151998 
+0200
@@ -0,0 +1,333 @@
+# ncurses 6.2 - patch 20200606 - Thomas E. Dickey
+#
+# 
--
+#
+# Ncurses 6.2 is at
+#  ftp.gnu.org:/pub/gnu
+#
+# Patches for ncurses 6.2 can be found at
+#  ftp://ftp.invisible-island.net/ncurses/6.2
+#  http://invisible-mirror.net/archives/ncurses/6.2 
+#
+# 
--
+# ftp://ftp.invisible-island.net/ncurses/6.2/ncurses-6.2-20200606.patch.gz
+# patch by Thomas E. Dickey 
+# created  Sun Jun  7 01:06:32 UTC 2020
+# 
--
+# NEWS |   10 +
+# VERSION  |2 -
+# dist.mk  |4 +-
+# misc/terminfo.src|   63 +
+# package/debian-mingw/changelog   |4 +-
+# package/debian-mingw64/changelog |4 +-
+# package/debian/changelog |4 +-
+# package/mingw-ncurses.nsi|4 +-
+# package/mingw-ncurses.spec   |2 -
+# package/ncurses.spec |2 -
+# package/ncursest.spec|2 -
+# 11 files changed, 74 insertions(+), 27 deletions(-)
+# 
--
+Index: NEWS
+Prereq:  1.3502 
+--- ncurses-6.2-20200531+/NEWS 2020-05-31 19:41:31.0 +
 ncurses-6.2-20200606/NEWS  2020-06-07 00:22:03.0 +
+@@ -26,7 +26,7 @@
+ -- sale, use or other dealings in this Software without prior written
--
+ -- authorization.
--
+ 
---
+--- $Id: NEWS,v 1.3502 2020/05/31 19:41:31 tom Exp $
++-- $Id: NEWS,v 1.3504 2020/06/07 00:22:03 tom Exp $
+ 
---
+ 
+ This is a log 

commit ncurses for openSUSE:Factory

2020-06-11 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2020-06-11 14:39:36

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new.3606 (New)


Package is "ncurses"

Thu Jun 11 14:39:36 2020 rev:174 rq:810717 version:6.2.MACRO

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2020-05-11 
13:25:42.963150744 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new.3606/ncurses.changes
2020-06-11 14:40:51.844639256 +0200
@@ -1,0 +2,54 @@
+Tue Jun  2 06:24:20 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20200531
+  + correct configure version-check/warnng for g++ to allow for 10.x
+  + re-enable "bel" in konsole-base (report by Nia Huang)
+  + add linux-s entry (patch by Alexandre Montaron).
+  + drop long-obsolete convert_configure.pl 
+  + add test/test_parm.c, for checking tparm changes.
+  + improve parameter-checking for tparm, adding function _nc_tiparm() to
+handle the most-used case, which accepts only numeric parameters
+(report/testcase by "puppet-meteor").
+  + use a more conservative estimate of the buffer-size in lib_tparm.c's
+save_text() and save_number(), in case the sprintf() function
+passes-through unexpected characters from a format specifier
+(report/testcase by "puppet-meteor").
+  + add a check for end-of-string in cvtchar to handle a malformed
+string in infotocap (report/testcase by "puppet-meteor").
+
+---
+Mon May 25 07:11:21 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20200523
+  + update version-check for gnat to allow for gnat 10.x to 99.x
+  + fix an uninitialized variable in lib_mouse.c changes (cf: 20200502)
+  + add a check in EmitRange to guard against repeat_char emitting digits
+which could be interpreted as BSD-style padding when --enable-bsdpad 
+is configured (report/patch by Hiltjo Posthuma).
+  + add --disable-pkg-ldflags to suppress EXTRA_LDFLAGS from the
+generated pkg-config and ncurses*-config files, to simplify
+configuring in the case where rpath is used but the packager wants
+to hide the feature (report by Michael Stapelberg).
+  > fixes for building with Visual Studio C++ and msys2 (patches by
+"Maarten Anonymous"):
+  + modify CF_SHARED_OPTS to generate a script which translates linker
+options into Visual Studio's dialect.
+  + omit parentheses around function-names in generated lib_gen.c to
+
+---
+Mon May 18 15:01:22 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20200516
+  + add notes on termcap.h header in curs_termcap.3x
+  + update notes on vscode / xterm.js -TD
+
+---
+Mon May 11 07:56:31 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20200509
+  + add "-r" option to the dots test-programs, to help with scripting
+a performance comparison.
+  + build-fix test/move_field.c for NetBSD curses, whose form headers
+use different names than SVr4 or ncurses.
+
+---



Other differences:
--
++ ncurses-5.9-ibm327x.dif ++
--- /var/tmp/diff_new_pack.7ze3D4/_old  2020-06-11 14:40:52.544641334 +0200
+++ /var/tmp/diff_new_pack.7ze3D4/_new  2020-06-11 14:40:52.544641334 +0200
@@ -4,7 +4,7 @@
 
 --- misc/terminfo.src
 +++ misc/terminfo.src  2018-10-29 10:23:47.271511864 +
-@@ -17104,8 +17104,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
+@@ -17124,8 +17124,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
  #
  
  ibm327x|line mode IBM 3270 style,

++ ncurses-6.2-patches.tar.bz2 ++
 34824 lines of diff (skipped)

++ ncurses-6.2.dif ++
--- /var/tmp/diff_new_pack.7ze3D4/_old  2020-06-11 14:40:52.892642367 +0200
+++ /var/tmp/diff_new_pack.7ze3D4/_new  2020-06-11 14:40:52.896642379 +0200
@@ -151,7 +151,7 @@
  done
 --- configure
 +++ configure  2020-03-09 09:17:28.749300145 +
-@@ -5620,7 +5620,7 @@ echo $ECHO_N "checking for an rpath opti
+@@ -5621,7 +5621,7 @@ echo $ECHO_N "checking for an rpath opti
fi
;;
(linux*|gnu*|k*bsd*-gnu|freebsd*)
@@ -160,7 +160,7 @@
;;
(openbsd[2-9].*|mirbsd*)
LD_RPATH_OPT="-Wl,-rpath,"
-@@ -14124,12 +14124,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
-@@ -14254,9 +14257,9 @@ cat >>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <\E[?5l, hpa=\E[%i%p1%dG,

commit ncurses for openSUSE:Factory

2020-05-11 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2020-05-11 13:25:39

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new.2738 (New)


Package is "ncurses"

Mon May 11 13:25:39 2020 rev:173 rq:799983 version:6.2.MACRO

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2020-04-25 
20:08:43.643597604 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new.2738/ncurses.changes
2020-05-11 13:25:42.963150744 +0200
@@ -1,0 +2,16 @@
+Mon May  4 06:35:31 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20200502
+  + add details on the change to Linux SGR 21 in 2018 -TD
+  + add xterm-direct16 and xterm-direct256 -TD
+  + modify lib_mouse.c to check for out-of-range button numbers, convert
+those to position reports.
+
+---
+Mon Apr 27 08:55:40 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20200425
+  + use vt100+fnkeys in putty -TD
+  + fix a typo in tput.1; "columns" should be "cols".
+
+---



Other differences:
--
++ ncurses-5.9-ibm327x.dif ++
--- /var/tmp/diff_new_pack.Hv8lW2/_old  2020-05-11 13:25:44.027152974 +0200
+++ /var/tmp/diff_new_pack.Hv8lW2/_new  2020-05-11 13:25:44.027152974 +0200
@@ -4,7 +4,7 @@
 
 --- misc/terminfo.src
 +++ misc/terminfo.src  2018-10-29 10:23:47.271511864 +
-@@ -17058,8 +17058,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
+@@ -17104,8 +17104,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
  #
  
  ibm327x|line mode IBM 3270 style,

++ ncurses-6.2-patches.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/patches/ncurses-6.2-20200425.patch 
new/patches/ncurses-6.2-20200425.patch
--- old/patches/ncurses-6.2-20200425.patch  1970-01-01 01:00:00.0 
+0100
+++ new/patches/ncurses-6.2-20200425.patch  2020-04-27 10:54:39.082156132 
+0200
@@ -0,0 +1,531 @@
+# ncurses 6.2 - patch 20200425 - Thomas E. Dickey
+#
+# 
--
+#
+# Ncurses 6.2 is at
+#  ftp.gnu.org:/pub/gnu
+#
+# Patches for ncurses 6.2 can be found at
+#  ftp://ftp.invisible-island.net/ncurses/6.2
+#  http://invisible-mirror.net/archives/ncurses/6.2 
+#
+# 
--
+# ftp://ftp.invisible-island.net/ncurses/6.2/ncurses-6.2-20200425.patch.gz
+# patch by Thomas E. Dickey 
+# created  Sun Apr 26 01:15:23 UTC 2020
+# 
--
+# NEWS  |6 
+# VERSION   |2 -
+# dist.mk   |4 +--
+# doc/html/man/adacurses6-config.1.html |2 -
+# doc/html/man/captoinfo.1m.html|2 -
+# doc/html/man/clear.1.html |2 -
+# doc/html/man/curs_variables.3x.html   |2 -
+# doc/html/man/form.3x.html |2 -
+# doc/html/man/infocmp.1m.html  |2 -
+# doc/html/man/infotocap.1m.html|2 -
+# doc/html/man/menu.3x.html |2 -
+# doc/html/man/ncurses.3x.html  |2 -
+# doc/html/man/ncurses6-config.1.html   |2 -
+# doc/html/man/panel.3x.html|2 -
+# doc/html/man/tabs.1.html  |2 -
+# doc/html/man/terminfo.5.html  |2 -
+# doc/html/man/tic.1m.html  |2 -
+# doc/html/man/toe.1m.html  |2 -
+# doc/html/man/tput.1.html  |8 +++---
+# doc/html/man/tset.1.html  |2 -
+# man/tput.1|4 +--
+# misc/terminfo.src |   39 +++-
+# package/debian-mingw/changelog|4 +--
+# package/debian-mingw64/changelog  |4 +--
+# package/debian/changelog  |4 +--
+# package/mingw-ncurses.nsi |4 +--
+# package/mingw-ncurses.spec|2 -
+# package/ncurses.spec  |2 -
+# package/ncursest.spec |2 -
+# 29 files changed, 65 insertions(+), 52 deletions(-)
+# 
--
+Index: NEWS
+Prereq:  1.3477 
+--- ncurses-6.2-20200418+/NEWS 2020-04-18 23:57:32.0 +
 ncurses-6.2-20200425/NEWS  2020-04-26 00:40:38.0 +
+@@ -26,7 +26,7 @@
+ -- sale, use or other dealings in this Software without prior written
--
+ -- authorization.
--
+ 

commit ncurses for openSUSE:Factory

2020-04-25 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2020-04-25 20:08:32

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new.2738 (New)


Package is "ncurses"

Sat Apr 25 20:08:32 2020 rev:172 rq:795662 version:6.2.MACRO

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2020-04-19 
21:34:57.966330346 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new.2738/ncurses.changes
2020-04-25 20:08:43.643597604 +0200
@@ -1,0 +2,16 @@
+Mon Apr 20 06:39:46 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20200418
+  + improve tracemunch logic for "RUN" compaction.
+  + fix a special case in wresize() where copying the old text did not
+check if the last cell on a row was the beginning of a fullwidth
+character (adapted from patch by Benno Schulenberg).
+  + use vt52+keypad in xterm-vt52, from xterm #354 -TD
+  + improve see-also section of user_caps.5
+- Add ncurses patch 20200411
+  + fix find_pair(), overlooked when refactoring for _nc_reserve_pairs()
+(report/testcase by Brad Town, cf: 20170812).
+  + add a trailing null for magic-string in putwin, flagged by gcc 10
+  + update check for gcc version versus gnat to work with gcc 10.x
+
+---



Other differences:
--
++ ncurses-6.2-patches.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/patches/ncurses-6.2-20200411.patch 
new/patches/ncurses-6.2-20200411.patch
--- old/patches/ncurses-6.2-20200411.patch  1970-01-01 01:00:00.0 
+0100
+++ new/patches/ncurses-6.2-20200411.patch  2020-04-20 08:35:27.274275457 
+0200
@@ -0,0 +1,300 @@
+# ncurses 6.2 - patch 20200411 - Thomas E. Dickey
+#
+# 
--
+#
+# Ncurses 6.2 is at
+#  ftp.gnu.org:/pub/gnu
+#
+# Patches for ncurses 6.2 can be found at
+#  ftp://ftp.invisible-island.net/ncurses/6.2
+#  http://invisible-mirror.net/archives/ncurses/6.2 
+#
+# 
--
+# ftp://ftp.invisible-island.net/ncurses/6.2/ncurses-6.2-20200411.patch.gz
+# patch by Thomas E. Dickey 
+# created  Sun Apr 12 01:22:49 UTC 2020
+# 
--
+# NEWS |8 +++-
+# VERSION  |2 +-
+# configure|2 +-
+# dist.mk  |4 ++--
+# ncurses/base/lib_screen.c|4 ++--
+# ncurses/base/new_pair.c  |   23 +++
+# ncurses/new_pair.h   |5 ++---
+# package/debian-mingw/changelog   |4 ++--
+# package/debian-mingw64/changelog |4 ++--
+# package/debian/changelog |4 ++--
+# package/mingw-ncurses.nsi|4 ++--
+# package/mingw-ncurses.spec   |2 +-
+# package/ncurses.spec |2 +-
+# package/ncursest.spec|2 +-
+# 14 files changed, 41 insertions(+), 29 deletions(-)
+# 
--
+Index: NEWS
+Prereq:  1.3471 
+--- ncurses-6.2-20200404+/NEWS 2020-04-04 21:07:47.0 +
 ncurses-6.2-20200411/NEWS  2020-04-11 17:01:12.0 +
+@@ -26,7 +26,7 @@
+ -- sale, use or other dealings in this Software without prior written
--
+ -- authorization.
--
+ 
---
+--- $Id: NEWS,v 1.3471 2020/04/04 21:07:47 tom Exp $
++-- $Id: NEWS,v 1.3475 2020/04/11 17:01:12 tom Exp $
+ 
---
+ 
+ This is a log of changes that ncurses has gone through since Zeyd started
+@@ -46,6 +46,12 @@
+ Changes through 1.9.9e did not credit all contributions;
+ it is not possible to add this information.
+ 
++20200411
++  + fix find_pair(), overlooked when refactoring for _nc_reserve_pairs()
++(report/testcase by Brad Town, cf: 20170812).
++  + add a trailing null for magic-string in putwin, flagged by gcc 10
++  + update check for gcc version versus gnat to work with gcc 10.x
++
+ 20200404
+   + modify -fvisibility check to work with g++
+   > fixes for building with Visual Studio C++ and msys2 (patches by
+Index: VERSION
+--- ncurses-6.2-20200404+/VERSION  2020-04-04 09:17:00.0 +
 ncurses-6.2-20200411/VERSION   2020-04-11 13:11:52.0 +
+@@ -1 +1 @@
+-5:0:106.2 20200404
++5:0:10   

commit ncurses for openSUSE:Factory

2020-04-19 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2020-04-19 21:34:50

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new.2738 (New)


Package is "ncurses"

Sun Apr 19 21:34:50 2020 rev:171 rq:793801 version:6.2.MACRO

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2020-04-10 
23:52:33.656668354 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new.2738/ncurses.changes
2020-04-19 21:34:57.966330346 +0200
@@ -1,0 +2,5 @@
+Tue Apr  7 08:42:40 UTC 2020 - Dr. Werner Fink 
+
+- Add check for wide character support in libncursesw 
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.hq83j8/_old  2020-04-19 21:34:58.702331864 +0200
+++ /var/tmp/diff_new_pack.hq83j8/_new  2020-04-19 21:34:58.706331871 +0200
@@ -1062,6 +1062,7 @@
 %check
 LD_LIBRARY_PATH=%{buildroot}/%{_lib}:%{buildroot}%{_libdir}
 export LD_LIBRARY_PATH
+nm -D %{buildroot}/%{_lib}/libncursesw.so.%{basevers} | grep -q in_wch
 %if %{with onlytinfo}
 nm -D %{buildroot}/%{_lib}/libtinfo.so.%{basevers} | grep -q _nc_read_entry2
 %endif




commit ncurses for openSUSE:Factory

2020-04-10 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2020-04-10 23:52:22

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new.3248 (New)


Package is "ncurses"

Fri Apr 10 23:52:22 2020 rev:170 rq:791735 version:6.2.MACRO

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2020-04-04 
12:04:01.038552900 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new.3248/ncurses.changes
2020-04-10 23:52:33.656668354 +0200
@@ -1,0 +2,28 @@
+Mon Apr  6 10:31:47 UTC 2020 - Dr. Werner Fink 
+
+- Use %() to extract patch date for adding it to version 
+  * add script get_version_number.sh which is used within the
+spec file to determine the actual patch version date
+
+---
+Mon Apr  6 06:50:14 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20200404
+  + modify -fvisibility check to work with g++
+  > fixes for building with Visual Studio C++ and msys2 (patches by
+"Maarten Anonymous"):
+  + add configure option and check for gcc -fvisibility=hidden feature
+  + define NCURSES_NOMACROS in lib_gen.c to work around Visual Studio
+C++ preprocessor limitations.
+  + modify some of the configure-macros, as well as mk-1st.awk to work
+with Visual Studio C++ default filenaming.
+
+---
+Mon Mar 30 12:10:47 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20200328
+  + correct length of buffer copied in dup_field().
+  + remove "$(srcdir)/" from path of library.gpr, needed for out-of-tree
+builds of Ada95 (patch by Adam Van Ymeren).
+
+---

New:

  get_version_number.sh



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.lijZHL/_old  2020-04-10 23:52:34.672669099 +0200
+++ /var/tmp/diff_new_pack.lijZHL/_new  2020-04-10 23:52:34.688669111 +0200
@@ -31,6 +31,9 @@
 %global soname_tinfo tinfow
 %endif
 
+%define patchlvl %(bash %{_sourcedir}/get_version_number.sh %{_sourcedir})
+%define basevers 6.2
+
 Name:   ncurses
 #!BuildIgnore: terminfo
 %if %{with hasheddb}
@@ -56,7 +59,7 @@
 # but also build the ABI version 5 as this is part of the source
 # tar ball including the latest upstream fixes for ABI 5.
 #
-Version:6.2
+Version:6.2.%{patchlvl}
 Release:0
 Summary:Terminal control library
 #Git:   http://ncurses.scripts.mit.edu
@@ -292,7 +295,7 @@
 incoming data stream.
 
 %prep
-%setup -q
+%setup -q -n %{name}-%{basevers}
 tar -xjf %{S:1}
 set +x
 for patch in patches/ncurses*.patch
@@ -591,9 +594,9 @@
 %if %{with onlytinfo}
 # This ensures that we get the libtinfo *with* _nc_read_entry2 symbol as 
well
 gcc $CFLAGS $LDFLAGS -fPIC -shared 
-Wl,--auxiliary=libtinfo.so.6,-soname,libtinfow.so.6,-stats,-lc \
--Wl,--version-script,ncurses/resulting.map -o 
%{root}%{_libdir}/libtinfow.so.%{version}
-cp -p %{root}%{_libdir}/libtinfo.so.%{version}  libtinfo.so.%{version}.back
-cp -p %{root}%{_libdir}/libtinfow.so.%{version} 
libtinfow.so.%{version}.back
+-Wl,--version-script,ncurses/resulting.map -o 
%{root}%{_libdir}/libtinfow.so.%{basevers}
+cp -p %{root}%{_libdir}/libtinfo.so.%{basevers}  
libtinfo.so.%{basevers}.back
+cp -p %{root}%{_libdir}/libtinfow.so.%{basevers} 
libtinfow.so.%{basevers}.back
 %endif
 ln -sf %{_incdir}/ncurses/{curses,ncurses,term,termcap}.h %{root}%{_incdir}
 mkdir pc
@@ -739,8 +742,8 @@
 make install.libs install.includes DESTDIR=%{root} includedir=%{_incdir} 
includesubdir=/ncurses libdir=%{_libdir}
 %if %{with onlytinfo}
 # This ensures that we get the libtinfo *with* _nc_read_entry2 symbol as 
well
-cp -p libtinfo.so.%{version}.back  %{root}%{_libdir}/libtinfo.so.%{version}
-cp -p libtinfow.so.%{version}.back 
%{root}%{_libdir}/libtinfow.so.%{version}
+cp -p libtinfo.so.%{basevers}.back  
%{root}%{_libdir}/libtinfo.so.%{basevers}
+cp -p libtinfow.so.%{basevers}.back 
%{root}%{_libdir}/libtinfow.so.%{basevers}
 %endif
 pushd man
sh ../edit_man.sh normal installing %{root}%{_mandir} . 
ncurses6-config.1
@@ -1060,7 +1063,7 @@
 LD_LIBRARY_PATH=%{buildroot}/%{_lib}:%{buildroot}%{_libdir}
 export LD_LIBRARY_PATH
 %if %{with onlytinfo}
-nm -D %{buildroot}/%{_lib}/libtinfo.so.%{version} | grep -q _nc_read_entry2
+nm -D %{buildroot}/%{_lib}/libtinfo.so.%{basevers} | grep -q _nc_read_entry2
 %endif
 %if 0%{?suse_version} > 1500
 pushd test

++ get_version_number.sh ++
#!/bin/bash
# Note: this file is used in the spec file, do not remove it
sourcedir=$1
test -n "${sourcedir}" || 

commit ncurses for openSUSE:Factory

2020-04-04 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2020-04-04 12:03:46

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new.3248 (New)


Package is "ncurses"

Sat Apr  4 12:03:46 2020 rev:169 rq:789684 version:6.2

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2020-03-14 
09:53:44.391039644 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new.3248/ncurses.changes
2020-04-04 12:04:01.038552900 +0200
@@ -1,0 +2,18 @@
+Mon Mar 23 08:19:29 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20200321
+  + improve configure-checks to reduce warnings about unused variables.
+  + improve description of error-returns in waddch and waddnstr manual
+pages (prompted by patch by Benno Schulenberg).
+  + add test/move_field.c to demonstrate move_field(), and a stub for
+a corresponding demo of dup_field().
+
+---
+Mon Mar 16 09:21:16 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20200314
+  + add history note to curs_scanw.3x for  and 
+  + add history note to curs_printw.3x for  and 
+  + add portability note to ncurses.3x regarding 
+
+---



Other differences:
--
++ ncurses-6.2-patches.tar.bz2 ++
 24567 lines of diff (skipped)

++ ncurses-6.2.dif ++
--- /var/tmp/diff_new_pack.TUP8RJ/_old  2020-04-04 12:04:02.514554453 +0200
+++ /var/tmp/diff_new_pack.TUP8RJ/_new  2020-04-04 12:04:02.518554458 +0200
@@ -31,7 +31,7 @@
  #include 
  
  #if defined(__cplusplus)
-@@ -5320,12 +5320,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
-@@ -5450,9 +5453,9 @@ 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 <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <\$TMP
  CF_EOF
  if test -n "$cf_compress" ; then
-@@ -14233,9 +14236,9 @@ cat >>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <

commit ncurses for openSUSE:Factory

2020-03-14 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2020-03-14 09:53:42

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new.3160 (New)


Package is "ncurses"

Sat Mar 14 09:53:42 2020 rev:168 rq:782927 version:6.2

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2020-03-05 
23:16:45.373125452 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new.3160/ncurses.changes
2020-03-14 09:53:44.391039644 +0100
@@ -1,0 +2,39 @@
+Mon Mar  9 09:16:31 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20200308
+  + update copyright notices in test-packages.
+  + modify tracemunch to guard against errors in its known_p1 table.
+  + add several --with-xxx-libname options, to help with pkgsrc (prompted
+by discussion with Thomas Klausner).
+
+---
+Tue Mar  3 08:15:34 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20200301
+  + modify wbkgd() and wbkgrnd() to avoid storing a null in the
+background character, because it may be used in cases where the
+corresponding 0x80 is not treated as a null (report by Marc Rechte,
+cf: 20181208).
+
+---
+Sun Mar  1 08:26:26 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20200229
+  + modify CF_NCURSES_CONFIG to work around xcode's c99 "-W" option,
+which conflicts with conventional use for passing linker options.
+  > fixes for building with Visual Studio C++ and msys2 (patches by
+"Maarten Anonymous"):
+  + check for pcre2posix.h instead of pcre2-posix.h
+  + add case in CF_SHARED_OPTS for msys2 + msvc
+  + add fallback definition for STDIN_FILENO in progs.priv.h
+  + modify win_driver.c to use _alloca() rather than gcc's variable
+length array feature.
+  + add NCURSES_IMPEXP to ncurses wrapped-variable declarations
+  + remove NCURSES_IMPEXP from class variables in c++/cursslk.h
+  + remove fallback prototype for exit() from c++/etip.h.in
+  + use configured check for  in a couple of places
+  + conditionally include winsock.h in ncurses/win32con/gettimeofday.c,
+because Visual Studio needs this for the timestruct declaration.
+  + adjust syntax in a couple of files using the NCURSES_API symbol.
+
+---



Other differences:
--
++ ncurses-6.2-patches.tar.bz2 ++
 56085 lines of diff (skipped)

++ ncurses-6.2.dif ++
--- /var/tmp/diff_new_pack.AIFl95/_old  2020-03-14 09:53:45.995040821 +0100
+++ /var/tmp/diff_new_pack.AIFl95/_new  2020-03-14 09:53:45.995040821 +0100
@@ -21,7 +21,7 @@
  19 files changed, 248 insertions(+), 77 deletions(-)
 
 --- aclocal.m4
-+++ aclocal.m4 2020-02-12 11:05:15.034837378 +
 aclocal.m4 2020-03-09 09:17:28.745300221 +
 @@ -583,7 +583,7 @@ AC_MSG_CHECKING([for size of bool])
  AC_CACHE_VAL(cf_cv_type_of_bool,[
rm -f cf_test.out
@@ -31,7 +31,7 @@
  #include 
  
  #if defined(__cplusplus)
-@@ -5313,12 +5313,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
-@@ -5443,9 +5446,9 @@ 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 <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <\$TMP
  CF_EOF
  if test -n "$cf_compress" ; then
-@@ -14198,9 +14201,9 @@ cat >>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man 

commit ncurses for openSUSE:Factory

2020-03-05 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2020-03-05 23:16:30

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new.26092 (New)


Package is "ncurses"

Thu Mar  5 23:16:30 2020 rev:167 rq:780858 version:6.2

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2020-02-21 
16:40:31.305812909 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new.26092/ncurses.changes   
2020-03-05 23:16:45.373125452 +0100
@@ -1,0 +2,13 @@
+Mon Feb 24 08:56:07 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20200222
+  + expanded note in ncurses.3x regarding automatically-included headers
+  + improve vt50h and vt52 based on DECScope manual -TD
+  + add/use vt52+keypad and vt52-basic -TD
+  + check/workaround for line-too-long in Ada95 generate utility when
+building out-of-tree.
+  + improve/update HEADER_DEPS in */Makefile.in
+  + add "check" rule to include/Makefile, to demonstrate that the headers
+include all of the required headers for the types used.
+
+---



Other differences:
--
++ ncurses-5.9-ibm327x.dif ++
--- /var/tmp/diff_new_pack.ypqphC/_old  2020-03-05 23:16:46.873126301 +0100
+++ /var/tmp/diff_new_pack.ypqphC/_new  2020-03-05 23:16:46.873126301 +0100
@@ -4,7 +4,7 @@
 
 --- misc/terminfo.src
 +++ misc/terminfo.src  2018-10-29 10:23:47.271511864 +
-@@ -17051,8 +17051,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
+@@ -17058,8 +17058,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
  #
  
  ibm327x|line mode IBM 3270 style,

++ ncurses-6.2-patches.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/patches/ncurses-6.2-20200222.patch 
new/patches/ncurses-6.2-20200222.patch
--- old/patches/ncurses-6.2-20200222.patch  1970-01-01 01:00:00.0 
+0100
+++ new/patches/ncurses-6.2-20200222.patch  2020-02-24 09:53:34.025977613 
+0100
@@ -0,0 +1,1202 @@
+# ncurses 6.2 - patch 20200222 - Thomas E. Dickey
+#
+# 
--
+#
+# Ncurses 6.2 is at
+#  ftp.gnu.org:/pub/gnu
+#
+# Patches for ncurses 6.2 can be found at
+#  ftp://ftp.invisible-island.net/ncurses/6.2
+#  http://invisible-mirror.net/archives/ncurses/6.2 
+#
+# 
--
+# ftp://ftp.invisible-island.net/ncurses/6.2/ncurses-6.2-20200222.patch.gz
+# patch by Thomas E. Dickey 
+# created  Sun Feb 23 02:26:40 UTC 2020
+# 
--
+# Ada95/gen/gen.c   |   15 ++-
+# NEWS  |   12 ++
+# VERSION   |2 
+# c++/Makefile.in   |   40 +
+# dist.mk   |4 
+# doc/html/man/adacurses6-config.1.html |2 
+# doc/html/man/captoinfo.1m.html|2 
+# doc/html/man/clear.1.html |2 
+# doc/html/man/form.3x.html |2 
+# doc/html/man/infocmp.1m.html  |2 
+# doc/html/man/infotocap.1m.html|2 
+# doc/html/man/menu.3x.html |2 
+# doc/html/man/ncurses.3x.html  |  131 ++--
+# doc/html/man/ncurses6-config.1.html   |2 
+# doc/html/man/panel.3x.html|2 
+# doc/html/man/tabs.1.html  |2 
+# doc/html/man/terminfo.5.html  |2 
+# doc/html/man/tic.1m.html  |2 
+# doc/html/man/toe.1m.html  |2 
+# doc/html/man/tput.1.html  |2 
+# doc/html/man/tset.1.html  |2 
+# form/Makefile.in  |   27 +-
+# include/Makefile.in   |   19 
+# man/ncurses.3x|   85 
+# menu/Makefile.in  |   23 -
+# misc/terminfo.src |   81 ++-
+# ncurses/Makefile.in   |   19 ++--
+# package/debian-mingw/changelog|4 
+# package/debian-mingw64/changelog  |4 
+# package/debian/changelog  |4 
+# package/mingw-ncurses.nsi |4 
+# package/mingw-ncurses.spec|2 
+# package/ncurses.spec  |2 
+# package/ncursest.spec |2 
+# panel/Makefile.in |   20 
+# test/Makefile.in  |   12 ++
+# 36 files changed, 424 insertions(+), 118 deletions(-)
+# 
--
+Index: Ada95/gen/gen.c
+Prereq:  

commit ncurses for openSUSE:Factory

2020-02-21 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2020-02-21 16:39:59

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new.26092 (New)


Package is "ncurses"

Fri Feb 21 16:39:59 2020 rev:166 rq:774813 version:6.2

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2020-01-30 
09:41:45.109501376 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new.26092/ncurses.changes   
2020-02-21 16:40:31.305812909 +0100
@@ -1,0 +2,62 @@
+Mon Feb 17 08:37:54 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20200215
+  + improve manual page for panel library, extending the portability
+section as well as documenting error-returns.
+  + show tic's version when installing terminal database in run_tic.sh
+  + correct check for gcc vs other compilers used in ncurses 6.0, from
+FreeBSD patch by Kyle Evans (cf: 20150725).
+  + add notes for 6.2 to INSTALL.
+
+---
+Wed Feb 12 10:55:11 UTC 2020 - Dr. Werner Fink 
+
+- Update to ncurses 6.2 (patch 20200212)
+  * Add 20200212 6.2 release for upload to ftp.gnu.org
++ update release notes
++ minor build-fixes, mostly to test-package scripts
+  * Add ncurses patch20200208
++ modify check for sizeof(wchar_t) to ensure it gives useful result
+  when cross-compiling.
++ drop assumption in configure script that Cygwin's linker is broken.
++ define NCURSES_BROKEN_LINKER if the broken-linker feature is used,
+to simplify configure-checks for ncurses-examples.
+  * Add ncurses patch20200202
++ reassert copyright on ncurses, per discussion in ncurses FAQ:
+  https://invisible-island.net/ncurses/ncurses.faq.html#relicensed
+  * Add ncurses patch20200201
++ modify comparison in make_hash.c to correct a special case in
+  collision handling for Caps-hpux11
++ add testing utility report_hashing to check hash-tables used for
+  terminfo and termcap names.
++ fix a missing prototype for _nc_free_and_exit().
++ update a few comments about tack 1.07
++ use an awk script to split too-long pathnames used in Ada95 sample
+  programs for explain.txt
+- Update to tack 1.9 (patch 20200202)
+  * Update copyright and license.  Also, portability fixes.
+- Adopt patch ncurses-5.7-tack.dif
+- Adopt patch ncurses-6.1.dif which is now ncurses-6.2.dif
+
+---
+Mon Jan 20 07:14:28 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20200118
+  + expanded description of XM in user_caps.5
+  + improve xm example for xterm+x11mouse, xterm+sm+1006 -TD
+  + add history section to curs_slk.3x and curs_terminfo.3x manpages.
+  + update alacritty entries for 0.4.0 (prompted by patch by
+Christian Durr) -TD
+  + correct spelling errors found with codespell.
+  + fix for test/configure, from xterm #352.
+
+---
+Mon Jan 13 09:14:28 UTC 2020 - Dr. Werner Fink 
+
+- Add ncurses patch 20200111
+  + improve configure macros which check for the X11/Intrinsic.h header,
+to accommodate recent MacOS changes.
+  + suppress gcc's -Winline warning; it has not been useful for some time
+  + update config.guess, config.sub
+
+---

Old:

  ncurses-6.1-patches.tar.bz2
  ncurses-6.1.dif
  ncurses-6.1.tar.gz
  tack-1.08-20190721.tgz

New:

  ncurses-6.2-patches.tar.bz2
  ncurses-6.2.dif
  ncurses-6.2.tar.gz
  tack-1.09-20200202.tgz



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.ApxBZM/_old  2020-02-21 16:40:34.341818976 +0100
+++ /var/tmp/diff_new_pack.ApxBZM/_new  2020-02-21 16:40:34.345818983 +0100
@@ -56,23 +56,23 @@
 # but also build the ABI version 5 as this is part of the source
 # tar ball including the latest upstream fixes for ABI 5.
 #
-Version:6.1
+Version:6.2
 Release:0
 Summary:Terminal control library
 #Git:   http://ncurses.scripts.mit.edu
 License:MIT
 Group:  System/Base
 URL:http://www.invisible-island.net/ncurses/ncurses.html
-Source0:ftp://ftp.invisible-island.net/ncurses/ncurses-6.1.tar.gz
-Source1:ncurses-6.1-patches.tar.bz2
+Source0:ftp://ftp.invisible-island.net/ncurses/ncurses-6.2.tar.gz
+Source1:ncurses-6.2-patches.tar.bz2
 Source2:handle.linux
 Source3:README.devel
 Source4:ncurses-rpmlintrc
 # Latest tack can be found at 
ftp://ftp.invisible-island.net/pub/ncurses/current/
-Source5:
ftp://ftp.invisible-island.net/pub/ncurses/current/tack-1.08-20190721.tgz

commit ncurses for openSUSE:Factory

2020-01-30 Thread root


binWIuzCWdeno.bin
Description: Binary data


commit ncurses for openSUSE:Factory

2019-11-20 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2019-11-20 13:43:38

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new.26869 (New)


Package is "ncurses"

Wed Nov 20 13:43:38 2019 rev:164 rq:748916 version:6.1

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2019-11-06 
15:14:41.225089608 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new.26869/ncurses.changes   
2019-11-20 13:43:41.608266903 +0100
@@ -1,0 +2,27 @@
+Fri Nov 15 13:15:43 UTC 2019 - Dr. Werner Fink 
+
+- Do not add has size to linker flags of any pkg-config
+
+---
+Mon Nov 11 09:19:43 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20191109
+  + add warning-check in tic for terminals with parm_dch vs parm_ich.
+  + drop ich1 from rxvt-basic, Eterm and mlterm to improve compatibility
+with old non-curses programs -TD
+  + reviewed st 0.8.2, updated some details -TD
+  + use ansi+rep several places -TD
+  + corrected tic's check for ich1 (report by Sebastian J. Bronner,
+cf: 20020901).
+
+---
+Mon Nov  4 10:51:29 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20191102
+  + check parameter of set_escdelay, return ERR if negative.
+  + check parameter of set_tabsize, return ERR if not greater than zero
+(report/patch by Anthony Sottile).
+  + revise CF_ADD_LIBS macro to prepend rather than append libraries.
+  + add "xterm-mono" to help packagers (report by Sven Joachim) -TD
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.Dk1m8H/_old  2019-11-20 13:43:42.340266679 +0100
+++ /var/tmp/diff_new_pack.Dk1m8H/_new  2019-11-20 13:43:42.344266679 +0100
@@ -62,7 +62,7 @@
 #Git:   http://ncurses.scripts.mit.edu
 License:MIT
 Group:  System/Base
-Url:http://www.invisible-island.net/ncurses/ncurses.html
+URL:http://www.invisible-island.net/ncurses/ncurses.html
 Source0:ftp://ftp.invisible-island.net/ncurses/ncurses-6.1.tar.gz
 Source1:ncurses-6.1-patches.tar.bz2
 Source2:handle.linux

++ ncurses-5.9-ibm327x.dif ++
--- /var/tmp/diff_new_pack.Dk1m8H/_old  2019-11-20 13:43:42.40021 +0100
+++ /var/tmp/diff_new_pack.Dk1m8H/_new  2019-11-20 13:43:42.40420 +0100
@@ -4,7 +4,7 @@
 
 --- misc/terminfo.src
 +++ misc/terminfo.src  2018-10-29 10:23:47.271511864 +
-@@ -17017,8 +17017,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
+@@ -17044,8 +17044,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
  #
  
  ibm327x|line mode IBM 3270 style,

++ ncurses-6.1-patches.tar.bz2 ++
 3542 lines of diff (skipped)

++ ncurses-6.1.dif ++
--- /var/tmp/diff_new_pack.Dk1m8H/_old  2019-11-20 13:43:43.788266238 +0100
+++ /var/tmp/diff_new_pack.Dk1m8H/_new  2019-11-20 13:43:43.788266238 +0100
@@ -6,7 +6,7 @@
  include/tic.h|4 -
  man/man_db.renames   |2 
  man/ncurses.3x   |4 +
- misc/gen-pkgconfig.in|7 +-
+ misc/gen-pkgconfig.in|8 ++
  misc/terminfo.src|  138 
++-
  ncurses/Makefile.in  |2 
  ncurses/curses.priv.h|2 
@@ -18,10 +18,10 @@
  ncurses/tinfo/read_termcap.c |   21 --
  progs/Makefile.in|4 -
  test/test.priv.h |4 -
- 19 files changed, 246 insertions(+), 78 deletions(-)
+ 19 files changed, 248 insertions(+), 77 deletions(-)
 
 --- aclocal.m4
-+++ aclocal.m4 2019-08-12 08:07:59.755015362 +
 aclocal.m4 2019-11-11 09:30:23.206670737 +
 @@ -580,7 +580,7 @@ AC_MSG_CHECKING([for size of bool])
  AC_CACHE_VAL(cf_cv_type_of_bool,[
rm -f cf_test.out
@@ -150,7 +150,7 @@
  esac
  done
 --- configure
-+++ configure  2019-08-12 08:07:59.759015287 +
 configure  2019-11-11 09:30:23.210670661 +
 @@ -5590,7 +5590,7 @@ echo $ECHO_N "checking for an rpath opti
fi
;;
@@ -287,7 +287,7 @@
# the next lines are needed for linking libtic over libncurses
TINFO_NAME=${LIB_NAME}
 --- include/curses.h.in
-+++ include/curses.h.in2019-08-12 08:07:59.759015287 +
 include/curses.h.in2019-11-11 09:30:23.210670661 +
 @@ -177,6 +177,9 @@ typedef @cf_cv_typeof_chtype@ chtype;
  typedef @cf_cv_typeof_mmask_t@ mmask_t;
  #endif
@@ -299,7 +299,7 @@
   * We need FILE, etc.  Include this before checking any feature symbols.
   */
 --- include/termcap.h.in
-+++ include/termcap.h.in   2019-08-12 08:07:59.759015287 +

commit ncurses for openSUSE:Factory

2019-11-06 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2019-11-06 15:14:38

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new.2990 (New)


Package is "ncurses"

Wed Nov  6 15:14:38 2019 rev:163 rq:744202 version:6.1

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2019-10-25 
18:38:50.647710915 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new.2990/ncurses.changes
2019-11-06 15:14:41.225089608 +0100
@@ -1,0 +2,32 @@
+Wed Oct 30 14:17:20 UTC 2019 - Dr. Werner Fink 
+
+- Add tack patch 1.08-20190721
+  * tack.c, edit.c, tack.h: gcc-8.x-warnings
+  * init.c, edit.c: gcc 4.x warning
+  * charset.c: update copyright
+  * charset.c: rewrite of set_attr resulted in off-by-one loop limit
+  * aclocal.m4:
+add CF_CURSES_TERM_H to get proper ifdef's for the boolnames arrays
+  * configure.in: add CF_CURSES_TERM_H
+  * aclocal.m4: add CF_TERMIOS_TYPES, from xterm
+  * sysdep.c: use termios types such as tcflag_t
+  * configure.in: use CF_TERMIOS_TYPES
+  * tack.h: update copyright
+  * aclocal.m4: resync with my-autoconf
+  * package/debian/changelog, package/tack.spec, tack.h: bump
+  * config.sub: 2019-06-30
+  * config.guess: 2019-06-10
+
+---
+Mon Oct 28 09:05:18 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20191026
+  + add a note in man/curs_add_wch.3x about Unicode terminology for the
+line-drawing characters (report by Nick Black).
+  + improve comment in lib_tgoto.c regarding the use of \200 where a
+\0 would be intended by the caller (report by "64 bit", cf: 2923).
+  + modify linux-16color to accommodate Linux console driver change in
+early 2018 (report by Dino Petrucci).
+- Correct offsets of hunks of patch ncurses-6.1.dif for misc/terminfo.src
+
+---

Old:

  tack-1.08-20170818.tgz

New:

  tack-1.08-20190721.tgz



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.eTaCuw/_old  2019-11-06 15:14:42.373090738 +0100
+++ /var/tmp/diff_new_pack.eTaCuw/_new  2019-11-06 15:14:42.377090742 +0100
@@ -69,7 +69,7 @@
 Source3:README.devel
 Source4:ncurses-rpmlintrc
 # Latest tack can be found at 
ftp://ftp.invisible-island.net/pub/ncurses/current/
-Source5:
ftp://ftp.invisible-island.net/pub/ncurses/current/tack-1.08-20170818.tgz
+Source5:
ftp://ftp.invisible-island.net/pub/ncurses/current/tack-1.08-20190721.tgz
 Source6:edit.sed
 Source7:baselibs.conf
 Patch0: ncurses-6.1.dif

++ ncurses-5.9-ibm327x.dif ++
--- /var/tmp/diff_new_pack.eTaCuw/_old  2019-11-06 15:14:42.453090817 +0100
+++ /var/tmp/diff_new_pack.eTaCuw/_new  2019-11-06 15:14:42.453090817 +0100
@@ -4,7 +4,7 @@
 
 --- misc/terminfo.src
 +++ misc/terminfo.src  2018-10-29 10:23:47.271511864 +
-@@ -17011,8 +17011,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
+@@ -17017,8 +17017,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
  #
  
  ibm327x|line mode IBM 3270 style,

++ ncurses-6.1-patches.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/patches/ncurses-6.1-20191026.patch 
new/patches/ncurses-6.1-20191026.patch
--- old/patches/ncurses-6.1-20191026.patch  1970-01-01 01:00:00.0 
+0100
+++ new/patches/ncurses-6.1-20191026.patch  2019-10-28 10:03:19.998401747 
+0100
@@ -0,0 +1,740 @@
+# ncurses 6.1 - patch 20191026 - Thomas E. Dickey
+#
+# 
--
+#
+# Ncurses 6.1 is at
+#  ftp.gnu.org:/pub/gnu
+#
+# Patches for ncurses 6.1 can be found at
+#  ftp://ftp.invisible-island.net/ncurses/6.1
+#  http://invisible-mirror.net/archives/ncurses/6.1 
+#
+# 
--
+# ftp://ftp.invisible-island.net/ncurses/6.1/ncurses-6.1-20191026.patch.gz
+# patch by Thomas E. Dickey 
+# created  Sun Oct 27 01:34:14 UTC 2019
+# 
--
+# NEWS  |   10 ++-
+# VERSION   |2 
+# dist.mk   |4 -
+# doc/html/man/adacurses6-config.1.html |2 
+# doc/html/man/captoinfo.1m.html|2 
+# doc/html/man/clear.1.html |2 
+# doc/html/man/curs_add_wch.3x.html |  103 +---
+# doc/html/man/form.3x.html |2 
+# doc/html/man/infocmp.1m.html  |2 
+# doc/html/man/infotocap.1m.html|2 
+# 

commit ncurses for openSUSE:Factory

2019-10-25 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2019-10-25 18:38:42

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new.2990 (New)


Package is "ncurses"

Fri Oct 25 18:38:42 2019 rev:162 rq:741817 version:6.1

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2019-10-11 
15:08:44.693514398 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new.2990/ncurses.changes
2019-10-25 18:38:50.647710915 +0200
@@ -1,0 +2,46 @@
+Mon Oct 21 09:33:41 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20191019
+  + modify make_hash to not require --disable-leaks, to simplify building
+with address-sanitizer.
+  + modify tic to exit if it cannot remove a conflicting name, because
+treating that as a partial success can cause an infinite loop in
+use-resolution (report/testcase by Hongxu Chen, cf: 20111001).
+
+---
+Wed Oct 16 08:29:53 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20191015
+  + improve buffer-checks in captoinfo.c, for some cases when the
+input string is shorter than expected.
+  > fix two errata in tic (report/testcases by Hongxu Chen):
+  + check for missing character after backslash in write_it
+  + check for missing characters after "%>" when converting from termcap
+syntax (cf: 980530).
+
+---
+Mon Oct 14 10:04:05 UTC 2019 - Dr. Werner Fink 
+
+- Avoid recursion trouble in spec file cause by undefined _lto_cflags 
+
+---
+Mon Oct 14 06:38:31 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20191012
+  + amend recent changes to ncurses*-config and pc-files to filter out
+Debian linker-flags (report by Sven Joachim, cf: 20150516).
+  + clarify relationship between tic, infocmp and captoinfo in manpage.
+  + check for invalid hashcode in _nc_find_type_entry and
+_nc_find_name_entry.
+  > fix several errata in tic (reports/testcases by "zjuchenyuan"):
+  + check for invalid hashcode in _nc_find_entry.
+  + check for missing character after backslash in fmt_entry
+  + check for acsc with odd length in dump_entry in check for one-one
+mapping (cf: 20060415);
+  + check length when converting from old AIX box_chars_1 capability,
+overlooked in changes to eliminate strcpy (cf: 20001007).
+- Add ncurses patch 20191005
+  + modify the ncurse*-config and pc-files to more closely match for the
+-I and -l options.
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.9f1Df9/_old  2019-10-25 18:38:51.667711876 +0200
+++ /var/tmp/diff_new_pack.9f1Df9/_new  2019-10-25 18:38:51.671711879 +0200
@@ -314,7 +314,7 @@
 %patch0 -p0 -b .p0
 
 %build
-%global _lto_cflags %{_lto_cflags} -ffat-lto-objects
+%global _lto_cflags %{?_lto_cflags} -ffat-lto-objects
 #
 # Note that there is a test if the system call poll(2) really works
 # on terminal or files.  To make sure that even in OBS the configure

++ ncurses-6.1-patches.tar.bz2 ++
 2166 lines of diff (skipped)

++ ncurses-6.1.dif ++
--- /var/tmp/diff_new_pack.9f1Df9/_old  2019-10-25 18:38:53.547713646 +0200
+++ /var/tmp/diff_new_pack.9f1Df9/_new  2019-10-25 18:38:53.547713646 +0200
@@ -359,16 +359,7 @@
  arrays of characters representing all or part of a CRT screen.
 --- misc/gen-pkgconfig.in
 +++ misc/gen-pkgconfig.in  2019-08-12 08:07:59.759015287 +
-@@ -78,7 +78,7 @@ if [ "$includedir" != "/usr/include" ];
- fi
- 
- LDFLAGS=
--if [ "$libdir" != "/usr/lib" ]; then
-+if [ "$libdir" != "/usr/lib" -a "$libdir" != "/usr/lib64" ]; then
-   LDFLAGS="$LDFLAGS -L\${libdir}"
- fi
- if [ "x@EXTRA_LDFLAGS@" != "x" ]; then
-@@ -101,6 +101,7 @@ do
+@@ -127,6 +127,7 @@ do
LIBS="-l$name"
  
desc="ncurses @NCURSES_MAJOR@.@NCURSES_MINOR@"
@@ -376,7 +367,7 @@
reqs=
  
if [ $name = $MAIN_LIBRARY ]; then
-@@ -110,9 +111,11 @@ do
+@@ -137,9 +138,11 @@ do
desc="$desc terminal interface library"
elif expr $name : ".*${CXX_NAME}.*" >/dev/null ; then
reqs="$PANEL_LIBRARY${suffix}, $MENU_LIBRARY${suffix}, 
$FORM_LIBRARY${suffix}, $MAIN_LIBRARY${suffix}"
@@ -388,7 +379,7 @@
desc="$desc add-on library"
fi
  
-@@ -122,6 +125,8 @@ do
+@@ -149,6 +152,8 @@ do
   [ $NEED_TINFO != yes ] ; then
[ -n "$reqs" ] && reqs="$reqs, "
reqs="${reqs}${SUB_LIBRARY}${suffix}"




commit ncurses for openSUSE:Factory

2019-10-11 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2019-10-11 15:08:41

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new.2352 (New)


Package is "ncurses"

Fri Oct 11 15:08:41 2019 rev:161 rq:734487 version:6.1

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2019-09-26 
20:34:53.443559487 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new.2352/ncurses.changes
2019-10-11 15:08:44.693514398 +0200
@@ -1,0 +2,27 @@
+Tue Oct  1 07:28:54 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20190928
+  + amend the ncurse*-config and pc-files to take into account the rpath
+hack which differed between those files.
+  + improve -L option filtering in ncurses*-config
+  + improve recovery from error when reading command-character in
+test/ncurses.c, showing the relevant error message and not exiting on
+EINTR (cf: 20180922)
+- Add library path for pkgconfig of ncurses5 as well
+
+---
+Mon Sep 23 06:56:28 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20190921
+  + add a note in resizeterm manpage about top-level windows which touch
+the screen's borders.
+  + modify configure-checks for gnat to identify each of the tools path
+and version.
+
+---
+Mon Sep 16 06:24:42 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20190914
+  + build-fixes for Ada95 configure-script and corresponding test package
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.KhqjG4/_old  2019-10-11 15:08:45.593511989 +0200
+++ /var/tmp/diff_new_pack.KhqjG4/_new  2019-10-11 15:08:45.601511968 +0200
@@ -691,6 +691,7 @@
base=${base##*/}
sed -ri 's@^(includedir=).*@\1%{_incdir}/ncurses5/ncurses@' "$pc"
sed -ri 's@^(libdir=).*@\1%{_libdir}/ncurses5@' "$pc"
+   sed -ri 's@^(Libs: )(.*)@\1-L${libdir}\2@' "$pc"
mv -f $pc pc/${base}5.pc
 done
 sed -ri 's@^(Requires.private: ).*@\1panel5, menu5, form5, ncurses5, 
tinfo5@' \

++ ncurses-6.1-patches.tar.bz2 ++
 4017 lines of diff (skipped)

++ ncurses-6.1.dif ++
--- /var/tmp/diff_new_pack.KhqjG4/_old  2019-10-11 15:08:47.401507150 +0200
+++ /var/tmp/diff_new_pack.KhqjG4/_new  2019-10-11 15:08:47.401507150 +0200
@@ -31,7 +31,7 @@
  #include 
  
  #if defined(__cplusplus)
-@@ -5199,12 +5199,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
-@@ -5329,9 +5332,9 @@ cat >>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man 

commit ncurses for openSUSE:Factory

2019-09-26 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2019-09-26 20:34:49

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new.2352 (New)


Package is "ncurses"

Thu Sep 26 20:34:49 2019 rev:160 rq:731264 version:6.1

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2019-09-05 
12:31:27.279606970 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new.2352/ncurses.changes
2019-09-26 20:34:53.443559487 +0200
@@ -1,0 +2,29 @@
+Mon Sep  9 11:25:49 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20190907
+  + add --with-ada-libname option and modify Ada95 configuration to 
+allow renaming the "AdaCurses" library (prompted by proposed changes
+by Pascal Pignard).
+  + modify configure script to distinguish gcc from icc and clang when
+the --enable-warnings option is not used, to avoid unnecessary
+warnings about unrecognized inline options (report by Sven Joachim).
+- Add ncurses patch 20190831
+  + build-fixes for configuration using --program-suffix with Ada95,
+noticed with MacOS but applicable to other platforms without
+libpanelw, etc.
+
+---
+Mon Aug 26 09:31:15 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20190824
+  + fix some cppcheck warnings, mostly style, in ncurses test-programs.
+
+---
+Mon Aug 19 09:32:14 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20190817
+  + amend 20181208 changes for wbkgd() and wbkgrnd(), fixing a few
+details where it still differed from SVr4.
+  + fix some cppcheck warnings, mostly style, in ncurses test-programs.
+
+---



Other differences:
--
++ ncurses-6.1-patches.tar.bz2 ++
 45939 lines of diff (skipped)

++ ncurses-6.1.dif ++
--- /var/tmp/diff_new_pack.uTCNHz/_old  2019-09-26 20:34:56.503551308 +0200
+++ /var/tmp/diff_new_pack.uTCNHz/_new  2019-09-26 20:34:56.503551308 +0200
@@ -31,7 +31,7 @@
  #include 
  
  #if defined(__cplusplus)
-@@ -5197,12 +5197,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
-@@ -5327,9 +5330,9 @@ 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 <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <\$TMP
  CF_EOF
  if test -n "$cf_compress" ; then
-@@ -14103,9 +14106,9 @@ cat >>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <

commit ncurses for openSUSE:Factory

2019-09-05 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2019-09-05 12:31:23

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new.7948 (New)


Package is "ncurses"

Thu Sep  5 12:31:23 2019 rev:159 rq:724523 version:6.1

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2019-07-29 
17:22:03.834398327 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new.7948/ncurses.changes
2019-09-05 12:31:27.279606970 +0200
@@ -1,0 +2,33 @@
+Mon Aug 12 08:05:06 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20190810
+  + fix a few more coverity warnings.
+- Add ncurses patch 20190803
+  + improve loop limits in _nc_scroll_window() to handle a case where
+the scrolled data is a pad which is taller than the window (patch
+by Rob King).
+  + amend the change to screen, because tmux relies upon that entry
+and does not support that feature (Debian #933572) -TD
+  + updated ms-terminal entry & notes -TD
+  + updated kitty entry & notes -TD
+  + updated alacritty+common entry & notes -TD
+  + use xterm+sl-twm for consistency -TD
+- Add ncurses patch 20190728
+  + fix a few more coverity warnings.
+  + more documentation updates based on tctest.
+- Add ncurses patch 20190727
+  + fix a few coverity warnings.
+  + documentation updates based on tctest.
+- Add ncurses patch 20190720
+  + fix a few warnings for gcc 4.x
+  + add some portability/historical details to the tic, toe and infocmp
+manual pages.
+  + correct fix for broken link from terminfo(5) to tabs(1) manpage
+(report by Sven Joachim).
+
+---
+Fri Aug  2 08:15:42 UTC 2019 - Martin Liška 
+
+- Use FAT LTO objects in order to provide proper static library.
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.KGB6zR/_old  2019-09-05 12:31:27.887606851 +0200
+++ /var/tmp/diff_new_pack.KGB6zR/_new  2019-09-05 12:31:27.891606850 +0200
@@ -314,6 +314,7 @@
 %patch0 -p0 -b .p0
 
 %build
+%global _lto_cflags %{_lto_cflags} -ffat-lto-objects
 #
 # Note that there is a test if the system call poll(2) really works
 # on terminal or files.  To make sure that even in OBS the configure

++ ncurses-5.9-ibm327x.dif ++
--- /var/tmp/diff_new_pack.KGB6zR/_old  2019-09-05 12:31:27.947606839 +0200
+++ /var/tmp/diff_new_pack.KGB6zR/_new  2019-09-05 12:31:27.947606839 +0200
@@ -4,7 +4,7 @@
 
 --- misc/terminfo.src
 +++ misc/terminfo.src  2018-10-29 10:23:47.271511864 +
-@@ -16991,8 +16991,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
+@@ -17011,8 +17011,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
  #
  
  ibm327x|line mode IBM 3270 style,

++ ncurses-6.1-patches.tar.bz2 ++
 7979 lines of diff (skipped)

++ ncurses-6.1.dif ++
--- /var/tmp/diff_new_pack.KGB6zR/_old  2019-09-05 12:31:29.359606563 +0200
+++ /var/tmp/diff_new_pack.KGB6zR/_new  2019-09-05 12:31:29.359606563 +0200
@@ -21,7 +21,7 @@
  19 files changed, 246 insertions(+), 78 deletions(-)
 
 --- aclocal.m4
-+++ aclocal.m4 2019-07-01 07:36:31.909290868 +
 aclocal.m4 2019-08-12 08:07:59.755015362 +
 @@ -580,7 +580,7 @@ AC_MSG_CHECKING([for size of bool])
  AC_CACHE_VAL(cf_cv_type_of_bool,[
rm -f cf_test.out
@@ -150,7 +150,7 @@
  esac
  done
 --- configure
-+++ configure  2019-07-01 07:36:31.913290795 +
 configure  2019-08-12 08:07:59.759015287 +
 @@ -5487,7 +5487,7 @@ echo $ECHO_N "checking for an rpath opti
fi
;;
@@ -287,7 +287,7 @@
# the next lines are needed for linking libtic over libncurses
TINFO_NAME=${LIB_NAME}
 --- include/curses.h.in
-+++ include/curses.h.in2019-07-01 07:36:31.913290795 +
 include/curses.h.in2019-08-12 08:07:59.759015287 +
 @@ -177,6 +177,9 @@ typedef @cf_cv_typeof_chtype@ chtype;
  typedef @cf_cv_typeof_mmask_t@ mmask_t;
  #endif
@@ -299,7 +299,7 @@
   * We need FILE, etc.  Include this before checking any feature symbols.
   */
 --- include/termcap.h.in
-+++ include/termcap.h.in   2019-07-01 07:36:31.913290795 +
 include/termcap.h.in   2019-08-12 08:07:59.759015287 +
 @@ -46,6 +46,8 @@ extern "C"
  {
  #endif /* __cplusplus */
@@ -310,7 +310,7 @@
  
  #undef  NCURSES_OSPEED 
 --- include/tic.h
-+++ include/tic.h  2019-07-01 07:36:31.913290795 +
 include/tic.h  2019-08-12 08:07:59.759015287 +
 @@ -236,12 +236,12 @@ struct user_table_entry
   */
  
@@ -327,7 +327,7 @@
  #define CANCELLED_STRING  (char *)(-1)
  
 --- man/man_db.renames
-+++ man/man_db.renames 2019-07-01 07:36:31.913290795 +

commit ncurses for openSUSE:Factory

2019-07-29 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2019-07-29 17:22:01

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new.4126 (New)


Package is "ncurses"

Mon Jul 29 17:22:01 2019 rev:158 rq:717564 version:6.1

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2019-07-13 
13:35:22.875320145 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new.4126/ncurses.changes
2019-07-29 17:22:03.834398327 +0200
@@ -1,0 +2,29 @@
+Mon Jul 15 11:40:20 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20190713
+  + change reset's behavior for margins to simply clear soft-margins if
+possible, rather than clearing and then setting them according to the
+terminal's width (suggested by Thomas Wolff).
+  + correct order of one wbkgd versus start_color call in test/padview.c
+
+---
+Tue Jul  9 10:45:50 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20190706
+  + add domterm -TD
+  + improve comments for recent changes, add alias xterm.js -TD
+
+---
+Mon Jul  1 07:35:28 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20190630
+  + add --with-tic-path and --with-infocmp-path to work around problems
+building fallback source using pre-6.0 tic/infocmp.
+  + add a check in tic for paired indn/rin
+  + correct a buffer-limit in write_entry.c for systems that use caseless
+filenames.
+  + add ms-terminal -TD
+  + add vscode, vscode-direct -TD
+* Adopt patch ncurses-5.9-ibm327x.dif and ncurses-6.1.dif
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.ULAuro/_old  2019-07-29 17:22:04.962397909 +0200
+++ /var/tmp/diff_new_pack.ULAuro/_new  2019-07-29 17:22:04.962397909 +0200
@@ -564,7 +564,7 @@
. ${PWD}/../.build_tic
$BUILD_TIC -I -r -e $FALLBK ../misc/terminfo.src > terminfo.src
$BUILD_TIC -o $TERMINFO -s terminfo.src
-   sh -e ./tinfo/MKfallback.sh $TERMINFO ../misc/terminfo.src $BUILD_TIC 
${FALLBK//,/ } > fallback.c
+   sh -e ./tinfo/MKfallback.sh $TERMINFO ../misc/terminfo.src $BUILD_TIC 
$BUILD_INFOCMP ${FALLBK//,/ } > fallback.c
rm -rf $TERMINFO
unset  TERMINFO
cp -p fallback.c ../fallback.c.build

++ ncurses-5.9-ibm327x.dif ++
--- /var/tmp/diff_new_pack.ULAuro/_old  2019-07-29 17:22:05.130397847 +0200
+++ /var/tmp/diff_new_pack.ULAuro/_new  2019-07-29 17:22:05.134397846 +0200
@@ -4,7 +4,7 @@
 
 --- misc/terminfo.src
 +++ misc/terminfo.src  2018-10-29 10:23:47.271511864 +
-@@ -16864,8 +16864,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
+@@ -16991,8 +16991,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
  #
  
  ibm327x|line mode IBM 3270 style,

++ ncurses-6.1-patches.tar.bz2 ++
 18896 lines of diff (skipped)

++ ncurses-6.1.dif ++
--- /var/tmp/diff_new_pack.ULAuro/_old  2019-07-29 17:22:06.986397161 +0200
+++ /var/tmp/diff_new_pack.ULAuro/_new  2019-07-29 17:22:06.990397158 +0200
@@ -11,17 +11,17 @@
  ncurses/Makefile.in  |2 
  ncurses/curses.priv.h|2 
  ncurses/run_cmd.sh   |   11 +++
- ncurses/tinfo/MKfallback.sh  |   10 ++-
+ ncurses/tinfo/MKfallback.sh  |6 +
  ncurses/tinfo/access.c   |   28 
  ncurses/tinfo/lib_setup.c|3 
  ncurses/tinfo/read_entry.c   |2 
  ncurses/tinfo/read_termcap.c |   21 --
  progs/Makefile.in|4 -
  test/test.priv.h |4 -
- 19 files changed, 248 insertions(+), 80 deletions(-)
+ 19 files changed, 246 insertions(+), 78 deletions(-)
 
 --- aclocal.m4
-+++ aclocal.m4 2019-06-24 09:21:19.443796673 +
 aclocal.m4 2019-07-01 07:36:31.909290868 +
 @@ -580,7 +580,7 @@ AC_MSG_CHECKING([for size of bool])
  AC_CACHE_VAL(cf_cv_type_of_bool,[
rm -f cf_test.out
@@ -150,8 +150,8 @@
  esac
  done
 --- configure
-+++ configure  2019-06-24 09:21:19.447796599 +
-@@ -5485,7 +5485,7 @@ echo $ECHO_N "checking for an rpath opti
 configure  2019-07-01 07:36:31.913290795 +
+@@ -5487,7 +5487,7 @@ echo $ECHO_N "checking for an rpath opti
fi
;;
(linux*|gnu*|k*bsd*-gnu|freebsd*)
@@ -160,7 +160,7 @@
;;
(openbsd[2-9].*|mirbsd*)
LD_RPATH_OPT="-Wl,-rpath,"
-@@ -13642,12 +13642,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
-@@ -13772,9 +13775,9 @@ cat 

commit ncurses for openSUSE:Factory

2019-07-13 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2019-07-13 13:35:21

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new.4615 (New)


Package is "ncurses"

Sat Jul 13 13:35:21 2019 rev:157 rq:712785 version:6.1

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2019-06-26 
16:01:44.527438016 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new.4615/ncurses.changes
2019-07-13 13:35:22.875320145 +0200
@@ -1,0 +2,22 @@
+Mon Jun 24 09:20:53 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20190623
+  + improve the tabs.1 manual page to distinguish the PWB/Unix and 7th
+Edition versions of the tabs utility.
+  + add configure check for getenv() to work around implementation shown
+in Emscripten #6766, use that to optionally suppress START_TRACE
+macro, whose call to getenv() may not work properly (report by Ilya
+Ig Petrov).
+  + modify initialization functions to avoid relying upon persistent
+data for the result from getenv().
+  + update config.guess, config.sub
+- Adopt patch ncurses-6.1.dif
+
+---
+Mon Jun 17 10:36:12 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20190615
+  + expand the portability section of the man/tabs.1 manual page.
+  + regenerate HTML manpages.
+
+---



Other differences:
--
++ ncurses-6.1-patches.tar.bz2 ++
 9471 lines of diff (skipped)

++ ncurses-6.1.dif ++
--- /var/tmp/diff_new_pack.k7nWkw/_old  2019-07-13 13:35:24.819319629 +0200
+++ /var/tmp/diff_new_pack.k7nWkw/_new  2019-07-13 13:35:24.819319629 +0200
@@ -21,7 +21,7 @@
  19 files changed, 248 insertions(+), 80 deletions(-)
 
 --- aclocal.m4
-+++ aclocal.m4 2019-05-20 13:40:39.388245916 +
 aclocal.m4 2019-06-24 09:21:19.443796673 +
 @@ -580,7 +580,7 @@ AC_MSG_CHECKING([for size of bool])
  AC_CACHE_VAL(cf_cv_type_of_bool,[
rm -f cf_test.out
@@ -31,7 +31,7 @@
  #include 
  
  #if defined(__cplusplus)
-@@ -4993,12 +4993,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
-@@ -5123,9 +5126,9 @@ cat >>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <$@
 --- ncurses/curses.priv.h
-+++ ncurses/curses.priv.h  2019-05-20 13:40:39.392245841 +
-@@ -2242,6 +2242,8 @@ extern NCURSES_EXPORT(char *) _nc_tracec
 ncurses/curses.priv.h  2019-06-24 09:21:19.451796524 +
+@@ -2246,6 +2246,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);
  extern NCURSES_EXPORT(int) _nc_access (const char *, int);
@@ -805,7 +805,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 2019-05-20 13:40:39.392245841 +
 ncurses/run_cmd.sh 2019-06-24 09:21:19.451796524 +
 @@ -0,0 +1,11 @@
 +#!/bin/sh
 +
@@ -819,7 +819,7 @@
 +
 +exec ${1+"$@"}
 --- ncurses/tinfo/MKfallback.sh
-+++ ncurses/tinfo/MKfallback.sh2019-05-20 13:40:39.392245841 +
 ncurses/tinfo/MKfallback.sh2019-06-24 09:21:19.451796524 +
 @@ -68,6 +68,12 @@ else
tmp_info=
  fi
@@ -852,7 +852,7 @@
done
  
 --- ncurses/tinfo/access.c
-+++ ncurses/tinfo/access.c 2019-05-20 13:40:39.392245841 +
 ncurses/tinfo/access.c 2019-06-24 09:21:19.451796524 +
 @@ -30,6 +30,10 @@
   *  Author: Thomas E. Dickey*
   /
@@ -896,7 +896,7 @@
  _nc_access(const char *path, int mode)
  {
 --- ncurses/tinfo/lib_setup.c
-+++ ncurses/tinfo/lib_setup.c  2019-05-20 13:40:39.392245841 +
 ncurses/tinfo/lib_setup.c  2019-06-24 09:21:19.451796524 +
 @@ -599,6 +599,9 @@ _nc_locale_breaks_acs(TERMINAL *termp)
  } else if ((value = tigetnum("U8")) >= 0) {
result = value; /* use extension feature */
@@ -908,7 +908,7 @@
result = 1; /* always broken */
} else if (strstr(env, "screen") != 0
 --- ncurses/tinfo/read_entry.c
-+++ ncurses/tinfo/read_entry.c 2019-05-20 13:40:39.392245841 +
 ncurses/tinfo/read_entry.c 2019-06-24 09:21:19.451796524 +
 @@ -551,6 +551,7 @@ _nc_read_file_entry(const char *const fi
  FILE *fp = 0;
  int code;
@@ -926,7 +926,7 @@
  return (code);

commit ncurses for openSUSE:Factory

2019-06-26 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2019-06-26 16:01:42

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new.4615 (New)


Package is "ncurses"

Wed Jun 26 16:01:42 2019 rev:156 rq:710543 version:6.1

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2019-05-21 
10:19:31.635634461 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new.4615/ncurses.changes
2019-06-26 16:01:44.527438016 +0200
@@ -1,0 +2,40 @@
+Tue Jun 11 08:27:10 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20190609
+  + add mintty, mintty-direct (adapted from patch by Thomas Wolff).
+Some of the suggested user-defined capabilities are commented-out,
+to allow builds with ncurses 5.9 and 6.0
+  + add Smol/Rmol for tmux, vte-2018 (patch by Nicholas Marriott).
+  + add rs1 to konsole, mlterm -TD
+  + modify _nc_merge_entry() to make a copy of the data which it merges,
+to avoid modifying the source-data when aligning extended names.
+
+---
+Mon Jun  3 07:08:38 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20190601
+  + modify an internal call to vid_puts to pass extended color pairs
+e.g., from tty_update.c and lib_mvcur.c (report by Niegodziwy Beru).
+  + improve manual page description of init_tabs capability and TABSIZE
+variable.
+
+---
+Mon May 27 08:29:05 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20190525
+  + modify reset_cmd.c to allow for tabstops at intervals other than 8
+(report by Vincent Huisman).
+
+---
+Mon May 20 13:39:27 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20190518
+  + update xterm-new to xterm patch #345 -TD
+  + add/use xterm+keypad in xterm-new (report by Alain D D Williams) -TD
+  + update terminator entry -TD
+  + remove hard-tabs from ti703 (report by Robert Clausecker)
+  + mention meml/memu/box1 in user_caps manual page.
+  + mention user_caps.5 in tic and infocmp manual pages.
+- Adopt the patches ncurses-5.9-ibm327x.dif and ncurses-6.1.dif
+
+---



Other differences:
--
++ ncurses-5.9-ibm327x.dif ++
--- /var/tmp/diff_new_pack.Crvt7h/_old  2019-06-26 16:01:45.679439610 +0200
+++ /var/tmp/diff_new_pack.Crvt7h/_new  2019-06-26 16:01:45.683439616 +0200
@@ -4,7 +4,7 @@
 
 --- misc/terminfo.src
 +++ misc/terminfo.src  2018-10-29 10:23:47.271511864 +
-@@ -16714,8 +16714,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
+@@ -16864,8 +16864,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
  #
  
  ibm327x|line mode IBM 3270 style,

++ ncurses-6.1-patches.tar.bz2 ++
 2563 lines of diff (skipped)

++ ncurses-6.1.dif ++
--- /var/tmp/diff_new_pack.Crvt7h/_old  2019-06-26 16:01:46.76344 +0200
+++ /var/tmp/diff_new_pack.Crvt7h/_new  2019-06-26 16:01:46.76344 +0200
@@ -21,7 +21,7 @@
  19 files changed, 248 insertions(+), 80 deletions(-)
 
 --- aclocal.m4
-+++ aclocal.m4 2019-04-01 07:18:56.549107037 +
 aclocal.m4 2019-05-20 13:40:39.388245916 +
 @@ -580,7 +580,7 @@ AC_MSG_CHECKING([for size of bool])
  AC_CACHE_VAL(cf_cv_type_of_bool,[
rm -f cf_test.out
@@ -150,7 +150,7 @@
  esac
  done
 --- configure
-+++ configure  2019-04-01 07:18:56.549107037 +
 configure  2019-05-20 13:40:39.388245916 +
 @@ -5485,7 +5485,7 @@ echo $ECHO_N "checking for an rpath opti
fi
;;
@@ -287,7 +287,7 @@
# the next lines are needed for linking libtic over libncurses
TINFO_NAME=${LIB_NAME}
 --- include/curses.h.in
-+++ include/curses.h.in2019-04-01 07:18:56.549107037 +
 include/curses.h.in2019-05-20 13:40:39.388245916 +
 @@ -177,6 +177,9 @@ typedef @cf_cv_typeof_chtype@ chtype;
  typedef @cf_cv_typeof_mmask_t@ mmask_t;
  #endif
@@ -299,7 +299,7 @@
   * We need FILE, etc.  Include this before checking any feature symbols.
   */
 --- include/termcap.h.in
-+++ include/termcap.h.in   2019-04-01 07:18:56.549107037 +
 include/termcap.h.in   2019-05-20 13:40:39.388245916 +
 @@ -46,6 +46,8 @@ extern "C"
  {
  #endif /* __cplusplus */
@@ -310,7 +310,7 @@
  
  #undef  NCURSES_OSPEED 
 --- include/tic.h
-+++ include/tic.h  2019-04-01 07:18:56.549107037 +
 include/tic.h  2019-05-20 13:40:39.388245916 +
 @@ -236,12 +236,12 @@ struct user_table_entry
   */
  
@@ -327,7 +327,7 @@
  #define CANCELLED_STRING  (char *)(-1)
  
 --- man/man_db.renames
-+++ man/man_db.renames 2019-04-01 07:18:56.549107037 +
 

commit ncurses for openSUSE:Factory

2019-05-21 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2019-05-21 10:19:27

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new.5148 (New)


Package is "ncurses"

Tue May 21 10:19:27 2019 rev:155 rq:703136 version:6.1

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2019-03-27 
16:20:30.307540996 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new.5148/ncurses.changes
2019-05-21 10:19:31.635634461 +0200
@@ -1,0 +2,69 @@
+Wed May 15 11:43:33 UTC 2019 - Dr. Werner Fink 
+
+- Make pkg-config files .pc consistent
+
+---
+Mon May 13 07:51:13 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20190511
+  + fix a spurious blank line seen with "infocmp -1fx xterm+x11mouse"
+  + add checks in repair_subwindows() to keep the current position and
+scroll-margins inside the resized subwindow.
+  + add a limit check in newline_forces_scroll() for the case where the
+row is inside scroll-margins, but not at the end (report by Toshio
+Kuratomi, cf: 20170729).
+  + corrected a warning message in tic for extended capabilities versus
+number of parameters.
+
+---
+Fri May 10 07:55:17 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20190504
+  + improve workaround for Solaris wcwidth versus line-drawing characters
+(report by Pavel Stehule).
+  + add special case in tic to validate RGB string-capability extension.
+  + corrected string/parameter-field for RGB in Caps-ncurses.
+
+---
+Mon Apr 29 07:04:37 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20190427
+  + corrected problem in terminfo load/realignment which prevented
+infocmp from comparing extended capabilities with the same name
+but different types.
+
+---
+Tue Apr 23 11:32:35 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20190420
+  + improve ifdef's for TABSIZE variable, to help with AIX/HPUX ports.
+- Add ncurses patch 20190413
+  + check for TABSIZE variable in test/configure script.
+  + used test/test_arrays.c to improve Caps.aix1 and Caps.hpux11
+  + corrected filtering of comments in MKparametrized.sh
+  + reduce duplication across Caps* files by moving some parts which do
+not depend on order into Caps-ncurses.
+
+---
+Mon Apr  8 06:42:14 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20190406
+  + modify MKcaptab.sh, MKkey_defs.sh, and MKhashsize.sh to handle
+split-up Caps-files.
+  + build-fixes if extended-functions are disabled.
+
+---
+Mon Apr  1 07:18:00 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20190330
+  + add "screen5", to mention italics (report by Stefan Assmann)
+  + modify description of xterm+x11hilite to eliminate unused p5 -TD
+  + add configure script checks to help with a port to Ultrix 3.1
+(report by Dennis Grevenstein).
++ check if "b" binary feature of fopen works
++ check for missing feature of locale.h
++ add fallback for strstr() in test-programs
++ add fallback for STDOUT_FILENO in test-programs
+  + update config.guess, config.sub
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.vtks9H/_old  2019-05-21 10:19:32.411634303 +0200
+++ /var/tmp/diff_new_pack.vtks9H/_new  2019-05-21 10:19:32.411634303 +0200
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -598,7 +598,14 @@
 mkdir pc
 PKG_CONFIG_PATH=$PWD/pc:$(pkg-config --variable pc_path pkg-config)
 export PKG_CONFIG_PATH
-mv -f %{root}%{_libdir}/pkgconfig/*.pc pc/
+rm -vf %{root}%{_libdir}/pkgconfig/tic.pc
+rm -vf %{root}%{_libdir}/pkgconfig/tinfo.pc
+mv -vf %{root}%{_libdir}/pkgconfig/*.pc pc/
+sed -ri 's@^(Requires.private: ).*@\1panelw, menuw, formw, ncursesw, 
tinfo@' \
+   pc/ncurses++w.pc
+sed -ri 's@^(Requires.private: ).*@\1ncursesw, tinfo@'  
pc/{form,menu,panel}w.pc
+sed -ri 's@^(Libs.private: .*)@\1 -lncursesw -ltinfo -ldl@' 
pc/{form,menu,panel}w.pc
+
 sh %{S:6} --cflags "$(pkg-config --cflags ncursesw)" --libs 

commit ncurses for openSUSE:Factory

2019-03-27 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2019-03-27 16:20:27

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new.25356 (New)


Package is "ncurses"

Wed Mar 27 16:20:27 2019 rev:154 rq:688199 version:6.1

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2019-02-24 
16:54:52.324923701 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new.25356/ncurses.changes   
2019-03-27 16:20:30.307540996 +0100
@@ -1,0 +2,49 @@
+Mon Mar 25 11:15:44 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20190323
+  + move macro for is_linetouched() inside NCURSES_NOMACROS ifndef.
+  + corrected prototypes in several manpages using script to extract
+those in compilable form.
+  + use _nc_copy_termtype2() rather than direct assignment in setupterm,
+in case it is called repeatedly using fallback terminfo descriptions
+(report/patch by Werner Fink).
+- Drop patch ncurses-6.1-fallback.dif as now upstream
+
+---
+Fri Mar 22 08:59:22 UTC 2019 - Dr. Werner Fink 
+
+- Reintroduce patch ncurses-6.1-fallback.dif to fix boo#1130091 
+
+---
+Tue Mar 19 09:16:38 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20190317
+  + regenerate llib-* files.
+  + modify tic to also use new function for user-defined capability info.
+  + modify _nc_parse_entry() to check if a user-defined capability has
+an unexpected type; ignore it in that case.
+  + fix a special case of link-anchors in generated Ada html files.
+  + use newer rel=author tag in generated html rather than rev=made,
+which did not become accepted.
+
+---
+Mon Mar 11 08:19:08 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20190309
+  + in-progress changes to add parameter-checking for common user-defined
+capabilities in tic.
+  + update MKcodes.awk and MKnames.awk to ignore the new "userdef"
+data in Caps-ncurses (cf: 20190302).
+
+---
+Mon Feb 25 08:18:08 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20190223
+  + fix typo in adds200 -TD
+  + add tic check for consistent alternate character set capabilities.
+  + improve check in mvcur() to decide whether to use hard-tabs, using
+xt, tbc and hts as clues.
+  + replace check in reset command for obsolete "pt" capability using
+tbc and hts capabilities as clues (report by Nicolas Marriott).
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.Zt837n/_old  2019-03-27 16:20:31.599540727 +0100
+++ /var/tmp/diff_new_pack.Zt837n/_new  2019-03-27 16:20:31.603540726 +0100
@@ -74,7 +74,7 @@
 Source7:baselibs.conf
 Patch0: ncurses-6.1.dif
 Patch1: ncurses-5.9-ibm327x.dif
-Patch4: ncurses-5.7-tack.dif
+Patch2: ncurses-5.7-tack.dif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %global _miscdir%{_datadir}/misc
 %global _incdir %{_includedir}
@@ -310,7 +310,7 @@
 tar -xzf %{S:5}
 mv tack-* tack
 %patch1 -p0 -b .327x
-%patch4 -p0 -b .hs
+%patch2 -p0 -b .hs
 %patch0 -p0 -b .p0
 
 %build

++ ncurses-6.1-patches.tar.bz2 ++
 19508 lines of diff (skipped)

++ ncurses-6.1.dif ++
--- /var/tmp/diff_new_pack.Zt837n/_old  2019-03-27 16:20:34.195540186 +0100
+++ /var/tmp/diff_new_pack.Zt837n/_new  2019-03-27 16:20:34.195540186 +0100
@@ -311,7 +311,7 @@
  #undef  NCURSES_OSPEED 
 --- include/tic.h
 +++ include/tic.h  2019-02-06 07:51:48.445355328 +
-@@ -221,12 +221,12 @@ struct alias
+@@ -236,12 +236,12 @@ struct alias
   */
  
  /* out-of-band values for representing absent capabilities */
@@ -784,7 +784,7 @@
  ibm5081-c|ibmmpel-c|IBM 5081 1024x1024 256/4096 Megapel enhanced color 
display,
 --- ncurses/Makefile.in
 +++ ncurses/Makefile.in2019-02-06 07:51:48.453355178 +
-@@ -219,7 +219,7 @@ $(DESTDIR)$(libdir) :
+@@ -221,7 +221,7 @@ $(DESTDIR)$(libdir) :
  ../lib : ; mkdir $@
  
  ./fallback.c : $(tinfo)/MKfallback.sh
@@ -795,7 +795,7 @@
$(SHELL) -e $(base)/MKlib_gen.sh "$(CPP) $(CPPFLAGS)" "$(AWK)" 
generated <../include/curses.h >$@
 --- ncurses/curses.priv.h
 +++ ncurses/curses.priv.h  2019-02-06 07:51:48.453355178 +
-@@ -2205,6 +2205,8 @@ extern NCURSES_EXPORT(char *) _nc_tracec
+@@ -2224,6 +2224,8 @@ extern NCURSES_EXPORT(char *) _nc_tracec
  extern NCURSES_EXPORT(char *) _nc_tracemouse (SCREEN *, MEVENT const *);
  extern NCURSES_EXPORT(char *) _nc_trace_mmask_t 

commit ncurses for openSUSE:Factory

2019-02-24 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2019-02-24 16:54:41

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new.28833 (New)


Package is "ncurses"

Sun Feb 24 16:54:41 2019 rev:153 rq:676967 version:6.1

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2019-02-14 
14:11:47.880267977 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new.28833/ncurses.changes   
2019-02-24 16:54:52.324923701 +0100
@@ -1,0 +2,12 @@
+Mon Feb 18 08:56:21 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20190216
+  + improve manual page description of TABSIZE.
+  + add test/demo_tabs program.
+
+---
+Wed Feb 13 17:12:33 UTC 2019 - Jan Engelhardt 
+
+- Implement library packaging guideline: split static libraries.
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.Ah3g2o/_old  2019-02-24 16:54:53.796923001 +0100
+++ /var/tmp/diff_new_pack.Ah3g2o/_new  2019-02-24 16:54:53.800922999 +0100
@@ -215,6 +215,30 @@
 This package contains the headers needed to build against
 the ncurses library in its ABI version 6 form.
 
+%package -n ncurses-devel-static
+Summary:Static libraries for the ncurses6 terminal control library
+License:MIT
+Group:  Development/Libraries/C and C++
+Provides:   ncurses-devel:%{_libdir}/libform.a
+Provides:   ncurses-devel:%{_libdir}/libformw.a
+Provides:   ncurses-devel:%{_libdir}/libmenu.a
+Provides:   ncurses-devel:%{_libdir}/libmenuw.a
+Provides:   ncurses-devel:%{_libdir}/libncurses++.a
+Provides:   ncurses-devel:%{_libdir}/libncurses++w.a
+Provides:   ncurses-devel:%{_libdir}/libncurses.a
+Provides:   ncurses-devel:%{_libdir}/libncurses.a
+Provides:   ncurses-devel:%{_libdir}/libncursesw.a
+Provides:   ncurses-devel:%{_libdir}/libpanel.a
+Provides:   ncurses-devel:%{_libdir}/libpanelw.a
+Provides:   ncurses-devel:%{_libdir}/libtic.a
+Provides:   ncurses-devel:%{_libdir}/libticw.a
+Provides:   ncurses-devel:%{_libdir}/libtinfo.a
+Requires:   ncurses-devel = %{version}-%{release}
+
+%description -n ncurses-devel-static
+This package contains the static library files for
+the ncurses library in its ABI version 6 form.
+
 %package -n ncurses5-devel
 Summary:Development files for the ncurses5 terminal control library
 License:MIT
@@ -229,6 +253,30 @@
 This package contains the headers needed to build against
 the ncurses library in its ABI version 5 form.
 
+%package -n ncurses5-devel-static
+Summary:Static libraries for the ncurses5 terminal control library
+License:MIT
+Group:  Development/Libraries/C and C++
+Provides:   ncurses5-devel:%{_libdir}/ncurses5/libform.a
+Provides:   ncurses5-devel:%{_libdir}/ncurses5/libformw.a
+Provides:   ncurses5-devel:%{_libdir}/ncurses5/libmenu.a
+Provides:   ncurses5-devel:%{_libdir}/ncurses5/libmenuw.a
+Provides:   ncurses5-devel:%{_libdir}/ncurses5/libncurses++.a
+Provides:   ncurses5-devel:%{_libdir}/ncurses5/libncurses++w.a
+Provides:   ncurses5-devel:%{_libdir}/ncurses5/libncurses.a
+Provides:   ncurses5-devel:%{_libdir}/ncurses5/libncurses.a
+Provides:   ncurses5-devel:%{_libdir}/ncurses5/libncursesw.a
+Provides:   ncurses5-devel:%{_libdir}/ncurses5/libpanel.a
+Provides:   ncurses5-devel:%{_libdir}/ncurses5/libpanelw.a
+Provides:   ncurses5-devel:%{_libdir}/ncurses5/libtic.a
+Provides:   ncurses5-devel:%{_libdir}/ncurses5/libticw.a
+Provides:   ncurses5-devel:%{_libdir}/ncurses5/libtinfo.a
+Requires:   ncurses5-devel = %{version}-%{release}
+
+%description -n ncurses5-devel-static
+This package contains the static library files for
+the ncurses library in its ABI version 5 form.
+
 %package -n tack
 Summary:Terminfo action checker
 License:GPL-2.0-or-later
@@ -1095,7 +1143,6 @@
 %{_incdir}/*.h
 %{_incdir}/ncurses/*.h
 %{_incdir}/ncursesw/*.h
-%{_libdir}/lib*.a
 %{_libdir}/lib*.so
 %{_libdir}/pkgconfig/*[clmosuw\+].pc
 %doc %{_mandir}/man1/ncurses*6-config.1.gz
@@ -1105,6 +1152,9 @@
 %doc %{_mandir}/man3/*.gz
 %doc %{_mandir}/man7/*.gz
 
+%files -n ncurses-devel-static
+%{_libdir}/lib*.a
+
 %files -n ncurses5-devel
 %defattr(-,root,root)
 %{_bindir}/ncurses*5-config
@@ -1115,11 +1165,13 @@
 %{_incdir}/ncurses5/ncurses/*.h
 %{_incdir}/ncurses5/ncursesw/*.h
 %dir %{_libdir}/ncurses5/
-%{_libdir}/ncurses5/lib*.a
 %{_libdir}/ncurses5/lib*.so
 %{_libdir}/pkgconfig/*5.pc
 %doc %{_mandir}/man1/ncurses*5-config.1.gz
 
+%files -n ncurses5-devel-static

commit ncurses for openSUSE:Factory

2019-02-14 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2019-02-14 14:11:42

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new.28833 (New)


Package is "ncurses"

Thu Feb 14 14:11:42 2019 rev:152 rq:673377 version:6.1

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2019-01-29 
14:38:40.335532856 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new.28833/ncurses.changes   
2019-02-14 14:11:47.880267977 +0100
@@ -1,0 +2,51 @@
+Mon Feb 11 09:46:34 UTC 2019 - Dr. Werner Fink 
+
+- Fix configure scripts as well as pkg-config configurations
+  that is correct paths in pkg-config and use pkg-config to
+  configure the configure scripts as well
+- Add ncurses patch 20190209
+  + add check in tic to provide warnings for mismatched number of
+parameters in the documented user-capability extensions.
+
+---
+Wed Feb  6 07:45:22 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20190202
+  + modify rpm test-package ".spec" file to work around naming conflict
+with Redhat's package for ncurses6.
+  + modify no-leaks code in test/picsmap to avoid non-standard tdestroy.
+  + amend change to configure script which altered the top-level makefile
+to avoid attempting to install the terminfo database when it was not
+configured, to allow for installing the ".pc" files which are also
+in the misc directory (report by Steve Wills).
+- Add ncurses patch 20190126
+  + change some "%define" statements in test-packages for RPMs to
+"%global" to work around changes in rpm 4.14 from recent Redhat.
+  + fixes for O_INPUT_FIELD extension (patch by Leon Winter).
+  + eliminate fixed buffer-size when reading $TERMCAP variable.
+  + correct logic in read_entry.c which prevented $TERMCAP variable from
+being interpreted as a fallback to terminfo entry (prompted by
+Savannah #54556, cf: 20110924).
+- Add ncurses patch 20190121
+  + add a check in test/configure to work around non-ncurses termcap.h
+file in Slackware.
+  + corrected flag for "seq" method of db 1.8.5 interface, needed by toe
+on some of the BSDs.
+  + updated "string-hacks" feature.
+  + minor improvements to manpage typography.
+  + corrected conditionally-compiled limit on color pairs (report by
+"Hudd").
+  + add -x option to test/pair_content, test/color_content for testing
+init_extended_pair, extended_pair_content, init_extended_color,
+extended_color_content
+  + add -p option to test/pair_content, test/color_content to show the
+return values from the tested functions.
+  + improve manual page curs_color.3x discussion of error returns and
+extensions. 
+  + add O_INPUT_FIELD extension to form library (patch by Leon Winter).
+  + override/suppress --enable-db-install if --disable-database configure
+option was given.
+  + change a too-large terminal entry in tic from a fatal error to a
+warning (prompted by discussion with Gabriele Balducci).
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.B1T12j/_old  2019-02-14 14:11:48.880267479 +0100
+++ /var/tmp/diff_new_pack.B1T12j/_new  2019-02-14 14:11:48.884267477 +0100
@@ -547,10 +547,12 @@
 cp -p %{root}%{_libdir}/libtinfow.so.%{version} 
libtinfow.so.%{version}.back
 %endif
 ln -sf %{_incdir}/ncurses/{curses,ncurses,term,termcap}.h %{root}%{_incdir}
-sh %{S:6} --cflags "-D_GNU_SOURCE -I%{_incdir}/ncursesw" --libs 
"-lncursesw" \
-   --libs "-l%{soname_tinfo}" %{root}%{_bindir}/ncursesw6-config
 mkdir pc
+PKG_CONFIG_PATH=$PWD/pc:$(pkg-config --variable pc_path pkg-config)
+export PKG_CONFIG_PATH
 mv -f %{root}%{_libdir}/pkgconfig/*.pc pc/
+sh %{S:6} --cflags "$(pkg-config --cflags ncursesw)" --libs "$(pkg-config 
--libs ncursesw)" \
+   %{root}%{_bindir}/ncursesw6-config
 #
 # Some tests
 #
@@ -623,8 +625,6 @@
 # must not use %jobs here (would lead to: ln: ncurses.h already exists)
 make install.libs install.includes DESTDIR=%{root} 
includedir=%{_incdir}/ncurses5 includesubdir=/ncurses libdir=%{_libdir}/ncurses5
 ln -sf %{_incdir}/ncurses5/ncurses/{curses,ncurses,term}.h 
%{root}%{_incdir}/ncurses5/
-sh %{S:6} --cflags "-D_GNU_SOURCE -I%{_incdir}/ncurses5/ncurses 
-I%{_incdir}/ncurses5" --libs "-L%{_libdir}/ncurses5 -lncurses" \
-   --libs "-ltinfo" %{root}%{_bindir}/ncurses5-config
 pushd man
sh ../edit_man.sh normal installing %{root}%{_mandir} . 
ncurses5-config.1
 popd
@@ -637,8 +637,13 @@
tic) sed -ri 's@^(Requires.private: ).*@\1tinfo5@'   

commit ncurses for openSUSE:Factory

2019-01-29 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2019-01-29 14:38:35

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new.28833 (New)


Package is "ncurses"

Tue Jan 29 14:38:35 2019 rev:151 rq:665632 version:6.1

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2019-01-08 
12:15:22.401100622 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new.28833/ncurses.changes   
2019-01-29 14:38:40.335532856 +0100
@@ -1,0 +2,22 @@
+Mon Jan 14 07:24:52 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20190112
+  + fix typo in term(5), improve explanation of format (report by Otto
+Modinos).
+  + add nsterm-direct -TD
+  + use SGR 1006 mouse for konsole-base -TD
+  + use SGR 1006 mouse for putty -TD
+  + add ti703/ti707, ti703-w/ti707-w (Robert Clausecker)
+
+---
+Mon Jan  7 07:46:46 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20190105
+  + add dummy "check" rule in top-level and test-Makefile to simply
+building test-packages for Arch.
+  + modify configure script to avoid conflict with a non-POSIX feature 
+that enables all parts of the system headers by default.  Some
+packagers have come to rely upon this behavior (FreeBSD #234049).
+  + update config.guess, config.sub
+
+---



Other differences:
--
++ ncurses-5.9-ibm327x.dif ++
--- /var/tmp/diff_new_pack.oJPpNH/_old  2019-01-29 14:38:40.951532113 +0100
+++ /var/tmp/diff_new_pack.oJPpNH/_new  2019-01-29 14:38:40.951532113 +0100
@@ -4,7 +4,7 @@
 
 --- misc/terminfo.src
 +++ misc/terminfo.src  2018-10-29 10:23:47.271511864 +
-@@ -16681,8 +16681,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
+@@ -16690,8 +16690,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
  #
  
  ibm327x|line mode IBM 3270 style,

++ ncurses-6.1-patches.tar.bz2 ++
 24326 lines of diff (skipped)

++ ncurses-6.1.dif ++
--- /var/tmp/diff_new_pack.oJPpNH/_old  2019-01-29 14:38:41.811531074 +0100
+++ /var/tmp/diff_new_pack.oJPpNH/_new  2019-01-29 14:38:41.811531074 +0100
@@ -22,7 +22,7 @@
  20 files changed, 248 insertions(+), 81 deletions(-)
 
 --- aclocal.m4
-+++ aclocal.m4 2018-12-17 07:11:25.212263133 +
 aclocal.m4 2019-01-07 07:47:20.064859035 +
 @@ -580,7 +580,7 @@ AC_MSG_CHECKING([for size of bool])
  AC_CACHE_VAL(cf_cv_type_of_bool,[
rm -f cf_test.out
@@ -151,7 +151,7 @@
  esac
  done
 --- configure
-+++ configure  2018-12-17 07:11:25.216263058 +
 configure  2019-01-07 07:47:20.068858960 +
 @@ -5485,7 +5485,7 @@ echo $ECHO_N "checking for an rpath opti
fi
;;
@@ -161,7 +161,7 @@
;;
(openbsd[2-9].*|mirbsd*)
LD_RPATH_OPT="-Wl,-rpath,"
-@@ -13582,12 +13582,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
-@@ -13712,9 +13715,9 @@ cat >>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h\E[1;24r\E[24;1H,
-@@ -4004,6 +4015,7 @@ putty+fnkeys+sco|SCO fn-keys for PuTTY,
+@@ -4007,6 +4018,7 @@ putty+fnkeys+sco|SCO fn-keys for PuTTY,
  # retrieving the window title, and for setting the window size (i.e., using
  # "resize -s"), though it does not pass SIGWINCH to the application if the
  # user resizes the window with the mouse.
@@ -489,7 +489,7 @@
  teraterm2.3|Tera Term Pro,
km,
ncv#43, vt@,
-@@ -4012,7 +4024,7 @@ teraterm2.3|Tera Term Pro,
+@@ -4015,7 +4027,7 @@ teraterm2.3|Tera Term Pro,
 \264v\301w\302x\263y\363z\362{\343|\330}\234~\376,
blink=\E[5m, bold=\E[1m, civis=\E[?25l, clear=\E[H\E[J,
cnorm=\E[?25h, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH,
@@ -498,7 +498,7 @@
dl1=\E[M, ech=\E[%p1%dX, ed=\E[J, el=\E[K, el1=\E[1K,
flash=\E[?5h$<200/>\E[?5l, hpa=\E[%i%p1%dG,
il=\E[%p1%dL, il1=\E[L, kdch1=\E[3~, kf1=\E[11~,
-@@ -4236,6 +4248,7 @@ xterm-old|antique xterm version,
+@@ -4239,6 +4251,7 @@ xterm-old|antique xterm version,
use=xterm-r6,
  # This is the base xterm entry for the xterm supplied with XFree86 3.2 & up.
  # The name has been changed and some aliases have been removed.
@@ -506,7 +506,7 @@
  xterm-xf86-v32|xterm terminal emulator (XFree86 3.2 Window System),
OTbs, am, bce, km, mir, msgr, xenl, XT,
cols#80, it#8, lines#24, ncv@,
-@@ -4245,7 +4258,7 @@ xterm-xf86-v32|xterm terminal emulator (
+@@ -4248,7 +4261,7 @@ xterm-xf86-v32|xterm terminal emulator (

commit ncurses for openSUSE:Factory

2019-01-08 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2019-01-08 12:15:19

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new.28833 (New)


Package is "ncurses"

Tue Jan  8 12:15:19 2019 rev:150 rq:662428 version:6.1

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2018-12-03 
10:03:39.464079831 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new.28833/ncurses.changes   
2019-01-08 12:15:22.401100622 +0100
@@ -1,0 +2,68 @@
+Wed Jan  2 09:43:41 UTC 2019 - Dr. Werner Fink 
+
+- Add ncurses patch 20181229
+  + improve man/curs_mouse.3x with regard to xterm
+  + modify tracemunch to accept filename parameters in addition to use
+as a pipe/filter.
+  + minor optimization to reduce calls to _nc_reserve_pairs (prompted by
+discussion with Bryan Christ).
+  + add test/pair_content.c and test/color_content.c
+  + modify infocmp to omit filtering of "OTxx" names which are used for
+obsolete capabilities, when the output is sorted by long-names.
+Doing this helps when making a table of the short/long capability
+names.
+
+---
+Mon Dec 17 07:10:49 UTC 2018 - Dr. Werner Fink 
+
+- Add ncurses patch 20181215
+  + several fixes for gcc8 strict compiler warnings.
+  + fix a typo in comments (Aaron Gyes).
+  + add nsterm-build309 to replace nsterm-256color, assigning the latter
+as an alias of nsterm, to make mouse work with nsterm-256color -TD
+  + base gnome-256color entry on "gnome", not "vte", for consistency -TD
+  + updates for configure macros from work on tin and xterm:
++ CF_GNU_SOURCE, allow for Cygwin's newlib when checking for the
+  _DEFAULT_SOURCE symbol.
++ CF_VA_COPY, add fallback check if neither va_copy/__va_copy is
+  supported, to try copying the pointers for va_list, or as an array.
+  Also add another fallback check, for __builtin_va_copy(), which
+  could be used with AIX xlc in c89 mode.
+
+---
+Mon Dec 10 08:54:31 UTC 2018 - Dr. Werner Fink 
+
+- Add ncurses patch 20181208
+  + modify wbkgd() and wbkgrnd() to improve compatibility with SVr4
+curses, changing the way the window rendition is updated when the
+background character is modified (report by Valery Ushakov).
+
+---
+Mon Dec  3 06:49:35 UTC 2018 - Dr. Werner Fink 
+
+- Add ncurses patch 20181201
+  + add midnightbsd to CF_XOPEN_SOURCE macro (patch by Urs Jansen).
+  + add "@" command to test/ncurses F-test, to allow rapid jump to
+different character pages.
+  + update config.guess, config.sub from
+  http://git.savannah.gnu.org/cgit/config.git
+
+---
+Mon Nov 26 12:42:11 UTC 2018 - Dr. Werner Fink 
+
+ 
+- Add ncurses patch 20181125
+  + build-fix (reports by Chih-Hsuan Yen, Sven Joachim).
+- Add ncurses patch 20181124
+  + check --with-fallbacks option to ensure there is a value, and add
+the fallback information to top-level Makefile summary.
+  + add some traces in initialization to show whether a fallback entry is
+used.
+  + build-fix for test/movewindow with ncurses-examples on Solaris.
+  + add "-l" option to test/background, to dump screen contents in a form
+that lets different curses implementations be compared.
+  + modify the initialization checks for mouse so that the xterm+sm+1006
+block will work with terminal descriptions not mentioning xterm
+(report by Tomas Janousek).
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.5Hth0R/_old  2019-01-08 12:15:23.049100013 +0100
+++ /var/tmp/diff_new_pack.5Hth0R/_new  2019-01-08 12:15:23.049100013 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ncurses
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via https://bugs.opensuse.org/
+# Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
 

++ ncurses-6.1-patches.tar.bz2 ++
 38270 lines of diff (skipped)

++ ncurses-6.1.dif ++
--- /var/tmp/diff_new_pack.5Hth0R/_old  2019-01-08 12:15:23.849099261 +0100
+++ 

commit ncurses for openSUSE:Factory

2018-12-03 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2018-12-03 10:03:36

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new.19453 (New)


Package is "ncurses"

Mon Dec  3 10:03:36 2018 rev:149 rq:651982 version:6.1

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2018-11-12 
09:49:39.572443443 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new.19453/ncurses.changes   
2018-12-03 10:03:39.464079831 +0100
@@ -1,0 +2,30 @@
+Wed Nov 21 11:37:09 UTC 2018 - Dr. Werner Fink 
+
+- Remove screen.xterm from terminfo data base (boo#1103320) as with
+  this screen uses fallback TERM=screen
+
+---
+Mon Nov 19 10:57:18 UTC 2018 - Dr. Werner Fink 
+
+- Add ncurses patch 20181117
+  + ignore the hex/b64 $TERMINFO in toe's listing.
+  + correct a status-check in _nc_read_tic_entry() so that if reading
+a hex/b64 $TERMINFO, and the $TERM does not match, fall-through to
+the compiled-in search list.
+
+---
+Mon Nov 12 14:44:30 UTC 2018 - Dr. Werner Fink 
+
+- For screen.xterm remove also `rep' feature (repeat char) this
+  might help on boo#1103320
+
+---
+Mon Nov 12 07:56:07 UTC 2018 - Dr. Werner Fink 
+
+- Add ncurses patch 20181110
+  + several workarounds to ensure proper C compiler used in parts of
+Ada95 tree.
+  + update config.guess, config.sub from
+  http://git.savannah.gnu.org/cgit/config.git
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.Yqs29u/_old  2018-12-03 10:03:40.236079127 +0100
+++ /var/tmp/diff_new_pack.Yqs29u/_new  2018-12-03 10:03:40.236079127 +0100
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -963,11 +963,11 @@
 # Better screen support and workaround about missing terminfo entries
 # might be help on boo#812067 as well as on boo#935736 but may cause
 # boo#940459  (which should be fixed by screen its self!)
+rm -vf  %{buildroot}%{terminfo s/screen.xterm}
 (cat > screen.list) <<-EOF
%{terminfo s/screen.gnome}
%{terminfo s/screen.konsole}
%{terminfo s/screen.linux}
-   %{terminfo s/screen.xterm}
EOF
 (cat > iterm.list) <<-EOF
%{terminfo i/iTerm.app}

++ ncurses-6.1-patches.tar.bz2 ++
 17245 lines of diff (skipped)

++ ncurses-6.1.dif ++
--- /var/tmp/diff_new_pack.Yqs29u/_old  2018-12-03 10:03:40.928078496 +0100
+++ /var/tmp/diff_new_pack.Yqs29u/_new  2018-12-03 10:03:40.928078496 +0100
@@ -152,7 +152,7 @@
  done
 --- configure
 +++ configure  2018-10-29 10:24:12.319041330 +
-@@ -5484,7 +5484,7 @@ echo $ECHO_N "checking for an rpath opti
+@@ -5485,7 +5485,7 @@ echo $ECHO_N "checking for an rpath opti
fi
;;
(linux*|gnu*|k*bsd*-gnu|freebsd*)
@@ -161,7 +161,7 @@
;;
(openbsd[2-9].*|mirbsd*)
LD_RPATH_OPT="-Wl,-rpath,"
-@@ -13561,12 +13561,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
-@@ -13691,9 +13694,9 @@ cat >>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <

commit ncurses for openSUSE:Factory

2018-11-12 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2018-11-12 09:49:26

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Mon Nov 12 09:49:26 2018 rev:148 rq:646383 version:6.1

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2018-10-18 
15:28:28.418846389 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2018-11-12 
09:49:39.572443443 +0100
@@ -1,0 +2,26 @@
+Mon Oct 29 10:22:26 UTC 2018 - Dr. Werner Fink 
+
+- Add Add ncurses patch 20181027
+  + add OpenGL clients alacritty and kitty -TD
+  + add Smulx for tmux, vte-2018 -Nicholas Marriott
+
+---
+Mon Oct 22 11:23:20 UTC 2018 - Dr. Werner Fink 
+
+- Add ncurses patch 20181020
+  + ignore $TERMINFO as a default value in configure script if it came
+from the infocmp -Q option.
+  + allow value for --with-versioned-syms to be a relative pathname
+  + add a couple of broken-linker symbols to the list of versioned
+symbols to help with link-time optimization versus weak symbols.
+  + apply shift/control/alt logic when decoding xterm's 1006 mode to
+wheel-mouse events (Redhat #1610681).
+
+---
+Mon Oct 15 06:57:44 UTC 2018 - Dr. Werner Fink 
+
+- Add ncurses patch 20181013
+  + amend change from 20180818, which undid a fix for the $INSTALL value
+to make it an absolute path.
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.B8dlBV/_old  2018-11-12 09:49:40.428442156 +0100
+++ /var/tmp/diff_new_pack.B8dlBV/_new  2018-11-12 09:49:40.432442149 +0100
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via https://bugs.opensuse.org/
+# Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
 
@@ -59,9 +59,9 @@
 Version:6.1
 Release:0
 Summary:Terminal control library
+#Git:   http://ncurses.scripts.mit.edu
 License:MIT
 Group:  System/Base
-#Git:   http://ncurses.scripts.mit.edu
 Url:http://www.invisible-island.net/ncurses/ncurses.html
 Source0:ftp://ftp.invisible-island.net/ncurses/ncurses-6.1.tar.gz
 Source1:ncurses-6.1-patches.tar.bz2

++ ncurses-5.9-ibm327x.dif ++
--- /var/tmp/diff_new_pack.B8dlBV/_old  2018-11-12 09:49:40.484442071 +0100
+++ /var/tmp/diff_new_pack.B8dlBV/_new  2018-11-12 09:49:40.484442071 +0100
@@ -3,8 +3,8 @@
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 --- misc/terminfo.src
-+++ misc/terminfo.src  2018-07-22 09:00:18.872965895 +
-@@ -16498,8 +16498,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
 misc/terminfo.src  2018-10-29 10:23:47.271511864 +
+@@ -16681,8 +16681,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
  #
  
  ibm327x|line mode IBM 3270 style,

++ ncurses-6.1-patches.tar.bz2 ++
 30880 lines of diff (skipped)

++ ncurses-6.1.dif ++
 616 lines (skipped)
 between /work/SRC/openSUSE:Factory/ncurses/ncurses-6.1.dif
 and /work/SRC/openSUSE:Factory/.ncurses.new/ncurses-6.1.dif




commit ncurses for openSUSE:Factory

2018-10-18 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2018-10-18 15:28:25

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Thu Oct 18 15:28:25 2018 rev:147 rq:641198 version:6.1

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2018-05-07 
14:50:30.411978212 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2018-10-18 
15:28:28.418846389 +0200
@@ -1,0 +2,253 @@
+Wed Oct 10 16:10:48 UTC 2018 - sch...@suse.de
+
+- Use -rpath-link when building the test suite to use the just built
+  libraries
+
+---
+Mon Oct  8 07:05:41 UTC 2018 - Dr. Werner Fink 
+
+- Add ncurses patch 6.1-20181006
+  + improve a configure check to work with newer optimizers (report by
+Denis Pronin, Gentoo #606142).
+  + fix typo in tput.c (Sven Joachim, cf: 20180825).
+
+---
+Mon Oct  1 06:43:30 UTC 2018 - Dr. Werner Fink 
+
+- Add ncurses patch 6.1-20180929
+  + fix typo in tvi955 -TD
+  + corrected acsc for regent60 -TD
+  + add alias n7900 -TD
+  + corrected acsc for tvi950 -TD
+  + remove bogus kf0 from tvi950 -TD
+  + added function-key definitions to agree with Televideo 950 manual -TD
+  + add bel to tvi950 -TD
+  + add shifted function-keys to regent60 -TD
+  + renumber regent40 function-keys to match manual -TD
+  + add cd (clr_eos) to adds200 -TD
+
+---
+Mon Sep 24 06:48:45 UTC 2018 - Dr. Werner Fink 
+
+- Add ncurses patch 6.1-20180923
+  + build-fix: remove a _tracef call which was used for debugging (report
+by Chris Clayton).
+- Add ncurses patch 6.1-20180922
+  + ignore interrupted system-call in test/ncurses's command-line, e.g.,
+if the terminal were resized.
+  + add shift/control/alt logic for decoding xterm's 1006 mode (Redhat
+#1610681, cf: 20141011).
+  + modify rpm test-packages to not use --disable-relink with Redhat,
+since Fedora 28's tools do not work with that feature.
+
+---
+Mon Sep 10 09:18:20 UTC 2018 - Dr. Werner Fink 
+
+- Add ncurses patch 6.1-20180908
+  + document --with-pcre2 configure option in INSTALL.
+  + improve workaround for special case in PutAttrChar() where a cell is
+marked as alternate-character set, to handle a case where the
+character in the cell does not correspond to any of the ASCII
+fallbacks (report by Leon Winter, cf: 20180505).
+  + amend change to form library which attempted to avoid unnecessary
+update of cursor position in non-public fields, to simply disable
+output in this case (patch by Leon Winter, cf: 20180414).
+  + improve check for LINE_MAX runtime limit, to accommodate broken
+implementations of sysconf().
+
+---
+Mon Sep  3 11:10:11 UTC 2018 - Dr. Werner Fink 
+
+- Add ncurses patch 6.1-20180901
+  + improve manual page for wgetnstr, giving background for the length
+parameter.
+  + define a limit for wgetnstr, wgetn_wstr when length is negative or
+"too large".
+  + update configure script to autoconf 2.52.20180819 (Debian #887390).
+
+---
+Mon Aug 27 07:56:48 UTC 2018 - wer...@suse.de
+
+- Add ncurses patch 6.1-20180825
+  + add a section to tput manual page clarifying how it determines the
+terminal size (prompted by discussion with Grant Jenks).
+  + add "--disable-relink" to rpm test-packages, for consistency with the
+deb test-packages.
+  + split spec-file into ncurses6.spec and ncursest6.spec to work around
+toolset breakage in Fedora 28.
+  + drop mention of "--disable-touching", which was not in the final
+20180818 updates.
+- Add ncurses patch 6.1-20180818
+  + build-fix for PDCurses with ncurses-examples.
+  + improved CF_CC_ENV_FLAGS.
+  + modify configure scripts to reduce relinking/ranlib during library
+install (Debian #903790):
++ use "install -p" when available, to avoid need for ranlib of
+  static libraries.
++ modify scripts which use "--disable-relink" to add a 1-second
+  sleep to work around tools which use whole-second timestamps, e.g.,
+  in utime() rather than the actual file system resolution.
+  + add "--disable-touching" option for using "install -p" option during
+the install, e.g., so that header-files have a predictable timestamp.
+
+---
+Thu Aug  9 11:26:52 UTC 2018 - tchva...@suse.com
+
+- Fix typo screeen -> screen bsc#1104264
+

commit ncurses for openSUSE:Factory

2018-05-07 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2018-05-07 14:50:19

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Mon May  7 14:50:19 2018 rev:146 rq:602959 version:6.1

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2018-04-11 
13:47:01.515280032 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2018-05-07 
14:50:30.411978212 +0200
@@ -1,0 +2,26 @@
+Sun Apr 15 07:53:41 UTC 2018 - wer...@suse.de
+
+- Add ncurses patch 6.1-20180414
+  + modify form library to optionally delay cursor movement on a field
+edge/boundary (patch by Leon Winter).
+  + modify form library to avoid unnecessary update of cursor position in
+non-public fields (patch by Leon Winter).
+  + remove unused _nc_import_termtype2() function.
+  + also add/improve null-pointer checks in other places
+  + add a null-pointer check in _nc_parse_entry to handle an error when
+a use-name is invalid syntax (report by Chung-Yi Lin).
+
+---
+Mon Apr  9 09:33:21 UTC 2018 - wer...@suse.de
+
+- Add ncurses patch 6.1-20180407
+  + clarify in manual pages that vwprintw and vwscanw are obsolete,
+not part of X/Open Curses since 2007.
+  + use "const" in some prototypes rather than NCURSES_CONST where X/Open
+Curses was updated to do this, e.g., wscanw, newterm, the terminfo
+interface.  Also use "const" for consistency in the termcap
+interface, which was withdrawn by X/Open Curses in Issue 5 (2007).
+As of Issue 7, X/Open Curses still lacks "const" for certain return
+values, e.g., keyname().
+
+---



Other differences:
--
++ ncurses-5.9-ibm327x.dif ++
--- /var/tmp/diff_new_pack.NyOM16/_old  2018-05-07 14:50:32.583910440 +0200
+++ /var/tmp/diff_new_pack.NyOM16/_new  2018-05-07 14:50:32.587910315 +0200
@@ -3,8 +3,8 @@
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 --- misc/terminfo.src
-+++ misc/terminfo.src  2018-02-26 09:11:11.405411875 +
-@@ -16487,8 +16487,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
 misc/terminfo.src  2018-04-09 09:36:58.372082389 +
+@@ -16481,8 +16481,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
  #
  
  ibm327x|line mode IBM 3270 style,

++ ncurses-6.1-patches.tar.bz2 ++
 2632 lines of diff (skipped)

++ ncurses-6.1.dif ++
--- /var/tmp/diff_new_pack.NyOM16/_old  2018-05-07 14:50:32.895900705 +0200
+++ /var/tmp/diff_new_pack.NyOM16/_new  2018-05-07 14:50:32.899900581 +0200
@@ -22,7 +22,7 @@
  20 files changed, 248 insertions(+), 81 deletions(-)
 
 --- aclocal.m4
-+++ aclocal.m4 2018-04-03 09:30:51.952306743 +
 aclocal.m4 2018-04-09 09:37:20.983663432 +
 @@ -580,7 +580,7 @@ AC_MSG_CHECKING([for size of bool])
  AC_CACHE_VAL(cf_cv_type_of_bool,[
rm -f cf_test.out
@@ -151,7 +151,7 @@
  esac
  done
 --- configure
-+++ configure  2018-04-03 09:30:51.956306670 +
 configure  2018-04-09 09:37:20.991663283 +
 @@ -5972,7 +5972,7 @@ case $cf_cv_system_name in
fi
;;
@@ -288,7 +288,7 @@
# the next lines are needed for linking libtic over libncurses
TINFO_NAME=${LIB_NAME}
 --- include/curses.h.in
-+++ include/curses.h.in2018-04-03 09:30:51.956306670 +
 include/curses.h.in2018-04-09 09:37:20.991663283 +
 @@ -177,6 +177,9 @@ typedef @cf_cv_typeof_chtype@ chtype;
  typedef @cf_cv_typeof_mmask_t@ mmask_t;
  #endif
@@ -300,7 +300,7 @@
   * We need FILE, etc.  Include this before checking any feature symbols.
   */
 --- include/termcap.h.in
-+++ include/termcap.h.in   2018-04-03 09:30:51.956306670 +
 include/termcap.h.in   2018-04-09 09:37:57.598984990 +
 @@ -46,6 +46,8 @@ extern "C"
  {
  #endif /* __cplusplus */
@@ -309,9 +309,9 @@
 +#include 
  #include 
  
- #undef  NCURSES_CONST 
+ #undef  NCURSES_OSPEED 
 --- include/tic.h
-+++ include/tic.h  2018-04-03 09:30:51.956306670 +
 include/tic.h  2018-04-09 09:37:20.991663283 +
 @@ -221,12 +221,12 @@ struct alias
   */
  
@@ -328,7 +328,7 @@
  #define CANCELLED_STRING  (char *)(-1)
  
 --- man/man_db.renames
-+++ man/man_db.renames 2018-04-03 09:30:51.956306670 +
 man/man_db.renames 2018-04-09 09:37:20.991663283 +
 @@ -163,6 +163,7 @@ term.7 term.7
  term_variables.3x terminfo_variables.3ncurses
  terminfo.5terminfo.5
@@ -346,7 +346,7 @@
  #
  getty.1   getty.8
 --- man/ncurses.3x
-+++ man/ncurses.3x 2018-04-03 09:30:51.956306670 +
 

commit ncurses for openSUSE:Factory

2018-04-11 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2018-04-11 13:46:59

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Wed Apr 11 13:46:59 2018 rev:145 rq:593751 version:6.1

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2018-03-30 
11:54:53.020939825 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2018-04-11 
13:47:01.515280032 +0200
@@ -1,0 +2,22 @@
+Wed Apr  4 12:22:26 UTC 2018 - wer...@suse.de
+
+- Add version requirement for packages terminfo and terminfo-base
+  to avoid trouble with old ncurses tools and libraries 
+
+---
+Tue Apr  3 09:30:14 UTC 2018 - wer...@suse.de
+
+- Add ncurses patch 6.1-20180331
+  + improve terminfo write/read by modifying the fourth item of the
+extended header to denote the number of valid strings in the extended
+string table (prompted by a comment in unibilium's sources).
+
+---
+Thu Mar 29 11:30:00 UTC 2018 - wer...@suse.de
+
+- Add ncurses patch 6.1-20180324
+  + amend Scaled256() macro in test/picsmap.c to cover the full range
+0..1000 (report by Roger Pau Monne).
+  + add some checks in tracemunch for undefined variables.
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.qnXXNm/_old  2018-04-11 13:47:02.427247026 +0200
+++ /var/tmp/diff_new_pack.qnXXNm/_new  2018-04-11 13:47:02.431246881 +0200
@@ -112,6 +112,7 @@
 Summary:A terminal descriptions database
 License:MIT
 Group:  System/Base
+Requires:   ncurses >= %{version}
 Recommends: terminfo-screeen = %{version}
 Provides:   ncurses:%{_datadir}/tabset
 
@@ -184,6 +185,7 @@
 Summary:A terminal descriptions database
 License:SUSE-Public-Domain
 Group:  System/Base
+Requires:   terminfo-base = %{version}
 
 %description -n terminfo
 This is the terminfo reference database, maintained in the ncurses

++ ncurses-6.1-patches.tar.bz2 ++
 3026 lines of diff (skipped)

++ ncurses-6.1.dif ++
--- /var/tmp/diff_new_pack.qnXXNm/_old  2018-04-11 13:47:02.611240367 +0200
+++ /var/tmp/diff_new_pack.qnXXNm/_new  2018-04-11 13:47:02.611240367 +0200
@@ -22,7 +22,7 @@
  20 files changed, 248 insertions(+), 81 deletions(-)
 
 --- aclocal.m4
-+++ aclocal.m4 2018-03-05 07:53:48.984265229 +
 aclocal.m4 2018-04-03 09:30:51.952306743 +
 @@ -580,7 +580,7 @@ AC_MSG_CHECKING([for size of bool])
  AC_CACHE_VAL(cf_cv_type_of_bool,[
rm -f cf_test.out
@@ -151,7 +151,7 @@
  esac
  done
 --- configure
-+++ configure  2018-03-05 07:53:48.988265152 +
 configure  2018-04-03 09:30:51.956306670 +
 @@ -5972,7 +5972,7 @@ case $cf_cv_system_name in
fi
;;
@@ -288,7 +288,7 @@
# the next lines are needed for linking libtic over libncurses
TINFO_NAME=${LIB_NAME}
 --- include/curses.h.in
-+++ include/curses.h.in2018-03-05 07:53:48.992265076 +
 include/curses.h.in2018-04-03 09:30:51.956306670 +
 @@ -177,6 +177,9 @@ typedef @cf_cv_typeof_chtype@ chtype;
  typedef @cf_cv_typeof_mmask_t@ mmask_t;
  #endif
@@ -300,7 +300,7 @@
   * We need FILE, etc.  Include this before checking any feature symbols.
   */
 --- include/termcap.h.in
-+++ include/termcap.h.in   2018-03-05 07:53:48.992265076 +
 include/termcap.h.in   2018-04-03 09:30:51.956306670 +
 @@ -46,6 +46,8 @@ extern "C"
  {
  #endif /* __cplusplus */
@@ -311,7 +311,7 @@
  
  #undef  NCURSES_CONST 
 --- include/tic.h
-+++ include/tic.h  2018-03-05 07:53:48.992265076 +
 include/tic.h  2018-04-03 09:30:51.956306670 +
 @@ -221,12 +221,12 @@ struct alias
   */
  
@@ -328,7 +328,7 @@
  #define CANCELLED_STRING  (char *)(-1)
  
 --- man/man_db.renames
-+++ man/man_db.renames 2018-03-05 07:53:48.992265076 +
 man/man_db.renames 2018-04-03 09:30:51.956306670 +
 @@ -163,6 +163,7 @@ term.7 term.7
  term_variables.3x terminfo_variables.3ncurses
  terminfo.5terminfo.5
@@ -346,7 +346,7 @@
  #
  getty.1   getty.8
 --- man/ncurses.3x
-+++ man/ncurses.3x 2018-03-05 07:53:48.992265076 +
 man/ncurses.3x 2018-04-03 09:30:51.956306670 +
 @@ -138,6 +138,10 @@ after the shell environment variable \fB
  [See \fBterminfo\fR(\*n) for further details.]
  .SS Datatypes
@@ -359,7 +359,7 @@
  called \fIwindows\fR, which can be thought of as two-dimensional
  

commit ncurses for openSUSE:Factory

2018-03-30 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2018-03-30 11:54:47

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Fri Mar 30 11:54:47 2018 rev:144 rq:589658 version:6.1

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2018-03-08 
10:41:57.754898422 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2018-03-30 
11:54:53.020939825 +0200
@@ -1,0 +2,24 @@
+Wed Mar 21 07:46:36 UTC 2018 - wer...@suse.de
+
+- Change baselibs.conf to avoid mixed version requirements (bsc#1082744)
+
+---
+Mon Mar 19 09:23:35 UTC 2018 - wer...@suse.de
+
+- Add ncurses patch 6.1-20180317
+  + fix a check in infotocap which may not have detected a problem when
+it should have.
+  + add a check in tic for the case where setf/setb are given using
+different strings, but provide identical results to setaf/setab.
+  + further improve fix for terminfo.5 (patch by Kir Kolyshkin).
+  + reorder loop-limit checks in winsnstr() in case the string has no
+terminating null and only the number of characters is used (patch
+by Gyorgy Jeney).
+
+---
+Thu Mar  8 10:06:24 UTC 2018 - wer...@suse.de
+
+- Avoid opaque libraries for Leap 15 and SLES 15 
+- No tests on Leap 15 and SLES 15
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.Oqgbik/_old  2018-03-30 11:54:53.896908144 +0200
+++ /var/tmp/diff_new_pack.Oqgbik/_new  2018-03-30 11:54:53.900908000 +0200
@@ -433,10 +433,12 @@
--enable-interop\
--with-pthread  \
--enable-reentrant  \
+%if 0%{?suse_version} > 1500
--enable-opaque-curses  \
--enable-opaque-form\
--enable-opaque-menu\
--enable-opaque-panel   \
+%endif
--enable-ext-mouse  \
--enable-widec  \
--with-termlib=%{soname_tinfo}  \
@@ -561,6 +563,7 @@
ldd ./tack
 popd
 unset LD_LIBRARY_PATH
+%if 0%{?suse_version} > 1500
 #
 # Make the test suite for ncursesw6
 #
@@ -574,6 +577,7 @@
make distclean
 popd
 %endif
+%endif
 test ! -L tack || rm -f tack
 make clean
 #
@@ -684,7 +688,7 @@
 #
 # Some tests
 #
-%if 0%{?qemu_user_space_build:1}%{?_crossbuild}
+%if 0%{?qemu_user_space_build:1}%{?_crossbuild} || 0%{?suse_version} <= 1500
echo "Skipping tests due to running under QEMU / cross-building"
 %else
 #
@@ -985,6 +989,7 @@
 %if %{with onlytinfo}
 nm -D %{buildroot}/%{_lib}/libtinfo.so.%{version} | grep -q _nc_read_entry2
 %endif
+%if 0%{?suse_version} > 1500
 pushd test
 expect -d <<-'EOF'
set env(TERM) xterm
@@ -1014,6 +1019,7 @@
EOF
 popd
 %endif
+%endif
 
 %post   -n libncurses5 -p /sbin/ldconfig
 

++ baselibs.conf ++
--- /var/tmp/diff_new_pack.Oqgbik/_old  2018-03-30 11:54:53.968905541 +0200
+++ /var/tmp/diff_new_pack.Oqgbik/_new  2018-03-30 11:54:53.968905541 +0200
@@ -4,8 +4,10 @@
   obsoletes "ncurses- <= "
 libncurses6
   targettype x86 provides "baselibs-x86:/lib/libncurses.so.6"
-  provides "libncurses6- = 6.0"
+  provides "libncurses6- = "
 ncurses-devel
   requires -ncurses-
+  requires "libncurses6- = "
+ncurses5-devel
+  requires -ncurses-
   requires "libncurses5- = "
-  requires "libncurses6- = 6.0"

++ ncurses-6.1-patches.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/patches/ncurses-6.1-20180317.patch 
new/patches/ncurses-6.1-20180317.patch
--- old/patches/ncurses-6.1-20180317.patch  1970-01-01 01:00:00.0 
+0100
+++ new/patches/ncurses-6.1-20180317.patch  2018-03-19 10:20:59.873049607 
+0100
@@ -0,0 +1,360 @@
+# ncurses 6.1 - patch 20180317 - Thomas E. Dickey
+#
+# 
--
+#
+# Ncurses 6.1 is at
+#  ftp.gnu.org:/pub/gnu
+#
+# Patches for ncurses 6.1 can be found at
+#  ftp://ftp.invisible-island.net/ncurses/6.1
+#  http://invisible-mirror.net/archives/ncurses/6.1 
+#
+# 
--
+# ftp://ftp.invisible-island.net/ncurses/6.1/ncurses-6.1-20180317.patch.gz
+# patch by Thomas E. Dickey 
+# created  Sun Mar 18 01:26:15 UTC 2018
+# 
--
+# NEWS |   12 +++
+# VERSION  |2 

commit ncurses for openSUSE:Factory

2018-03-08 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2018-03-08 10:41:55

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Thu Mar  8 10:41:55 2018 rev:143 rq:582535 version:6.1

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2018-02-15 
13:18:55.050325485 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2018-03-08 
10:41:57.754898422 +0100
@@ -1,0 +2,75 @@
+Mon Mar  5 07:48:43 UTC 2018 - wer...@suse.de
+
+- Add ncurses patch 6.1-20180303
+  + modify TurnOn/TurnOff macros in lib_vidattr.c and lib_vid_attr.c to
+avoid expansion of "CUR" in trace.
+  + improve a few lintian warnings in test-packages.
+  + modify lib_setup to avoid calling pthread_self() without first
+verifying that the address is valid, i.e., for weak symbols
+(report/patch by Werner Fink).
+  + modify generated terminfo.5 to not use "expand" and related width
+on the last column of tables, making layout on wide terminals look
+better (adapted from patch by Kir Kolyshkin).
+  + add a category to report_offsets, e.g., "w" for wide-character, "t"
+for threads to make the report more readable.  Reorganized the
+structures reported to make the categories more apparent.
+  + simplify some ifdef's for extended-colors.
+  + add NCURSES_GLOBALS and NCURSES_PRESCREEN to report_offsets, to show
+how similar the different tinfo configurations are.
+- Remove patch ncurses-6.1-weakpthreads.dif now upstream (bsc#1082772)
+- Make expect build check less fragile on timing
+
+---
+Fri Mar  2 10:00:20 UTC 2018 - wer...@suse.de
+
+- Switch back to shared libtinfo only but provide an auxiliary shared
+  library libtinfow to avoid a rebuild of third party programs (bsc#1082772)
+  + Add sanity check if new 32bit API is included in libtinfo
+
+---
+Thu Mar  1 13:39:02 UTC 2018 - wer...@suse.de
+
+- Add patch ncurses-6.1-weakpthreads.dif
+  + Be aware that libtinfo/libtinfw is also used without libpthread
+(boo#1058509)
+- Use expect to run at least two test for normal and wide character
+  version of newdemo from test suite
+
+---
+Mon Feb 26 09:10:07 UTC 2018 - wer...@suse.de
+
+- Add ncurses patch 6.1-20180224
+  + modify _nc_resolve_uses2() to detect incompatible types when merging
+a "use=" clause of extended capabilities.  The problem was seen in a
+defective terminfo integrated from simpleterm sources in 2017,
+compounded by repair in 20180121.
+  + correct Ss/Ms interchange in st-0.7 entry (tmux #1264) -TD
+  + fix remaining flash capabilities with trailing mandatory delays -TD
+  + correct cut/paste in NEWS (report by Sven Joachim).
+
+---
+Mon Feb 19 12:56:33 UTC 2018 - wer...@suse.de
+
+- Add ncurses patch 6.1-20180217
+  + remove incorrect free() from 20170617 changes (report by David Macek).
+  + correct type for "U8" in user_caps.5; it is a number not boolean.
+  + add a null-pointer check in safe_sprintf.c (report by Steven Noonan).
+  + improve fix for Debian #882620 by reusing limit2 variable (report
+Julien Cristau, Sven Joachim).
+
+---
+Thu Feb 15 13:00:37 UTC 2018 - wer...@suse.de
+
+- Add ncurses patch 6.1-20180210
+  + modify misc/Makefile.in to install/uninstall explicit list in case
+the build-directory happens to have no ".pc" files when an uninstall
+is performed (report by Jeffrey Walton).
+  + deprecate safe-sprintf, since the vsnprintf function, which does what
+was needed, was standardized long ago.
+  + add several development/experimental options to development packages.
+  + minor reordering of options in configure script to make the threaded
+and reentrant options distinct from the other extensions which are
+normally enabled.
+- Make reentrant libs opaque
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.qdPqzG/_old  2018-03-08 10:41:58.778861552 +0100
+++ /var/tmp/diff_new_pack.qdPqzG/_new  2018-03-08 10:41:58.782861408 +0100
@@ -23,12 +23,20 @@
 %bcond_with symversion
 %endif
 %bcond_with memleakck
+%bcond_without  onlytinfo
+
+%if %{with onlytinfo}
+%global soname_tinfo tinfo
+%else
+%global soname_tinfo tinfow
+%endif
 
 Name:   ncurses
 #!BuildIgnore: terminfo
 %if %{with hasheddb}
 BuildRequires:  db-devel
 

commit ncurses for openSUSE:Factory

2018-02-15 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2018-02-15 13:18:53

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Thu Feb 15 13:18:53 2018 rev:142 rq:575524 version:6.1

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2018-02-03 
15:37:50.318441488 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2018-02-15 
13:18:55.050325485 +0100
@@ -1,0 +2,16 @@
+Mon Feb  5 08:15:58 UTC 2018 - wer...@suse.de
+
+- Add ncurses patch 6.1-20180203
+  + minor fixes to test/*.h to make them idempotent.
+  + add/use test/parse_rgb.h to show how the "RGB" capability works.
+  + add a clarification in user_caps.5 regarding "RGB" capability.
+  + add extended_slk_color{,_sp} symbols to the appropriate
+package/*.{map,sym} files (report by Sven Joachim, cf: 20170401).
+
+---
+Tue Jan 30 08:53:57 UTC 2018 - wer...@suse.de
+
+- Add ncurses patch 6.1-20180129 
+  + update "VERSION" file, used in shared-library naming.
+
+---



Other differences:
--
++ ncurses-6.1-patches.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/patches/ncurses-6.1-20180129.patch 
new/patches/ncurses-6.1-20180129.patch
--- old/patches/ncurses-6.1-20180129.patch  1970-01-01 01:00:00.0 
+0100
+++ new/patches/ncurses-6.1-20180129.patch  2018-01-30 09:51:27.563124043 
+0100
@@ -0,0 +1,165 @@
+# ncurses 6.1 - patch 20180129 - Thomas E. Dickey
+#
+# 
--
+#
+# Ncurses 6.1 is at
+#  ftp.gnu.org:/pub/gnu
+#
+# Patches for ncurses 6.1 can be found at
+#  ftp://ftp.invisible-island.net/ncurses/6.0
+#  http://invisible-mirror.net/archives/ncurses/6.1 
+#
+# 
--
+# ftp://ftp.invisible-island.net/ncurses/6.0/ncurses-6.1-20180129.patch.gz
+# patch by Thomas E. Dickey 
+# created  Tue Jan 30 01:18:41 UTC 2018
+# 
--
+# NEWS |7 ++-
+# VERSION  |2 +-
+# dist.mk  |4 ++--
+# package/debian-mingw/changelog   |4 ++--
+# package/debian-mingw64/changelog |4 ++--
+# package/debian/changelog |4 ++--
+# package/mingw-ncurses.nsi|4 ++--
+# package/mingw-ncurses.spec   |2 +-
+# package/ncurses.spec |2 +-
+# 9 files changed, 19 insertions(+), 14 deletions(-)
+# 
--
+Index: NEWS
+Prereq:  1.3069 
+--- ncurses-6.1-20180127+/NEWS 2018-01-27 15:28:53.0 +
 ncurses-6.1-20180129/NEWS  2018-01-30 00:35:11.0 +
+@@ -25,7 +25,7 @@
+ -- sale, use or other dealings in this Software without prior written
--
+ -- authorization.
--
+ 
---
+--- $Id: NEWS,v 1.3069 2018/01/27 15:28:53 tom Exp $
++-- $Id: NEWS,v 1.3071 2018/01/30 00:35:11 tom Exp $
+ 
---
+ 
+ This is a log of changes that ncurses has gone through since Zeyd started
+@@ -45,6 +45,11 @@
+ Changes through 1.9.9e did not credit all contributions;
+ it is not possible to add this information.
+ 
++20180129
++  + update "VERSION" file, used in shared-library naming.
++
++20180127 6.1 release for upload to ftp.gnu.org
++
+ 20180127
+   + updated release notes
+   + amend a warning message from tic which should have flagged misuse
+Index: VERSION
+--- ncurses-6.1-20180127+/VERSION  2018-01-22 11:40:27.0 +
 ncurses-6.1-20180129/VERSION   2018-01-30 00:32:36.0 +
+@@ -1 +1 @@
+-5:0:9 6.0 20180127
++5:0:106.1 20180129
+Index: dist.mk
+Prereq:  1.1207 
+--- ncurses-6.1-20180127+/dist.mk  2018-01-22 11:42:46.0 +
 ncurses-6.1-20180129/dist.mk   2018-01-30 00:32:36.0 +
+@@ -25,7 +25,7 @@
+ # use or other dealings in this Software without prior written   #
+ # authorization. #
+ ##
+-# $Id: dist.mk,v 1.1207 2018/01/22 11:42:46 tom Exp $
++# $Id: dist.mk,v 1.1208 

commit ncurses for openSUSE:Factory

2018-02-03 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2018-02-03 15:37:47

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Sat Feb  3 15:37:47 2018 rev:141 rq:570861 version:6.1

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2018-01-20 
11:22:45.739453843 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2018-02-03 
15:37:50.318441488 +0100
@@ -1,0 +2,88 @@
+Tue Jan 30 07:51:09 UTC 2018 - wer...@suse.de
+
+- Correct include path for wide chraracter header files for ABI 6.1 
+
+---
+Mon Jan 29 10:48:07 UTC 2018 - wer...@suse.de
+
+- Update to ncurses 6.1 (patch 20180127)
+  + updated release notes
+  + amend a warning message from tic which should have flagged misuse
+of "XT" capability in "screen" terminal description.
+  > terminfo changes:
+  + trim "XT" from screen entry, add comments to explain why it was
+not suitable -TD
+  + modify iterm to use xterm+sl-twm building block -TD
+  + mark konsole-420pc, konsole-vt100, konsole-xf3x obsolete reflecting
+konsole's removal in 2008 -TD
+  + expanded the history section of konsole to explain its flawed
+imitation of xterm's keyboard -TD
+  + use xterm+x11mouse in screen.* entries because screen does not yet
+support xterm's 1006 mode -TD
+  + add nsterm-build400 for macOS 10.13 -TD
+  + add ansi+idc1, use that in ansi+idc adding dch for consistency -TD
+  + update vte to vte-2017 -TD
+  + add ecma+strikeout to vte-2017 -TD
+  + add iterm2-direct -TD
+  + updated teraterm, added teraterm-256color -TD
+  + add mlterm-direct -TD
+  + add descriptions for ANSI building-blocks -TD
+- Modify patch ncurses-5.9-ibm327x.dif
+- Rename patch ncurses-6.0.dif to new name ncurses-6.1.dif
+- Modify patch ncurses-6.1.dif
+
+---
+Mon Jan 22 11:02:30 UTC 2018 - wer...@suse.de
+
+- Add ncurses patch 20180121 pre-release 6.1
+  > terminfo changes:
+  + add xterm+noalt, xterm+titlestack, xterm+alt1049, xterm+alt+title
+blocks from xterm #331 -TD
+  + add xterm+direct, xterm+indirect, xterm-direct entries from xterm
+#331 -TD
+  + modify xterm+256color and xterm+256setaf to use correct number of
+color pairs, for ncurses 6.1 -TD
+  + add rs1 capability to xterm-256color -TD
+  + modify xterm-r5, xterm-r6 and xterm-xf86-v32 to use xterm+kbs to
+match xterm #272, reflecting packager's changes -TD
+  + remove "boolean" Se, Ss from st-0.7 -TD
+  + add konsole-direct and st-direct -TD
+  + remove unsupported "Tc" capability from st-0.7; use st-direct if
+direct-colors are wanted -TD
+  + add vte-direct -TD
+  + add XT, hpa, indn, and vpa to screen, and invis, E3 to tmux (patch by
+Pierre Carru)
+  + use xterm+sm+1006 in xterm-new, vte-2014 -TD
+  + use xterm+x11mouse in iterm, iterm2, mlterm3 because xterm's 1006
+mode does not work with those programs.  konsole is debatable -TD
+  + add "termite" entry (report by Markus Pfeiffer) -TD
+  > merge branch begun April 2, 2017 which provides these features:
+  + support read/write new binary-format for terminfo which stores
+numeric capabilities as a signed 32-bit integer.  The test programs
+such as picsmap, ncurses were created or updated during 2017 to use
+this feature.
+  + the new format is written by the wide-character configuration of
+tic when it finds a numeric capability larger than 32767.
+  + other applications such as infocmp built with the wide-character
+ncurses library work as expected.
+  + applications built with the "narrow" (8-bit) configuration will
+read the new format, but will limit those extended values to 32767.
+  + in either wide/narrow configuration, the structure defined in
+term.h still uses signed 16-bit values.
+  + because it is incompatible with the legacy (mid-1980s) binary format,
+a new magic value is provided for the "file" program.
+  + the term.5 manual page is updated to describe this new format.
+  + the limit on file-size for compiled terminfo is increased in the
+wide-character configuration to 32768.
+- Add ncurses patch 20180120
+  + build-fix in picsmap.c for stdint.h existence.
+  + add --disable-stripping option to configure scripts.
+  + modify ncurses-examples to install test-scripts in the data directory.
+  + work around tool-breakage in Debian 9 and later by invoking
+gprconfig to specify the C compiler to be used by gnatmake,
+and conditionally suppressing Library_Options line for static
+libraries.
+  + bump the compat level for test-packages to 7, i.e., Debian 5.
+- Add tack patch 1.08-20170818
+

commit ncurses for openSUSE:Factory

2018-01-20 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2018-01-20 11:22:44

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Sat Jan 20 11:22:44 2018 rev:140 rq:566456 version:6.0

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2018-01-10 
23:28:58.241473556 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2018-01-20 
11:22:45.739453843 +0100
@@ -1,0 +2,27 @@
+Tue Jan  9 11:11:49 UTC 2018 - wer...@suse.de
+
+- Add ncurses patch 20180106
+  + fixes for writing extended color pairs in putwin.
+  + modify test/savescreen.c to add test patterns that exercise 88-,
+256-, etc., colors.
+  + modify configure option --with-build-cc, adding clang, c89 and c99
+as possible default values.
+  + modify ncurses-examples configure script to use pkg-config for the
+extra form/menu/panel libraries, to be more consistent with the
+handling of the curses/ncurses library.
+  + modify test-packages for mingw to supply "pc" files.
+  + modify gen-pkgconfig.in to list -lpthread as a private library when
+configured to access it via weak symbols.
+  + simplify gen-pkgconfig.in, adding -ltinfo without the special linker
+checks because some versions of the linker simply hard-code the
+behavior.
+  + update URLs for ncurses website to use https.
+  + modify CF_CURSES_LIBS to fill in $cf_nculib_root in case the
+ncurses-examples are built with a system ncurses that lacks the
+standard "curses" symbolic link, as done by SuSE.  The symbol is
+needed to make a followup check for the pthread library work, and
+would be set properly using the options "--with-screen", etc.
+  + generate misc/*.pc with "all" rule, as done for "sources" rule
+(report by Jeffrey Walton).
+
+---



Other differences:
--
++ ncurses-6.0-patches.tar.bz2 ++
 31518 lines of diff (skipped)

++ ncurses-6.0.dif ++
--- /var/tmp/diff_new_pack.Obo66w/_old  2018-01-20 11:22:49.035299761 +0100
+++ /var/tmp/diff_new_pack.Obo66w/_new  2018-01-20 11:22:49.039299574 +0100
@@ -22,7 +22,7 @@
  20 files changed, 248 insertions(+), 81 deletions(-)
 
 --- aclocal.m4
-+++ aclocal.m4 2018-01-06 11:10:51.910633598 +
 aclocal.m4 2018-01-09 11:12:28.315003178 +
 @@ -580,7 +580,7 @@ AC_MSG_CHECKING([for size of bool])
  AC_CACHE_VAL(cf_cv_type_of_bool,[
rm -f cf_test.out
@@ -151,8 +151,8 @@
  esac
  done
 --- configure
-+++ configure  2018-01-06 11:10:51.914633524 +
-@@ -5969,7 +5969,7 @@ case $cf_cv_system_name in
 configure  2018-01-09 11:12:28.319003101 +
+@@ -5970,7 +5970,7 @@ case $cf_cv_system_name in
fi
;;
  (linux*|gnu*|k*bsd*-gnu|freebsd*)
@@ -161,7 +161,7 @@
;;
  (openbsd[2-9].*|mirbsd*)
LD_RPATH_OPT="-Wl,-rpath,"
-@@ -12020,12 +12020,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
-@@ -12150,9 +12153,9 @@ cat >>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man 

commit ncurses for openSUSE:Factory

2018-01-10 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2018-01-10 23:28:55

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Wed Jan 10 23:28:55 2018 rev:139 rq:562434 version:6.0

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2017-12-06 
08:46:33.147424068 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2018-01-10 
23:28:58.241473556 +0100
@@ -1,0 +2,76 @@
+Sat Jan  8 08:45:51 UTC 2018 - wer...@suse.de
+
+- Add ncurses patch 20171230
+  + build-fix for ncurses-examples with Fedora27, adding check for
+reset_color_pairs() -- not yet in Fedora's package.
+  + consistently add $CFLAGS to $MK_SHARED_LIB symbol in configure
+script when the latter happens to use the C compiler rather than
+directly using the loader (report by Jeffrey Walton).
+  + set ABI for upcoming 6.1 release in "*.map" files.  While there are
+some remaining internals to apply, no ABI-related changes are
+anticipated.
+  + add configure --with-config-suffix option to work around filename
+conflict with Redhat packages versus test-packages.
+- Add ncurses patch 20171223
+  + modify ncurses-examples to quiet const-warnings when building with
+PDCurses.
+  + modify toe to not exit if unable to read a terminal description,
+e.g., if there is a permission problem.
+  + minor fix for progs/toe.c, using _nc_free_termtype2.
+  + assign 0 to pointer in _nc_tgetent_leak() after freeing it. Also
+avoid reusing pointer from previous successful call to tgetent
+if the latest call is unsuccessful (patch by Michael Schroeder,
+OpenSuSE #1070450).
+  + minor fix for test/tracemunch, initialize $awaiting variable.
+
+---
+Fri Dec 22 11:44:19 UTC 2017 - wer...@suse.de
+
+- Disable memory leak checking (boo#1070450) 
+
+---
+Mon Dec 18 07:22:49 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20171216
+  + repair template in test/package/ncurses-examples.spec (cf: 2017).
+  + improve tic's warning about the number of parameters tparm might use
+for u1-u9 by making a special case for u6.
+  + improve curs_attr.3x discussion of color pairs.
+
+---
+Mon Dec 11 08:27:21 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20171209
+  + modify misc/ncurses-config.in to make output with --includedir
+consistent with --cflags, i.e., when --disable-overwrite option was
+configured the output should show the subdirectory where headers
+are.
+  + modify MKlib_gen.sh to suppress macros when calling an "implemented"
+function in link_test.c
+  + updated ftp-url used in test-packages, etc.
+  + modify order of -pie/-shared options in configure script in case
+LDFLAGS uses "-pie", working around a defect or limitation in the GNU
+linker (prompted by patch by Yogesh Prasad, forwarded by Jay Shah).
+  + add entry in man_db.renames for user_caps.5
+
+---
+Mon Nov 27 13:32:56 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20171125
+  + modify MKlib_gen.sh to avoid tracing result from getstr/getnstr
+before initialized.
+  + add "-a" aspect-ratio option to picsmap.
+  + add configure check for default path of rgb.txt, used in picsmap.
+  + modify _nc_write_entry() to truncate too-long filename (report by
+Hosein Askari, Debian #882620).
+  + build-fix for ncurses-examples with NetBSD curses:
++ it lacks the use_env() function.
++ it lacks libpanel; a recent change used the wrong ifdef symbol.
+  + add a macro for is_linetouched() and adjust the function's return
+value to make it possible for most applications to check for an
+error-return (report by Midolikawa H).
+  + additional manpage cleanup.
+  + update config.guess, config.sub from
+  http://git.savannah.gnu.org/cgit/config.git
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.jDCrYn/_old  2018-01-10 23:28:59.065434881 +0100
+++ /var/tmp/diff_new_pack.jDCrYn/_new  2018-01-10 23:28:59.073434506 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ncurses
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,6 +22,7 @@
 %else
 %bcond_with

commit ncurses for openSUSE:Factory

2017-12-05 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2017-12-06 08:46:30

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Wed Dec  6 08:46:30 2017 rev:138 rq:545878 version:6.0

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2017-11-11 
14:14:07.551251671 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2017-12-06 
08:46:33.147424068 +0100
@@ -1,0 +2,43 @@
+Mon Nov 20 08:11:58 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20171118
+  + add a note to curs_addch.3x on portability.
+  + add a note to curs_pad.3x on the origin and portability of pads.
+  + improve manpage description of getattrs (report by Midolikawa H).
+  + improve manpage macros (prompted by discussion in Debian #880551.
+  + reviewed test-programs using KEY_RESIZE, made fixes to test/worm.c
+  + add a "-d" option to picsmap for default-colors.
+  + modify old terminology entry and a few other terminal emulators to
+account for xon -TD
+  + correct sgr string for tmux, which used screen's "standout" code
+rather than the standard code (patch by Roman Kagan)
+  + correct sgr/sgr0 strings in a few other cases reported by tic, making
+those correspond to the non-sgr settings where they differ, but
+otherwise use ECMA-48 consistently:
+jaixterm, aixterm, att5420_2, att4424, att500, decansi, d410-7b,
+dm80, hpterm, emu-220, hp2, iTerm2.app, mterm-ansi, ncrvt100an,
+st-0.7, vi603, vwmterm -TD
+  + build-fix for diagnostics warning in lib_mouse.c for pre-5.0 versions
+of gcc which did not recognize the diagnostic "push" pragma (patch by
+Vassili Courzakis).
+
+---
+Mon Nov 13 08:34:19 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 2017
+  + add "op" to xterm+256setaf -TD
+  + reviewed terminology 1.0.0 -TD
+  + reviewed st 0.7 -TD
+  + suppress debug-package for ncurses-examples rpm build.
+
+---
+Mon Nov  6 14:12:21 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20171104
+  + check for interrupt in color-pair initialization of dots_curses.c,
+dots_xcurses.c
+  + add z/Z zoom feature to test/ncurses.c C/c screens.
+  + add '<' and '>' commands to test/ncurses.c S/s screens, to better
+test off-by-ones in the overlap/copywin functions.
+
+---



Other differences:
--
++ ncurses-5.9-ibm327x.dif ++
--- /var/tmp/diff_new_pack.C5Qd0u/_old  2017-12-06 08:46:33.943394925 +0100
+++ /var/tmp/diff_new_pack.C5Qd0u/_new  2017-12-06 08:46:33.943394925 +0100
@@ -3,8 +3,8 @@
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 --- misc/terminfo.src
-+++ misc/terminfo.src  2017-08-27 13:31:59.993779178 +
-@@ -16086,8 +16086,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
 misc/terminfo.src  2017-11-20 08:13:00.482772488 +
+@@ -16146,8 +16146,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
  #
  
  ibm327x|line mode IBM 3270 style,

++ ncurses-6.0-patches.tar.bz2 ++
 4979 lines of diff (skipped)

++ ncurses-6.0.dif ++
--- /var/tmp/diff_new_pack.C5Qd0u/_old  2017-12-06 08:46:36.279309398 +0100
+++ /var/tmp/diff_new_pack.C5Qd0u/_new  2017-12-06 08:46:36.279309398 +0100
@@ -22,7 +22,7 @@
  20 files changed, 248 insertions(+), 81 deletions(-)
 
 --- aclocal.m4
-+++ aclocal.m4 2017-10-16 10:00:42.326486502 +
 aclocal.m4 2017-11-20 08:13:37.950059704 +
 @@ -580,7 +580,7 @@ AC_MSG_CHECKING([for size of bool])
  AC_CACHE_VAL(cf_cv_type_of_bool,[
rm -f cf_test.out
@@ -151,7 +151,7 @@
  esac
  done
 --- configure
-+++ configure  2017-10-16 10:00:42.330486427 +
 configure  2017-11-20 08:13:37.954059629 +
 @@ -5950,7 +5950,7 @@ case $cf_cv_system_name in
fi
;;
@@ -288,7 +288,7 @@
# the next lines are needed for linking libtic over libncurses
TINFO_NAME=${LIB_NAME}
 --- include/curses.h.in
-+++ include/curses.h.in2017-10-16 10:00:42.330486427 +
 include/curses.h.in2017-11-20 08:13:37.954059629 +
 @@ -177,6 +177,9 @@ typedef @cf_cv_typeof_chtype@ chtype;
  typedef @cf_cv_typeof_mmask_t@ mmask_t;
  #endif
@@ -300,7 +300,7 @@
   * We need FILE, etc.  Include this before checking any feature symbols.
   */
 --- include/termcap.h.in
-+++ include/termcap.h.in   2017-10-16 10:00:42.330486427 +
 include/termcap.h.in   2017-11-20 08:13:37.954059629 +
 @@ -46,6 +46,8 @@ extern "C"
  {
  #endif /* __cplusplus */
@@ -311,7 +311,7 @@
  
  #undef  NCURSES_CONST 
 --- include/tic.h
-+++ 

commit ncurses for openSUSE:Factory

2017-11-11 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2017-11-11 14:14:03

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Sat Nov 11 14:14:03 2017 rev:137 rq:539147 version:6.0

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2017-11-03 
16:20:19.274100823 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2017-11-11 
14:14:07.551251671 +0100
@@ -1,0 +2,20 @@
+Sun Oct 29 18:19:12 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20171028
+  + improve man/curs_inwstr.3x, correct end-logic for lib_inwstr.c
+(report by Midolikawa H).
+  + fix typo in a few places for "improvements" (patch by Sven Joachim).
+  + clear the other half of a double-width character on which a line
+drawing character is drawn.
+  + make test/ncurses.c "s" test easier to understand which subtests are
+available; add a "S" wide-character overlap test-screen.
+  + modify test/ncurses.c C/c tests to allow for extended color pairs.
+  + add endwin() call in error-returns from test/ncurses.c omitted in
+recent redesign of its menu (cf: 20170923).
+  + improve install of hashed-db by removing the ".db" file as done for
+directory-tree terminal databases.
+  + repair a few overlooked items in include/ncurses_defs from recent
+port/refactoring of test-programs (cf: 20170909).
+  + add test/padview.c, to compare pads with direct updates in view.c
+
+---



Other differences:
--
++ ncurses-6.0-patches.tar.bz2 ++
 2972 lines of diff (skipped)




commit ncurses for openSUSE:Factory

2017-11-03 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2017-11-03 16:20:15

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Fri Nov  3 16:20:15 2017 rev:136 rq:537406 version:6.0

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2017-09-20 
17:06:10.212630676 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2017-11-03 
16:20:19.274100823 +0100
@@ -1,0 +2,73 @@
+Sun Oct 22 11:41:09 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20171021
+  + modify test/view.c to expand tabs using the ncurses library rather
+than in the test-program.
+  + remove very old SIGWINCH example in test/view.c, just use KEY_RESIZE.
+  + add -T, -e, -f -m options to "dots" test-programs.
+  + fix a few typos in usage-messages for test-programs.
+
+---
+Mon Oct 16 09:59:53 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20171014
+  + minor cleanup to test/view.c:
++ eliminate "-n" option by simply reading the whole file.
++ implement page up/down commands.
+  + add check in tput for init/reset operands to ensure those use a
+terminal.
+  + improve manual pages which discuss chtype, cchar_t types and the
+attribute values which can be stored in those types.
+  + correct array-index when parsing "-T" command-line option in tabs
+program.
+  + modify demo_new_pair.c to pass extended pairs to setcchar().
+  + add test/dots_xcurses.c to illustrate a different approach used for
+extended colors which can be contrasted with dots_curses.c.
+  + add a check in tic to note when a description uses non-mandatory
+delays without xon_xoff.  This is not an error, but some descriptions
+for a terminal emulator may use the combination incorrectly.
+
+---
+Mon Oct  9 10:51:49 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20171007
+  + modify "-T" option of clear and tput to call use_tioctl() to obtain
+the operating system's notion of the screensize if possible.
+  + review/repair some exit-codes for tput, making usage-message exit
+with 2 rather than 1, and a failure to open terminal 4+errno.
+  + amend check in tput, tabs and clear to allow those to use the
+database-only features in cron if a -T option gives a suitable
+terminal name (report by Lauri Tirkkonen).
+  + correct an ifdef in test/ncurses.c for systems with soft-keys but
+not slk_color().
+  + regenerate man-html documentation.
+
+---
+Wed Oct  4 07:08:23 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170930
+  + fix a symbol conflict that made ncurses.c C/c menu not work with
+Solaris xpg4 curses.
+  + add refresh() call to dots_mvcur.c, needed to use mvcur() with
+Solaris xpg4 curses after calling newterm().
+  + minor fixes for configure script from work on ncurses-examples and
+tin.
+  + improve animation in test/xmas.c by adding a time-delay in blinkit().
+  + modify several test programs to reflect that ncurses honors existing
+signal handlers in initscr(), while other implementations do not.
+  + modify bs.c to make it easier to quit.
+  + change ncurses-examples to use attr_t vs chtype to follow X/Open
+documentation more closely since Solaris xpg4-curses uses different
+values for WA_xxx vs A_xxx that rely on attr_t being an unsigned
+short.  Tru64 aka OSF1, HPUX, AIX did as ncurses does, equating the
+two sets.
+
+---
+Mon Sep 25 07:48:39 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170923
+  + modify menu for test/ncurses.c to fit on 24-line screen.
+  + build-fix for configure --with-caps=uwin
+  + add options to test_arrays.c, for selecting termcap vs terminfo, etc.
+
+---
@@ -4 +77 @@
-- Add ncurses patch +20170916
+- Add ncurses patch 20170916



Other differences:
--
++ ncurses-6.0-patches.tar.bz2 ++
 11775 lines of diff (skipped)

++ ncurses-6.0.dif ++
--- /var/tmp/diff_new_pack.E3Fp2s/_old  2017-11-03 16:20:23.433949423 +0100
+++ /var/tmp/diff_new_pack.E3Fp2s/_new  2017-11-03 16:20:23.433949423 +0100
@@ -8,7 +8,7 @@
  man/ncurses.3x   |4 +
  misc/gen-pkgconfig.in|7 +-
  misc/ncurses-config.in   |2 
- misc/terminfo.src|  140 
++-
+ misc/terminfo.src|  138 
++-
  ncurses/Makefile.in  |   

commit ncurses for openSUSE:Factory

2017-09-20 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2017-09-20 17:06:07

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Wed Sep 20 17:06:07 2017 rev:135 rq:527053 version:6.0

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2017-08-14 
12:34:17.544258668 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2017-09-20 
17:06:10.212630676 +0200
@@ -1,0 +2,126 @@
+Mon Sep 18 15:03:22 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch +20170916
+ + minor fix to test/filter.c to avoid clearing the command in one case.
+ + modify filter() to discard clr_eos if back_color_erase is set.
+
+---
+Mon Sep 18 14:58:55 UTC 2017 - wer...@suse.de
+
+- Do not remove ticw.pc as well as tinfow.pc for wide character
+  ncurses ABI 6 (boo#1056171)
+
+---
+Mon Sep 11 09:49:02 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170827
+  + fix a bug in repeat_char logic (cf: 20170729, report by Chris Clayton).
+- Add ncurses patch 20170902
+  + amend change for endwin-state for better consistency with the older
+logic (report/patch by Jeb Rosen, cf: 20170722).
+  + modify check in fmt_entry() to handle a cancelled reset string
+(Debian #873746).  Make similar fixes in other parts of dump_entry.c
+and tput.c
+- Add ncurses patch 20170909
+  + improve wide-character implementation of myADDNSTR() in frm_driver.c,
+which was inconsistent with the normal implementation.
+  + save/restore cursor position in Undo_Justification(), matching
+behavior of Buffer_To_Window() (report by Leon Winter).
+  + modify test/knight to provide the "slow" solution for small screens
+using "R", noting that Warnsdorf's method is easily done with "a".
+  + modify several test-programs which call use_default_colors() to
+consistently do this only if "-d" option is given.
+  + additional changes to test with non-standard variants of curses:
++ modify a loop limit in firework.c to work around absense of limit
+  checks in some libraries.
++ fill the last row of a window with "?" in firstlast if waddch does
+  not return ERR on the lower-right corner.
+  + add checks in test/configure for some functions not in 4.3BSD curses.
+  + fix a regression in test/configure (cf: 20170826).
+- Split off terminfo-iterm to avoid conflict with package libiterm1
+
+---
+Sun Aug 27 13:25:52 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170826
+  + fixes for "iterm2" (report by Leonardo Brondani Schenkel) -TD
+  + corrected a warning from tic about keys which are the same, to skip
+over missing/cancelled values.
+  + add check in tic for unnecessary use of "2" to denote a shifted
+special key.
+  + improve checks in trim_sgr0, comp_parse.c and parse_entry.c, for
+cancelled string capabilities.
+  + add check in _nc_parse_entry() for invalid entry name, setting the
+name to "invalid" to avoid problems storing entries.
+  + add/improve checks in tic's parser to address invalid input
++ add a check in comp_scan.c to handle the special case where a
+  nontext file ending with a NUL rather than newline is given to tic
+  as input (Redhat #1484274).
++ allow for cancelled capabilities in _nc_save_str (Redhat #1484276).
++ add validity checks for "use=" target in _nc_parse_entry (Redhat
+  #1484284).
++ check for invalid strings in postprocess_termcap (Redhat #1484285)
++ reset secondary pointers on EOF in next_char() (Redhat #1484287).
++ guard _nc_safe_strcpy() and _nc_safe_strcat() against calls using
+  cancelled strings (Redhat #1484291).
+  + correct typo in curs_memleaks.3x (Sven Joachim).
+  + improve test/configure checks for some curses variants not based on
+X/Open Curses.
+  + add options for test/configure to disable checks for form, menu and
+panel libraries.
+
+---
+Mon Aug 21 05:16:17 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170819
+  + update "iterm" entry -TD
+  + add "iterm2" entry (report by Leonardo Brondani Schenkel) -TD
+  + regenerate llib-* files.
+  + regenerate HTML manpages.
+  + improve picsmap test-program:
++ reduce memory used for tsearch
++ add report in log file showing cumulative color coverage.
+  + add -x option to clear/tput to make the E3 extension optional
+(cf: 20130622).
+  + add options -T and -V to clear command for compatibility with tput.
+  + add usage message to clear command (Debian #371855).
+  + improve usage messages for tset and 

commit ncurses for openSUSE:Factory

2017-08-14 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2017-08-14 12:34:14

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Mon Aug 14 12:34:14 2017 rev:134 rq:515338 version:6.0

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2017-08-08 
11:56:31.458969420 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2017-08-14 
12:34:17.544258668 +0200
@@ -1,0 +2,35 @@
+Mon Jul 31 12:14:36 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170729
+  + update interix entry using tack and SFU on Windows 7 Ultimate -TD
+  + use ^? for kdch1 in interix (reported by Jonathan de Boyne Pollard)
+  + add "rep" to xterm-new, available since 1997/01/26 -TD
+  + move SGR 24 and 27 from vte-2014 to vte-2012 (request by Alain
+Williams) -TD
+  + add a check in newline_forces_scroll() in case a program moves the
+cursor outside scrolling margins (report by Robert King).
+  + improve _nc_tparm_analyze, using that to extend the checks made by
+tic for reporting inconsistencies between the expected number of
+parameters for a capability and the actual.
+  + amend handling of repeat_char capability in EmitRange (adapted from
+report/patch by Dick Wesseling):
++ translate the character to the alternate character set when the
+  alternate character set is enabled.
++ do not use repeat_char for characters past 255.
+  + document "_nc_free_tinfo" in manual page, because it could be used in
+tack for memory-leak checking.
+  + add "--without-tack" configure option to refine "--with-progs"
+configure option.  Normally tack is no longer built in-tree, but
+a few packagers combine it during the build.  If term_entry.h is
+installed, there is no advantage to in-tree builds.
+  + adjust configure-script to define HAVE_CURSES_DATA_BOOLNAMES symbol
+needed for tack 1.08 when built in-tree.  Rather than relying upon
+internal "_nc_" functions, tack now uses the boolean, number and
+string capability name-arrays provided by ncurses and SVr4 Unix
+curses.  It still uses term_entry.h for the definitions of the
+extended capability arrays.
+  + add an overlooked null-pointer check in mvcur changes from 20170722
+- Modify patch ncurses-5.7-tack.dif and ncurses-6.0.dif to get
+  position independent executables as well
+
+---



Other differences:
--
++ ncurses-5.7-tack.dif ++
--- /var/tmp/diff_new_pack.ihTdrR/_old  2017-08-14 12:34:18.568114899 +0200
+++ /var/tmp/diff_new_pack.ihTdrR/_new  2017-08-14 12:34:18.572114338 +0200
@@ -1,5 +1,18 @@
+---
+ tack/Makefile.in |8 
+ 1 file changed, 4 insertions(+), 4 deletions(-)
+
 --- tack/Makefile.in
-+++ tack/Makefile.in   2012-03-05 11:30:45.0 +
 tack/Makefile.in   2017-08-01 08:31:12.368616475 +
+@@ -84,7 +84,7 @@ CFLAGS_LIBTOOL   = $(CCFLAGS)
+ CFLAGS_NORMAL = $(CCFLAGS)
+ CFLAGS_DEBUG  = $(CCFLAGS) @CC_G_OPT@ -DTRACE
+ CFLAGS_PROFILE= $(CCFLAGS) -pg
+-CFLAGS_SHARED = $(CCFLAGS) @CC_SHARED_OPTS@
++CFLAGS_SHARED = $(CCFLAGS) -fPIE
+ 
+ CFLAGS_DEFAULT= $(CFLAGS_@DFT_UPR_MODEL@)
+ 
 @@ -93,7 +93,7 @@ ABI_VERSION  = @cf_cv_abi_version@
  LOCAL_LIBDIR  = @top_builddir@/lib
  
@@ -9,3 +22,21 @@
  LDFLAGS   = @EXTRA_LDFLAGS@ @TICS_LDFLAGS@ @TINFO_LDFLAGS@ \
  @LDFLAGS@ @LD_MODEL@ @TICS_LIBS@ @TINFO_LIBS@ @LIBS@
  
+@@ -101,7 +101,7 @@ LDFLAGS_LIBTOOL= $(LDFLAGS) $(CFLAGS_LI
+ LDFLAGS_NORMAL= $(LDFLAGS) $(CFLAGS_NORMAL)
+ LDFLAGS_DEBUG = $(LDFLAGS) $(CFLAGS_DEBUG)
+ LDFLAGS_PROFILE   = $(LDFLAGS) $(CFLAGS_PROFILE)
+-LDFLAGS_SHARED= $(LDFLAGS) $(CFLAGS_SHARED) @LD_SHARED_OPTS@
++LDFLAGS_SHARED= $(LDFLAGS) $(CFLAGS_SHARED) -pie
+ 
+ LDFLAGS_DEFAULT   = $(LDFLAGS_@DFT_UPR_MODEL@)
+ 
+@@ -165,7 +165,7 @@ DEPS_TACK = \
+   $(MODEL)/tack$o
+ 
+ tack$x: $(DEPS_TACK) @NCURSES_TREE@$(DEPS_CURSES)
+-  @ECHO_LINK@ $(LINK) $(DEPS_TACK) $(LDFLAGS_DEFAULT) -o $@
++  $(LINK) $(DEPS_TACK) $(LDFLAGS_DEFAULT) -o $@
+ 
+ #
+ # Utility productions start here

++ ncurses-5.9-ibm327x.dif ++
--- /var/tmp/diff_new_pack.ihTdrR/_old  2017-08-14 12:34:18.588112091 +0200
+++ /var/tmp/diff_new_pack.ihTdrR/_new  2017-08-14 12:34:18.592111530 +0200
@@ -3,8 +3,8 @@
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 --- misc/terminfo.src
-+++ misc/terminfo.src  2017-07-17 08:46:19.868878686 +
-@@ -15972,8 +15972,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
 misc/terminfo.src  2017-07-31 12:13:00.613650108 +
+@@ -15986,8 +15986,8 @@ 

commit ncurses for openSUSE:Factory

2017-08-08 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2017-08-08 11:56:28

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Tue Aug  8 11:56:28 2017 rev:133 rq:513140 version:6.0

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2017-07-21 
22:35:15.488416053 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2017-08-08 
11:56:31.458969420 +0200
@@ -1,0 +2,35 @@
+Mon Jul 24 07:17:59 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170722
+  + improve test-packages for ncurses-examples and AdaCurses for lintian
+  + modify logic for endwin-state to be able to detect the case where
+the screen was never initialized, using that to trigger a flush of
+ncurses' buffer for mvcur, e.g., in test/dots_mvcur.c for the
+term-driver configuration.
+  + add dependency upon ncurses_cfg.h to a few other internal header
+files to allow each to be compiled separately.
+  + add dependency upon ncurses_cfg.h to tic's header-files; any program
+using tic-library will have to supply this file.  Legacy tack
+versions supply this file; ongoing tack development has dropped the
+dependency upon tic-library and new releases will not be affected.
+
+---
+Tue Jul 18 06:49:37 UTC 2017 - wer...@suse.de
+
+- Fix build by removing workaround in patch ncurses-5.7-tack.dif 
+  which was required since patch 20170415 but had become obsolete
+  with patch 20170715
+
+---
+Mon Jul 17 08:44:28 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170715
+  + modify command-line parameters for "convert" used in picsmap to work
+with ImageMagick 6.8 and newer.
+  + fix build-problem with tack and ABI-5 (Debian #868328).
+  + repair termcap-format from tic/infocmp broken in 20170701 fixes
+(Debian #868266).
+  + reformat terminfo.src with 20170513 updates.
+  + improve test-packages to address lintian warnings.
+
+---
@@ -4 +39 @@
-- Add Ncurses patch 20170708
+- Add ncurses patch 20170708



Other differences:
--
++ ncurses-5.7-tack.dif ++
--- /var/tmp/diff_new_pack.LTeJWh/_old  2017-08-08 11:56:33.602667497 +0200
+++ /var/tmp/diff_new_pack.LTeJWh/_new  2017-08-08 11:56:33.622664680 +0200
@@ -9,14 +9,3 @@
  LDFLAGS   = @EXTRA_LDFLAGS@ @TICS_LDFLAGS@ @TINFO_LDFLAGS@ \
  @LDFLAGS@ @LD_MODEL@ @TICS_LIBS@ @TINFO_LIBS@ @LIBS@
  
 ncurses/tinfo/read_entry.c
-+++ ncurses/tinfo/read_entry.c 2017-04-24 07:47:15.533617238 +
-@@ -752,7 +752,7 @@ _nc_read_entry2(const char *const name,
- return code;
- }
- 
--#if NCURSES_EXT_NUMBERS
-+#if !NCURSES_EXT_NUMBERS
- /*
-  * This entrypoint is used by tack.
-  */

++ ncurses-5.9-ibm327x.dif ++
--- /var/tmp/diff_new_pack.LTeJWh/_old  2017-08-08 11:56:33.862630883 +0200
+++ /var/tmp/diff_new_pack.LTeJWh/_new  2017-08-08 11:56:33.874629193 +0200
@@ -3,8 +3,8 @@
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 --- misc/terminfo.src
-+++ misc/terminfo.src  2017-04-24 06:51:39.870170103 +
-@@ -15971,8 +15971,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
 misc/terminfo.src  2017-07-17 08:46:19.868878686 +
+@@ -15972,8 +15972,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
  #
  
  ibm327x|line mode IBM 3270 style,

++ ncurses-6.0-patches.tar.bz2 ++
 1815 lines of diff (skipped)

++ ncurses-6.0.dif ++
--- /var/tmp/diff_new_pack.LTeJWh/_old  2017-08-08 11:56:37.738085056 +0200
+++ /var/tmp/diff_new_pack.LTeJWh/_new  2017-08-08 11:56:37.746083929 +0200
@@ -21,7 +21,7 @@
  19 files changed, 247 insertions(+), 80 deletions(-)
 
 --- aclocal.m4
-+++ aclocal.m4 2017-07-03 07:09:04.699399144 +
 aclocal.m4 2017-07-24 07:18:46.968450937 +
 @@ -580,7 +580,7 @@ AC_MSG_CHECKING([for size of bool])
  AC_CACHE_VAL(cf_cv_type_of_bool,[
rm -f cf_test.out
@@ -150,7 +150,7 @@
  esac
  done
 --- configure
-+++ configure  2017-07-03 07:09:04.699399144 +
 configure  2017-07-24 07:18:46.976450789 +
 @@ -5925,7 +5925,7 @@ case $cf_cv_system_name in
fi
;;
@@ -287,7 +287,7 @@
# the next lines are needed for linking libtic over libncurses
TINFO_NAME=${LIB_NAME}
 --- include/curses.h.in
-+++ include/curses.h.in2017-07-03 07:09:04.699399144 +
 include/curses.h.in2017-07-24 07:18:46.976450789 +
 @@ -177,6 +177,9 @@ typedef @cf_cv_typeof_chtype@ chtype;
  typedef @cf_cv_typeof_mmask_t@ mmask_t;
  #endif
@@ -299,7 +299,7 @@
   * We need FILE, etc.  

commit ncurses for openSUSE:Factory

2017-07-21 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2017-07-21 22:35:13

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Fri Jul 21 22:35:13 2017 rev:132 rq:509422 version:6.0

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2017-06-07 
09:51:00.260152846 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2017-07-21 
22:35:15.488416053 +0200
@@ -1,0 +2,87 @@
+Mon Jul 10 07:17:16 UTC 2017 - wer...@suse.de
+
+- Add Ncurses patch 20170708
+  + add a note to tic manual page about -W versus -f options.
+  + correct a limit-check in fixes from 20170701 (report by Sven Joachim). 
+- This also for bug bsc#1047964 and bug bsc#1047965
+
+---
+Mon Jul  3 07:01:41 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170701 (bsc#1046853, bsc#1046858)
+  + modify update_getenv() in db_iterator.c to ensure that environment
+variables which are not initially set will be checked later if an
+application happens to set them (patch by Guillaume Maudoux).
+  + remove initialization-check for calling napms() in the term-driver
+configuration; none is needed.
+  + add help-screen to test/test_getstr.c and test/test_get_wstr.c
+  + improve compatibility between different configurations of new_prescr,
+fixing a case with threaded code and term-driver where c++/demo did
+not work (cf: 20160213).
+  + the fixes for Redhat #1464685 obscured a problem subsequently
+reported in Redhat #1464687; the given test-case was no longer
+reproducible.  Testing without the fixes for the earlier reports
+showed a problem with buffer overflow in dump_entry.c, which is
+addressed by reducing the use of a fixed-size buffer.
+  + add/improve checks in tic's parser to address invalid input
+(Redhat #1464684, #1464685, #1464686, #1464691).
++ alloc_entry.c, add a check for a null-pointer.
++ parse_entry.c, add several checks for valid pointers as well as
+  one check to ensure that a single character on a line is not
+  treated as the 2-character termcap short-name.
+  + fix a memory leak in delscreen() (report by Bai Junq).
+  + improve tracemunch, showing thread identifiers as names.
+  + fix a use-after-free in NCursesMenu::~NCursesMenu()
+  + further amend incorrect calls for memory-leaks from 20170617 changes
+(report by Allen Hewes).
+
+---
+Sun Jun 25 07:12:59 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170624
+  + modify c++/etip.h.in to accommodate deprecation of throw() and
+throws() in c++17 (prompted by patch by Romain Geissler).
+  + remove some incorrect calls for memory-leaks from 20170617 changes
+(report by Allen Hewes).
+  + add test-programs for termattrs and term_attrs.
+  + modify _nc_outc_wrapper to use the standard output if the screen was
+not initialized, rather than returning an error.
+  + improve checks for low-level terminfo functions when the terminal
+has not been initialized (Redhat #1345963).
+  + modify make_hash to allow building with address-sanitizer,
+assuming that --disable-leaks is configured.
+  + amend changes for number_format() in 20170506 to avoid undefined
+behavior when shifting (patch by Emanuele Giaquinta).
+
+---
+Wed Jun 21 10:24:20 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170617
+  + fill in some places where TERMTYPE2 vs TERMTYPE was not used
+(report by Allen Hewes).
+  + use ExitTerminfo() internally in error-exits for ncurses' setupterm
+to help with leak checking.
+  + use ExitProgram() in error-exit from initscr() to help with leak
+checking.
+  + review test-programs, adding checks for cases where the terminal
+cannot be initialized.
+
+---
+Mon Jun 12 13:11:49 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170610
+  + add option "-xp" to picsmap.c, to use init_extended_pair().
+  + make simple performance fixes for picsmap.c
+  + improve aspect ratio of images read from "convert" in picsmap.c
+- Add ncurses patch 20170603
+  + add option to picsmap to use color-palette files, e.g., for mapping
+to xterm-256color.
+  + move the data in SCREEN used for the alloc_pair() function to the
+end, to restore compatibility between ncurses/ncursesw libtinfo
+(report/patch by Miroslav Lichvar).
+  + add build-time utility "report_offsets" to help show when the various
+configurations of tinfo library are compatible or not.
+- Remove patch ncurses-6.0-crashw.patch as a temporary as now part
+  of patch 

commit ncurses for openSUSE:Factory

2017-06-07 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2017-06-07 09:50:58

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Wed Jun  7 09:50:58 2017 rev:131 rq:499601 version:6.0

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2017-05-27 
13:03:06.928866815 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2017-06-07 
09:51:00.260152846 +0200
@@ -1,0 +2,16 @@
+Tue May 30 07:29:14 UTC 2017 - wer...@suse.de
+
+- Add patch ncurses-6.0-crashw.patch as a temporary fix which will
+  become part of next patch level: solve binary incompatiblity of
+  libtinfow and libtinfo
+
+---
+Mon May 29 06:51:13 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170527
+  + improved test/picsmap.c:
+  + lookup named colors for xpm files in rgb.txt
+  + accept blanks in color-keys for xpm files.
+  + if neither xbm/xpm work, try "convert", which may be available.
+
+---

New:

  ncurses-6.0-crashw.patch



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.8feKAm/_old  2017-06-07 09:51:00.968052805 +0200
+++ /var/tmp/diff_new_pack.8feKAm/_new  2017-06-07 09:51:00.972052239 +0200
@@ -66,6 +66,9 @@
 Patch0: ncurses-6.0.dif
 Patch1: ncurses-5.9-ibm327x.dif
 Patch4: ncurses-5.7-tack.dif
+# PATCH-FIX-UPSTREAM ... temporary patch which will become part of next
+# patch level: fix binary incompatiblity of libtinfow with libtinfo
+Patch40:ncurses-6.0-crashw.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %global _miscdir%{_datadir}/misc
 %global _incdir %{_includedir}
@@ -237,6 +240,7 @@
 rm -fr tack
 tar -xzf %{S:5}
 mv tack-* tack
+%patch40 -p0 -b .crash
 %patch1 -p0 -b .327x
 %patch4 -p0 -b .hs
 %patch0 -p0 -b .p0

++ ncurses-6.0-crashw.patch ++
---
 ncurses/curses.priv.h |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

--- ncurses/curses.priv.h
+++ ncurses/curses.priv.h   2017-05-30 07:21:41.456357778 +
@@ -1137,11 +1137,6 @@ struct screen {
int _pair_count;/* same as COLOR_PAIRS   */
int _pair_limit;/* actual limit of color-pairs   */
 #if NCURSES_EXT_FUNCS
-#if USE_NEW_PAIR
-   void*_ordered_pairs; /* index used by alloc_pair()   */
-   int _pairs_used;/* actual number of color-pairs used */
-   int _recent_pair;   /* number for most recent free-pair  */
-#endif
bool_assumed_color; /* use assumed colors*/
bool_default_color; /* use default colors*/
bool_has_sgr_39_49; /* has ECMA default color support*/
@@ -1295,6 +1290,11 @@ struct screen {
/*
 * ncurses/ncursesw are the same up to this point.
 */
+#if USE_NEW_PAIR
+   void*_ordered_pairs; /* index used by alloc_pair()   */
+   int _pairs_used;/* actual number of color-pairs used */
+   int _recent_pair;   /* number for most recent free-pair  */
+#endif
 #if USE_WIDEC_SUPPORT
/* recent versions of 'screen' have partially-working support for
 * UTF-8, but do not permit ACS at the same time (see tty_update.c).
++ ncurses-6.0-patches.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/patches/ncurses-6.0-20170527.patch 
new/patches/ncurses-6.0-20170527.patch
--- old/patches/ncurses-6.0-20170527.patch  1970-01-01 01:00:00.0 
+0100
+++ new/patches/ncurses-6.0-20170527.patch  2017-05-29 08:50:32.898804627 
+0200
@@ -0,0 +1,732 @@
+# ncurses 6.0 - patch 20170527 - Thomas E. Dickey
+#
+# 
--
+#
+# Ncurses 6.0 is at
+#  ftp.gnu.org:/pub/gnu
+#
+# Patches for ncurses 6.0 can be found at
+#  ftp://invisible-island.net/ncurses/6.0
+#  http://invisible-mirror.net/archives/ncurses/6.0 
+#
+# 
--
+# ftp://invisible-island.net/ncurses/6.0/ncurses-6.0-20170527.patch.gz
+# patch by Thomas E. Dickey 
+# created  Sun May 28 01:23:29 UTC 2017
+# 
--
+# NEWS |8 
+# VERSION  |2 
+# dist.mk  |4 
+# 

commit ncurses for openSUSE:Factory

2017-05-27 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2017-05-27 13:02:58

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Sat May 27 13:02:58 2017 rev:130 rq:497888 version:6.0

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2017-05-17 
10:45:11.984095399 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2017-05-27 
13:03:06.928866815 +0200
@@ -1,0 +2,69 @@
+Wed May 24 07:10:12 UTC 2017 - wer...@suse.de
+
+- Fix ncursesw6-config and ncursesw5-config scripts to return -ltinfow
+  as well as the pkg-config files do
+
+---
+Mon May 22 06:38:10 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170520
+  + modify test/picsmap.c to read xpm files.
+  + modify package/debian/* to create documentation packages, so the
+related files can be checked with lintian.
+  + fix some typos in manpages (report/patch by Sven Joachim).
+
+---
+Mon May 15 10:07:56 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170513
+  + add test/picsmap.c to fill in some testing issues not met by dots.
+The initial version reads X bitmap (".xbm") files.
+  + repair logic which forces a repaint where a color-pair's content is
+changed (cf: 20170311).
+  + improve tracemunch, showing screenXX pointers as names.
+
+---
+Fri May 12 06:35:00 UTC 2017 - wer...@suse.de
+
+- Better screen support and workaround about missing terminfo entries
+  might be help on boo#812067 as well as on boo#935736 but may cause
+  boo#940459  (which should be fixed by screen its self!)
+- New package terminfo-screen which includes some useful but troubling
+  terminfo database entries for screen.
+
+---
+Wed May 10 12:56:39 UTC 2017 - wer...@suse.de
+
+- Disable the usage of getttynam(3) as under Linux this is not used 
+
+---
+Tue May  9 09:46:16 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170506
+  + modify tic/infocmp display of numeric values to use hexadecimal when
+they are "close" to a power of two, making the result more readable.
+  + improve discussion of portability in curs_mouse.3x
+  + change line-length for generated html/manpages to 78 columns from 65.
+  + improve discussion of line-drawing characters in curs_add_wch.3x
+(prompted by discussion with Lorinczy Zsigmond).
+  + cleanup formatting of hackguide.html and ncurses-intro.html
+  + add examples for WACS_D_PLUS and WACS_T_PLUS to test/ncurses.c
+
+---
+Tue May  2 14:41:23 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170429
+  + corrected a case where $with_gpm was set to "maybe" after CF_WITH_GPM,
+overlooked in 20160528 fixes (report by Alexandre Bury).
+  + improve a couple of test-program's help-messages.
+  + corrected loop in rain.c from 20170415 changes.
+  + modify winnstr and winchnstr to return error if the output pointer is
+null, as well as adding a null pointer check of the window pointer
+for better compatibility with other implementations.
+  + improve discussion of NetBSD curses in scr_dump.5
+  + modify LIMIT_TYPED macro in new_pair.h to avoid changing sign of the
+value to be limited (reports by Darby Payne, Rob Boudreau).
+  + update config.guess, config.sub from
+  http://git.savannah.gnu.org/cgit/config.git
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.TZA4x7/_old  2017-05-27 13:03:07.656763896 +0200
+++ /var/tmp/diff_new_pack.TZA4x7/_new  2017-05-27 13:03:07.660763331 +0200
@@ -50,9 +50,9 @@
 Version:6.0
 Release:0
 Summary:Terminal control library
+#Git:   http://ncurses.scripts.mit.edu
 License:MIT
 Group:  System/Base
-#Git:   http://ncurses.scripts.mit.edu
 Url:http://invisible-island.net/ncurses/ncurses.html
 Source0:ftp://invisible-island.net/ncurses/ncurses-6.0.tar.gz
 Source1:ncurses-6.0-patches.tar.bz2
@@ -103,6 +103,7 @@
 Summary:A terminal descriptions database
 License:MIT
 Group:  System/Base
+Recommends: terminfo-screeen = %{version}
 Provides:   ncurses:%{_datadir}/tabset
 
 %description -n terminfo-base
@@ -111,6 +112,19 @@
 contains information about any known terminal. The ncurses library
 makes 

commit ncurses for openSUSE:Factory

2017-05-17 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2017-05-17 10:45:06

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Wed May 17 10:45:06 2017 rev:129 rq:490219 version:6.0

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2017-04-03 
11:04:03.368598794 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2017-05-17 
10:45:11.984095399 +0200
@@ -1,0 +2,101 @@
+Mon Apr 24 08:15:55 UTC 2017 - wer...@suse.de
+
+- Also split libtic into normal and wide version libticw as those
+  libraries are linked with libtinfo respectively libtinfow
+- The tack tool does require the old _nc_read_entry()
+
+---
+Mon Apr 24 06:46:05 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170422
+  + build-fix for termcap-configuration (report by Chi-Hsuan Yen).
+  + improve terminfo manual page discussion of control- and graphics-
+characters.
+  + remove tic warning about "^?" in string capabilities, which was
+marked as an extension (cf: 2610, 20110820); however all Unix
+implementations support this and X/Open Curses does not address it.
+On the other hand, termcap never did support this feature.
+  + correct missing comma-separator between string capabilities in
+icl6402 and m2-nam -TD
+  + restore rmir/smir in ansi+idc to better match original ansiterm+idc,
+add alias ansiterm (report by Robert King).
+  + amend an old check for ambiguous use of "ma" in terminfo versus
+a termcap use, if the capability is cancelled to treat it as number.
+  + correct a case in _nc_captoinfo() which read "%%" and emitted "%".
+  + modify sscanf calls in _nc_infotocap() for patterns "%{number}%+%c"
+and "%'char'%+%c" to check that the final character is really 'c',
+avoiding a case in icl6404 which cannot be converted to termcap.
+  + in _nc_infotocap(), add a check to ensure that terminfo "^?" is not
+written to termcap, because the BSDs did not implement that.
+  + in _nc_tic_expand() and _nc_infotocap(), improve string-length check
+when deciding whether to use "^X" or "\xxx" format for control
+characters, to make the output of tic/infocmp more predictable.
+  + limit termcap "%d" width to 2 digits on input, and use "%2" in
+preference to "%02" on output.
+  + correct terminfo/termcap conversion of "%02" and "%03" into "%2" and
+"%3"; the result repeated the last character.
+  + add man/scr_dump.5 to document screen-dump format.
+- Add ncurses patch 20170415
+  + modify several test programs to use new popup_msgs, adapted from
+help-screen used in test/edit_field.c
+  + drop two symbols obsoleted in 2004: _nc_check_termtype, and
+_nc_resolve_uses
+  + fix some old copyright dates (cf: 20031025).
+  + build-fixes for test/savescreen.c to work with AIX and HPUX.
+  + minor fix to configure script, adding a backslash/continuation.
+  + extend TERMINAL structure for ABI 6 to store numbers internally as
+integers rather than short, by adding new data for this purpose.
+  + more fixes for minor memory-leaks in test-programs.
+
+---
+Thu Apr 13 13:16:58 UTC 2017 - wer...@suse.de
+
+- With one of the latest update patches libtinfo now has become
+  splitted into a normal and wide character version (boo#1033198) 
+
+---
+Mon Apr 10 09:40:23 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170408
+  + change logic in wins_nwstr() to avoid addressing data past the output
+of mbstowcs().
+  + correct a call to setcchar() in Data_Entry_w() from 20131207 changes.
+  + fix minor memory-leaks in test-programs.
+  + further improve ifdef in term_entry.h for internal definitions not
+used by tack.
+
+---
+Mon Apr  3 08:32:42 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170401
+  + minor fixes for vt100+4bsd, e.g., delay in sgr for consistency -TD
+  + add smso for env230, to match sgr -TD
+  + remove p7/protect from sgr in fbterm -TD
+  + drop setf/setb from fbterm; setaf/setab are enough -TD
+  + make xterm-pcolor sgr consistent with other capabilities -TD
+  + add rmxx/smxx ECMA-48 strikeout extension to tmux and xterm-basic
+(discussion with Nicholas Marriott)
+  + add test-programs sp_tinfo and extended_color
+  + modify no-leaks code for lib_cur_term.c to account for the tgetent()
+cache.
+  + modify setupterm() to save original tty-modes so that erasechar()
+works as expected.  Also modify _nc_setupscreen() to avoid redundant
+calls to get original tty-modes.
+  + modify 

commit ncurses for openSUSE:Factory

2017-04-03 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2017-04-03 11:03:59

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Mon Apr  3 11:03:59 2017 rev:128 rq:483739 version:6.0

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2017-03-05 
17:50:26.750957832 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2017-04-03 
11:04:03.368598794 +0200
@@ -1,0 +2,67 @@
+Sun Mar 26 13:54:12 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170325
+  + fix a memory leak in the window-list when creating multiple screens
+(reports by Andres Martinelli, Debian #783486).
+  + reviewed calls from link_test.c, added a few more null-pointer
+checks.
+  + add a null-pointer check in ungetmouse, in case mousemask was not
+called (report by "Kau").
+  + updated curs_sp_funcs.3x for new functions.
+
+---
+Mon Mar 20 08:36:28 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170318
+  + change TERMINAL structure in term.h to make it opaque.  Some
+applications misuse its members, e.g., directly modifying it
+rather than using def_prog_mode().
+  + modify utility headers such as tic.h to make it clearer which are
+externals that are used by tack.
+  + improve curs_slk.3x in particular its discussion of portability.
+  + fix cut/paste in legacy_encoding.3x
+  + add prototype for find_pair() to new_pair.3x (report by Branden
+Robinson).
+  + fix a couple of broken links in generated man-html documentation.
+  + regenerate man-html documentation.
+- Add tack patch 1.07.20170318 
+  * init.c:
+use def_prog_mode() to eliminate two internal details from ncurses
+  * edit.c, tack.h: accommodate opaque TERMINAL structure in ncurses
+  * tack.h: update copyright to match version
+  * config.sub: 2017-02-07
+  * config.guess: 2017-03-05
+
+---
+Mon Mar 13 11:21:44 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170311
+  + modify vt100 rs2 string to reset vt52 mode and scrolling regions
+(report/analysis by Robert King) -TD
+  + add vt100+4bsd building block, use that for older terminals rather
+than "vt100" which is now mostly used as a building block for
+terminal emulators -TD
+  + correct a few spelling errors in terminfo.src comments -TD
+  + add fbterm -TD
+  + fix a typo in ncurses.c test_attr legend (patch by Petr Vanek).
+  + changed internal colorpair_t to a struct, eliminating an internal
+8-bit limit on colors
+  + add ncurses/new_pair.h
+  + add ncurses/base/new_pair.c with alloc_pair(), find_pair() and
+free_pair() functions
+  + add test/demo_new_pair.c
+- Add ncurses patch 20170304
+  + improve terminfo manual description of terminfo syntax.
+  + clarify the use of wint_t vs wchar_t in curs_get_wstr.3x
+  + improve description of endwin() in manual.
+  + modify setcchar() and getcchar() to treat negative color-pair as an
+error.
+  + fix a typo in include/hashed_db.h (Andre Sa).
+
+---
+Thu Mar  2 13:31:07 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170225
+  + fixes for CF_CC_ENV_FLAGS (report by Ross Burton).
+
+---

Old:

  tack-1.07-20150606.tgz

New:

  tack-1.07-20170318.tgz



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.1xLLRy/_old  2017-04-03 11:04:04.276470529 +0200
+++ /var/tmp/diff_new_pack.1xLLRy/_new  2017-04-03 11:04:04.280469964 +0200
@@ -60,7 +60,7 @@
 Source3:README.devel
 Source4:ncurses-rpmlintrc
 # Latest tack can be found at ftp://invisible-island.net/pub/ncurses/current/
-Source5:
ftp://invisible-island.net/pub/ncurses/current/tack-1.07-20150606.tgz
+Source5:
ftp://invisible-island.net/pub/ncurses/current/tack-1.07-20170318.tgz
 Source6:edit.sed
 Source7:baselibs.conf
 Patch0: ncurses-6.0.dif

++ ncurses-5.9-ibm327x.dif ++
--- /var/tmp/diff_new_pack.1xLLRy/_old  2017-04-03 11:04:04.348460358 +0200
+++ /var/tmp/diff_new_pack.1xLLRy/_new  2017-04-03 11:04:04.348460358 +0200
@@ -3,8 +3,8 @@
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 --- misc/terminfo.src
-+++ misc/terminfo.src  2017-01-30 08:58:00.238320491 +
-@@ -15941,8 +15941,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
 misc/terminfo.src  2017-03-13 11:21:16.882814756 +
+@@ -15974,8 +15974,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
  #
  
  ibm327x|line mode IBM 3270 style,

++ 

commit ncurses for openSUSE:Factory

2017-03-05 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2017-03-05 17:50:23

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Sun Mar  5 17:50:23 2017 rev:127 rq:460690 version:6.0

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2017-02-08 
12:12:00.791472805 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2017-03-05 
17:50:26.750957832 +0100
@@ -1,0 +2,50 @@
+Mon Feb 20 11:15:23 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170218
+  + fix several formatting issues with manual pages.
+  + correct read of terminfo entry in which all strings are absent or
+explicitly cancelled.  Before this fix, the result was that all were
+treated as only absent.
+  + modify infocmp to suppress mixture of absent/cancelled capabilities
+that would only show as "NULL, NULL", unless the -q option is used,
+e.g., to show "-, @" or "@, -". 
+
+---
+Mon Feb 13 09:16:11 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170212
+  + build-fixes for PGI compilers (report by Adam J. Stewart)
++ accept whitespace in sed expression for generating expanded.c
++ modify configure check that g++ compiler warnings are not used.
++ add configure check for -fPIC option needed for shared libraries.
+  + let configure --disable-ext-funcs override the default for the
+--enable-sp-funcs option.
+  + mark some structs in form/menu/panel libraries as potentially opaque
+without modifying API/ABI.
+  + add configure option --enable-opaque-curses for ncurses library and
+similar options for the other libraries.
+
+---
+Mon Feb  6 11:08:53 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170204
+  + trim newlines, tabs and escaped newlines from terminfo "paths" passed
+to db-iterator.
+  + ignore zero-length files in db-iterator; these are useful for
+instance to suppress "$HOME/.terminfo" when not wanted.
+  + amended "b64:" encoder to work with the terminfo reader.
+  + modify terminfo reader to accept "b64:" format using RFC-3548 in
+as well as RFC-4648 url/filename-safe format.
+  + modify terminfo reader to accept "hex:" format as generated by
+"infocmp -0qQ1" (cf: 20150905).
+  + adjust authors comment to reflect drop below 1% for SV.
+
+---
+Fri Feb  3 14:17:59 UTC 2017 - jeng...@inai.de
+
+- Drop authors block from description and ship AUTHORS intead.
+- Replace canned summaries and descriptions by
+  package-specific ones.
+- Replace |xargs rm by simpler -delete. Use modern tar options.
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.Pc6kG8/_old  2017-03-05 17:50:27.542845750 +0100
+++ /var/tmp/diff_new_pack.Pc6kG8/_new  2017-03-05 17:50:27.546845184 +0100
@@ -49,7 +49,7 @@
 #
 Version:6.0
 Release:0
-Summary:New curses Libraries
+Summary:Terminal control library
 License:MIT
 Group:  System/Base
 #Git:   http://ncurses.scripts.mit.edu
@@ -75,18 +75,8 @@
 As soon as a text application needs to directly control its output to
 the screen (if it wants to place the cursor at location (x,y) then
 write text), ncurses is used. The panel and the forms libraries are
-included in this package. These new libraries support color, special
-characters, and panels.
-
-
-
-Authors:
-
-Thomas E. Dickey 
-Juergen Pfeifer 
-Eric S. Raymond 
-Zeyd M. Ben-Halim 
-Pavel Curtis
+included in this package. The ncurses libraries support color, special
+characters, forms, and panels.
 
 %package -n ncurses-utils
 Summary:Tools using the new curses libraries
@@ -109,16 +99,6 @@
 
 reset -- terminal initialization utility
 
-
-
-Authors:
-
-Thomas E. Dickey 
-Eric S. Raymond 
-Zeyd M. Ben-Halim 
-Juergen Pfeifer 
-Pavel Curtis
-
 %package -n terminfo-base
 Summary:A terminal descriptions database
 License:MIT
@@ -131,15 +111,8 @@
 contains information about any known terminal. The ncurses library
 makes use of this database to use terminals correctly.
 
-
-
-Authors:
-
-Thomas E. Dickey 
-Eric S. Raymond 
-
 %package -n 

commit ncurses for openSUSE:Factory

2017-02-08 Thread root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2017-02-08 12:12:00

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2016-12-29 
22:42:41.642435608 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2017-02-08 
12:12:00.791472805 +0100
@@ -1,0 +2,100 @@
+Fri Feb  3 08:00:06 UTC 2017 - wer...@suse.de
+
+- Use gzip shell script as GZIP envornment variable becomes obsolescent
+- Split of ncurses5-devel from ncurses-devel
+- Now ncurses-devel also provides ncurses6-devel 
+- Also ncurses5-devel requires libncurses5 (boo#1023296)
+  packages which want to be build with ncurses5-devel may require
+  pkgconfig(ncurses5) or pkgconfig(ncursesw5) or
+  /usr/bin/ncurses5-config or /usr/bin/ncursesw5-config
+
+---
+Mon Jan 30 08:58:50 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170128
+  + minor comment-fixes to help automate links to bug-urls -TD
+  + add dvtm, dvtm-256color -TD
+  + add settings corresponding to xterm-keys option to tmux entry to
+reflect upcoming change to make that option "on" by default
+(patch by Nicholas Marriott).
+  + uncancel Ms in tmux entry (Harry Gindi, Nicholas Marriott).
+  + add dumb-emacs-ansi -TD
+
+---
+Sun Jan 22 10:45:18 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170121
+  + improve discussion of early history of tput program.
+  + incorporate A_COLOR mask into COLOR_PAIR(), in case user application
+provides an out-of-range pair number (report by Elijah Stone).
+  + clarify description in tput manual page regarding support for
+termcap names (prompted by FreeBSD #214709).
+  + remove a restriction in tput's support for termcap names which
+omitted capabilities normally not shown in termcap translations
+(cf: 990123).
+  + modify configure script for clang as used on FreeBSD, to work around
+clang's differences in exit codes vs gcc.
+
+---
+Thu Jan 19 12:20:06 UTC 2017 - wer...@suse.de
+
+- Remove -L option on screen call dues API change, now we depend
+  on environment variables only.
+
+---
+Mon Jan 16 09:01:31 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170114
+  + improve discussion of early history of tset/reset programs.
+  + clarify in manual pages that the optional verbose option level is
+available only when ncurses is configured for tracing.
+  + amend change from 20161231 to avoid writing traces to the standard
+error after initializing the trace feature using the environment
+variable.
+
+---
+Mon Jan  9 11:17:00 UTC 2017 - wer...@suse.de
+
+- Add ncurses patch 20170107
+  + amend changes for tput to reset tty modes to "sane" if the program
+is run as "reset", like tset.  Likewise, ensure that tset sends
+either reset- or init-strings.
+  + improve manual page descriptions of tput init/reset and tset/reset,
+to make it easier to see how they are similar and different.
+  + move a static result from key_name() to _nc_globals
+  + modify _nc_get_screensize to allow for use_env() and use_tioctl()
+state to be per-screen when sp-funcs are configured, better matching
+the behavior when using the term-driver configuration.
+  + improve cross-references in manual pages for often used functions
+  + move SCREEN field for use_tioctl() data before the ncursesw fields,
+and limit that to the sp-funcs configuration to improve termlib
+compatibility (cf:  20120714).
+  + correct order of initialization for traces in use_env() and
+use_tioctl() versus first trace calls.
+ - Add ncurses patch 20161231
+  + fix errata for ncurses-howto (report by Damien Ruscoe).
+  + fix a few places in configure/build scripts where DESTDIR and rpath
+were combined (report by Thomas Klausner).
+  + merge current st description (report by Harry Gindi) -TD
+  + modify flash capability for linux and wyse entries to put the delay
+between the reverse/normal escapes rather than after -TD
+  + modify program tabs to pass the actual tty file descriptor to
+setupterm rather than the standard output, making padding work
+consistently.
+  + explain in clear's manual page that it writes to stdout.
+  + add special case for verbose debugging traces of command-line
+utilities which write to stderr (cf: 20161126).
+  + remove a trace with literal escapes from skip_DECSCNM(), added in
+20161203.
+  + update 

commit ncurses for openSUSE:Factory

2016-11-17 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2016-11-17 12:19:36

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2016-11-03 
11:11:47.0 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2016-11-17 
12:19:37.0 +0100
@@ -1,0 +2,9 @@
+Mon Nov  7 13:40:58 UTC 2016 - wer...@suse.de
+
+- Add ncurses patch 20161105
+  + fix typo in man/terminfo.tail (Alain Williams).
+  + correct program-name in adacurses6-config.1 manual page.
+- Add ncurses patch 20161029
+  + add new function "unfocus_current_field" (Leon Winter)
+
+---



Other differences:
--
++ ncurses-6.0-patches.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/patches/ncurses-6.0-20161029.patch 
new/patches/ncurses-6.0-20161029.patch
--- old/patches/ncurses-6.0-20161029.patch  1970-01-01 01:00:00.0 
+0100
+++ new/patches/ncurses-6.0-20161029.patch  2016-11-07 14:39:10.0 
+0100
@@ -0,0 +1,782 @@
+# ncurses 6.0 - patch 20161029 - Thomas E. Dickey
+#
+# 
--
+#
+# Ncurses 6.0 is at
+#  ftp.gnu.org:/pub/gnu
+#
+# Patches for ncurses 6.0 can be found at
+#  ftp://invisible-island.net/ncurses/6.0
+#  http://invisible-mirror.net/archives/ncurses/6.0 
+#
+# 
--
+# ftp://invisible-island.net/ncurses/6.0/ncurses-6.0-20161029.patch.gz
+# patch by Thomas E. Dickey 
+# created  Sun Oct 30 01:40:40 UTC 2016
+# 
--
+# NEWS |5 +
+# VERSION  |2 
+# dist.mk  |4 -
+# form/fld_current.c   |   32 ++-
+# form/form.h  |5 +
+# form/form.priv.h |5 +
+# form/frm_driver.c|  102 -
+# man/form.3x  |9 ++-
+# man/form_page.3x |   14 +++--
+# package/debian-mingw/changelog   |4 -
+# package/debian-mingw64/changelog |4 -
+# package/debian/changelog |4 -
+# package/mingw-ncurses.nsi|4 -
+# package/mingw-ncurses.spec   |2 
+# package/ncurses.map  |   12 +++-
+# package/ncurses.spec |2 
+# package/ncurses.sym  |6 +-
+# package/ncursest.map |   11 +++
+# package/ncursest.sym |5 +
+# package/ncursestw.map|   11 +++
+# package/ncursestw.sym|5 +
+# package/ncursesw.map |   12 +++-
+# package/ncursesw.sym |6 +-
+# 23 files changed, 178 insertions(+), 88 deletions(-)
+# 
--
+Index: NEWS
+Prereq:  1.2687 
+--- ncurses-6.0-20161022+/NEWS 2016-10-23 00:03:47.0 +
 ncurses-6.0-20161029/NEWS  2016-10-29 22:28:11.0 +
+@@ -25,7 +25,7 @@
+ -- sale, use or other dealings in this Software without prior written
--
+ -- authorization.
--
+ 
---
+--- $Id: NEWS,v 1.2687 2016/10/23 00:03:47 tom Exp $
++-- $Id: NEWS,v 1.2689 2016/10/29 22:28:11 tom Exp $
+ 
---
+ 
+ This is a log of changes that ncurses has gone through since Zeyd started
+@@ -45,6 +45,9 @@
+ Changes through 1.9.9e did not credit all contributions;
+ it is not possible to add this information.
+ 
++20161029
++  + add new function "unfocus_current_field" (Leon Winter)
++
+ 20161022
+   + modify tset -w (and tput reset) to update the program's copy of the
+ screensize if it was already set in the system, to improve tabstop
+Index: VERSION
+--- ncurses-6.0-20161022+/VERSION  2016-10-21 22:47:18.0 +
 ncurses-6.0-20161029/VERSION   2016-10-29 19:16:10.0 +
+@@ -1 +1 @@
+-5:0:9 6.0 20161022
++5:0:9 6.0 20161029
+Index: dist.mk
+Prereq:  1.1129 
+--- ncurses-6.0-20161022+/dist.mk  2016-10-21 22:47:18.0 +
 ncurses-6.0-20161029/dist.mk   2016-10-29 19:16:10.0 +
+@@ -25,7 +25,7 @@
+ # use or other dealings in this Software without prior written 

commit ncurses for openSUSE:Factory

2016-11-03 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2016-11-03 11:11:46

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2016-10-20 
23:04:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2016-11-03 
11:11:47.0 +0100
@@ -1,0 +2,42 @@
+Thu Oct 27 09:51:21 UTC 2016 - wer...@suse.de
+
+- Drop patch ncurses-5.9-environment.dif as YaST2 ncurses GUI does
+  not need it anymore and as well as it causes bug bsc#1000662 
+
+---
+Mon Oct 24 08:44:52 UTC 2016 - wer...@suse.de
+
+- Add ncurses patch 20161022
+  + modify tset -w (and tput reset) to update the program's copy of the
+screensize if it was already set in the system, to improve tabstop
+setting which relies upon knowing the actual screensize.
+  + add functionality of tset -w to tput, like the "-c" feature this is
+not optional in tput.
+  + add "clear" as a possible link/alias to tput.
+  + improve tput's check for being called as "init" or "reset" to allow
+for transformed names.
+  + split-out the "clear" function from progs/clear.c, share with
+tput to get the same behavior, e.g., the E3 extension.
+
+---
+Mon Oct 17 08:37:12 UTC 2016 - wer...@suse.de
+
+- Add ncurses patch 20161015
+  + amend internal use of tputs to consistently use the number of lines
+affected, e.g., for insert/delete character operations.  While
+merging terminfo source early in 1995, several descriptions used the
+"*" proportional delay for these operations, prompting a change in
+doupdate.
+  + regenerate llib-* files.
+  + regenerate HTML manpages.
+  + fix several formatting issues with manual pages.
+
+---
+Thu Oct 13 08:34:02 UTC 2016 - wer...@suse.de
+
+- Add ncurses patch 20161008
+  + adjust size in infocmp/tic to work with strlcpy.
+  + fix configure script to record when strlcat is found on OpenBSD.
+  + build-fix for "recent" OpenBSD vs baudrate.
+
+---

Old:

  ncurses-5.9-environment.dif



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.VO02l5/_old  2016-11-03 11:11:49.0 +0100
+++ /var/tmp/diff_new_pack.VO02l5/_new  2016-11-03 11:11:49.0 +0100
@@ -66,7 +66,6 @@
 Patch0: ncurses-6.0.dif
 Patch1: ncurses-5.9-ibm327x.dif
 Patch4: ncurses-5.7-tack.dif
-Patch5: ncurses-5.9-environment.dif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %global _miscdir%{_datadir}/misc
 %global _incdir %{_includedir}
@@ -278,7 +277,6 @@
 mv tack-* tack
 %patch1 -p0 -b .327x
 %patch4 -p0 -b .hs
-%patch5 -p0 -b .lc
 %patch0 -p0 -b .p0
 rm -vf include/ncurses_dll.h
 rm -vf mkdirs.sh
@@ -400,6 +398,9 @@
 # No --enable-xmc-glitch because this seems to break yast2
 # on console/konsole (no magic cookie support on those?)
 #
+# No --enable-hard-tabs for users which have disabled
+# the use of tabs
+#
 touch --reference=README config.sub config.guess
 > $SCREENLOG
 tail -q -s 0.5 -f $SCREENLOG & pid=$!
@@ -420,6 +421,7 @@
--with-gpm  \
 %endif
--with-dlsym\
+   --with-terminfo-dirs=%{_sysconfdir}/terminfo:%{_datadir}/terminfo \
--with-termlib=tinfo\
--with-ticlib=tic   \
--with-xterm-kbs=del\
@@ -532,6 +534,7 @@
EOF
 %endif
 # must not use %jobs here (would lead to: ln: ncurses.h already exists)
+find man/ -name '*.[1-8]x.*' | xargs -r rm -vf
 make install DESTDIR=%{root} includedir=%{_incdir} includesubdir=/ncurses 
libdir=%{_libdir}
 ln -sf %{_incdir}/ncurses/{curses,ncurses,term,termcap}.h %{root}%{_incdir}
 sh %{S:6} --cflags "-D_GNU_SOURCE -I%{_incdir}/ncurses" --libs "-lncurses" 
--libs "-ltinfo" %{root}%{_bindir}/ncurses6-config
@@ -778,7 +781,7 @@
 install -m 644 %{S:3}  
%{buildroot}%{_defaultdocdir}/ncurses/
 install -m 644 README  
%{buildroot}%{_defaultdocdir}/ncurses/
 install -m 644 NEWS
%{buildroot}%{_defaultdocdir}/ncurses/
-mkdir -p %{buildroot}%{_sysconfdir}
+mkdir -p %{buildroot}%{_sysconfdir}/terminfo
 mkdir -p %{buildroot}%{_miscdir}
 LD_LIBRARY_PATH=%{buildroot}%{_libdir}:%{buildroot}/%{_lib}
 export LD_LIBRARY_PATH
@@ -873,6 +876,7 @@
 %defattr(-,root,root)
 

commit ncurses for openSUSE:Factory

2016-10-20 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2016-10-20 23:04:32

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2016-10-04 
15:41:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2016-10-20 
23:04:32.0 +0200
@@ -1,0 +2,11 @@
+Tue Oct  4 16:38:06 UTC 2016 - wer...@suse.de
+
+- Add ncurses patch 20161001
+  + add -W option to tic/infocmp to force long strings to wrap.  This is
+in addition to the -w option which attempts to fit capabilities into
+a given line-length.
+  + add linux-m1 minitel entries (patch by Alexandre Montaron).
+  + correct rs2 string for vt100-nam -TD
+- Re-enable block cursor on virtual console
+
+---



Other differences:
--
++ ncurses-6.0-patches.tar.bz2 ++
 5344 lines of diff (skipped)

++ ncurses-6.0.dif ++
--- /var/tmp/diff_new_pack.Uk5spE/_old  2016-10-20 23:04:35.0 +0200
+++ /var/tmp/diff_new_pack.Uk5spE/_new  2016-10-20 23:04:35.0 +0200
@@ -1,5 +1,5 @@
 ---
- aclocal.m4   |   40 +++--
+ aclocal.m4   |   40 +++-
  configure|   41 +++--
  include/curses.h.in  |3 
  include/termcap.h.in |2 
@@ -8,7 +8,7 @@
  man/ncurses.3x   |4 +
  misc/gen-pkgconfig.in|7 +-
  misc/ncurses-config.in   |2 
- misc/terminfo.src|  132 
+--
+ misc/terminfo.src|  133 
+--
  ncurses/Makefile.in  |2 
  ncurses/curses.priv.h|2 
  ncurses/run_cmd.sh   |   11 +++
@@ -18,10 +18,10 @@
  ncurses/tinfo/read_entry.c   |2 
  ncurses/tinfo/read_termcap.c |   21 --
  test/test.priv.h |4 -
- 19 files changed, 239 insertions(+), 80 deletions(-)
+ 19 files changed, 240 insertions(+), 80 deletions(-)
 
 --- aclocal.m4
-+++ aclocal.m4 2016-09-12 12:57:28.319002677 +
 aclocal.m4 2016-10-04 16:26:22.355764323 +
 @@ -564,7 +564,7 @@ AC_MSG_CHECKING([for size of bool])
  AC_CACHE_VAL(cf_cv_type_of_bool,[
rm -f cf_test.out
@@ -150,7 +150,7 @@
  esac
  done
 --- configure
-+++ configure  2016-09-12 12:57:28.323002600 +
 configure  2016-10-04 16:26:22.363764173 +
 @@ -5895,7 +5895,7 @@ case $cf_cv_system_name in
fi
;;
@@ -287,7 +287,7 @@
# the next lines are needed for linking libtic over libncurses
TINFO_NAME=${LIB_NAME}
 --- include/curses.h.in
-+++ include/curses.h.in2016-09-12 12:57:28.323002600 +
 include/curses.h.in2016-10-04 16:26:22.363764173 +
 @@ -165,6 +165,9 @@ typedef @cf_cv_typeof_chtype@ chtype;
  typedef @cf_cv_typeof_mmask_t@ mmask_t;
  #endif
@@ -299,7 +299,7 @@
   * We need FILE, etc.  Include this before checking any feature symbols.
   */
 --- include/termcap.h.in
-+++ include/termcap.h.in   2016-09-12 12:57:28.323002600 +
 include/termcap.h.in   2016-10-04 16:26:22.363764173 +
 @@ -46,6 +46,8 @@ extern "C"
  {
  #endif /* __cplusplus */
@@ -310,7 +310,7 @@
  
  #undef  NCURSES_CONST 
 --- include/tic.h
-+++ include/tic.h  2016-09-12 12:57:28.323002600 +
 include/tic.h  2016-10-04 16:26:22.363764173 +
 @@ -231,12 +231,12 @@ extern NCURSES_EXPORT(const struct alias
   */
  
@@ -327,7 +327,7 @@
  #define CANCELLED_STRING  (char *)(-1)
  
 --- man/man_db.renames
-+++ man/man_db.renames 2016-09-12 12:57:28.323002600 +
 man/man_db.renames 2016-10-04 16:26:22.363764173 +
 @@ -167,6 +167,8 @@ tput.1 tput.1
  tset.1tset.1
  vprintf.3svprintf.3
@@ -338,7 +338,7 @@
  # Other:
  tack.1m   tack.1
 --- man/ncurses.3x
-+++ man/ncurses.3x 2016-09-12 12:57:28.323002600 +
 man/ncurses.3x 2016-10-04 16:26:22.363764173 +
 @@ -121,6 +121,10 @@ after the shell environment variable \fB
  [See \fBterminfo\fR(\*n) for further details.]
  .SS Datatypes
@@ -351,7 +351,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  2016-09-12 12:57:28.327002524 +
 misc/gen-pkgconfig.in  2016-10-04 16:26:22.363764173 +
 @@ -76,7 +76,7 @@ if test "$includedir" != "/usr/include"
  fi
  
@@ -391,7 +391,7 @@
  
echo "** creating 

commit ncurses for openSUSE:Factory

2016-10-04 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2016-10-04 15:41:26

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2016-08-25 
09:49:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2016-10-04 
15:41:05.0 +0200
@@ -1,0 +2,70 @@
+Mon Sep 26 11:13:35 UTC 2016 - wer...@suse.de
+
+- Add ncurses patch 20160924
+  + modify _nc_tic_expand to escape comma if it immediately follows a
+percent sign, to work with minitel change.
+  + updated minitel and viewdata descriptions (Alexandre Montaron).
+
+---
+Mon Sep 19 06:52:26 UTC 2016 - wer...@suse.de
+
+- Add ncurses patch 20160917
+  + build-fix for gnat6, which unhelpfully attempts to compile C files.
+  + fix typo in 20160910 changes (Debian #837892, patch by Sven Joachim).
+
+---
+Mon Sep 12 12:55:25 UTC 2016 - wer...@suse.de
+
+- Add ncurses patch 20160910
+  + trim dead code ifdef'd with HIDE_EINTR since 970830 (discussion with
+Leon Winter).
+  + trim some obsolete/incorrect wording about EINTR from wgetch manual
+page (patch by Leon Winter).
+  + really correct 20100515 change (patch by Rich Coe).
+  + add "--enable-string-hacks" option to test/configure
+  + completed string-hacks for "sprintf", etc., including test-programs.
+  + make "--enable-string-hacks" work with Debian by checking for the
+"bsd" library and its associated "" header.
+- Add ncurses patch 20160903
+  + correct 20100515 change for weak signals versus sigprocmask (report
+by Rich Coe).
+  + modify misc/Makefile.in to work around OpenBSD "make" which unlike
+all other versions of "make" does not recognize continuation lines
+of comments.
+  + amend the last change to CF_C_ENV_FLAGS to move only the
+preprocessor, optimization and warning flags to CPPFLAGS and CFLAGS,
+leaving the residue in CC.  That happens to work for gcc's various
+"model" options, but may require tuning for other compilers (report
+by Sven Joachim).
+- Add ncurses patch 20160827
+  + add "v" menu entry to test/ncurses.c to show baudrate and other
+values.
+  + add "newer" baudrate symbols from Linux and FreeBSD to progs/tset.c,
+lib_baudrate.c
+  + modify CF_XOPEN_SOURCE macro:
++ add "uclinux" to case for "linux" (patch by Yann E. Morin)
++ modify _GNU_SOURCE for cygwin headers, tested with cygwin 2.3, 2.5
+  (patch by Corinna Vinschen, from changes to tin).
+  + improve CF_CC_ENV_FLAGS macro to allow for compiler wrappers such
+as "ccache" (report by Enrico Scholz).
+  + update config.guess, config.sub from
+  http://git.savannah.gnu.org/cgit/config.git
+- Add ncurses patch 20160820
+  + update tput manual page to reflect changes to manipulate terminal
+modes by sharing functions with tset.
+  + add the terminal-mode parts of "reset" (aka tset) to the "tput reset"
+command, making the two almost the same except for window-size.
+  + adapt logic used in dialog "--keep-tite" option for test/filter.c as
+"-a" option.  When set, test/filter attempts to suppress the
+alternate screen.
+  + correct a typo in interix entry -TD
+- Drop patch ncurses-6.0-signal.dif as now upstream
+
+---
+Mon Sep  5 00:14:00 UTC 2016 - r...@wi.rr.com
+
+- Add patch ncurses-6.0-signal.dif for bnc#995148:
++ redfine sigprocmask macro
++ wrap sigprocmask to call system sigprocmask instead of self
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.4OWTYO/_old  2016-10-04 15:41:08.0 +0200
+++ /var/tmp/diff_new_pack.4OWTYO/_new  2016-10-04 15:41:08.0 +0200
@@ -261,7 +261,6 @@
 %prep
 %setup -q
 rm -f  Ada95/src/terminal_interface-curses.adb
-rm -f  Ada95/src/library.gpr
 rm -f  mkinstalldirs
 tar xfj %{S:1}
 set +x

++ ncurses-6.0-patches.tar.bz2 ++
 73514 lines of diff (skipped)

++ ncurses-6.0.dif ++
--- /var/tmp/diff_new_pack.4OWTYO/_old  2016-10-04 15:41:10.0 +0200
+++ /var/tmp/diff_new_pack.4OWTYO/_new  2016-10-04 15:41:10.0 +0200
@@ -21,7 +21,7 @@
  19 files changed, 239 insertions(+), 80 deletions(-)
 
 --- aclocal.m4
-+++ aclocal.m4 2016-08-08 12:33:42.740866267 +
 aclocal.m4 2016-09-12 12:57:28.319002677 +
 @@ -564,7 +564,7 @@ AC_MSG_CHECKING([for size of bool])
  AC_CACHE_VAL(cf_cv_type_of_bool,[
rm -f 

commit ncurses for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2016-08-25 09:49:27

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2016-07-24 
19:41:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2016-08-25 
09:49:29.0 +0200
@@ -1,0 +2,41 @@
+Mon Aug 15 11:55:32 UTC 2016 - wer...@suse.de
+
+- Add ncurses patch 20160813
+  + add a dependency upon generated-sources in Ada95/src/Makefile.in to
+handle a case of "configure && make install".
+  + trim trailing blanks from include/Caps*, to work around a problem
+in sed (Debian #818067).
+
+---
+Mon Aug  8 12:32:57 UTC 2016 - wer...@suse.de
+
+- Add ncurses patch 20160806
+  + improve CF_GNU_SOURCE configure macro to optionally define
+_DEFAULT_SOURCE work around a nuisance in recent glibc releases.
+  + move the terminfo-specific parts of tput's "reset" function into
+the shared reset_cmd.c, making the two forms of reset use the same
+strings.
+  + split-out the terminal initialization functions from tset as
+progs/reset_cmd.c, as part of changes to merge the reset-feature
+with tput.
+
+---
+Mon Aug  1 11:45:10 UTC 2016 - wer...@suse.de
+
+- Add ncurses patch 20160730
+  + change tset's initialization to allow it to get settings from the
+standard input as well as /dev/tty, to be more effective when
+output or error are redirected.
+  + improve discussion of history and portability for tset/reset/tput
+manual pages.
+- Add ncurses patch 20160723
+  + improve error message from tset/reset when both stderr/stdout are
+redirected to a file or pipe.
+  + improve organization of curs_attr.3x, curs_color.3x
+- Add ncurses patch 20160709
+  + work around Debian's antique/unmaintained version of mawk when
+building link_test.
+  + improve test/list_keys.c, showing ncurses's convention of modifiers
+for special keys, based on xterm.
+
+---



Other differences:
--
++ ncurses-6.0-patches.tar.bz2 ++
 27338 lines of diff (skipped)

++ ncurses-6.0.dif ++
--- /var/tmp/diff_new_pack.eWGs5E/_old  2016-08-25 09:49:31.0 +0200
+++ /var/tmp/diff_new_pack.eWGs5E/_new  2016-08-25 09:49:31.0 +0200
@@ -21,7 +21,7 @@
  19 files changed, 239 insertions(+), 80 deletions(-)
 
 --- aclocal.m4
-+++ aclocal.m4 2016-07-07 09:02:12.558645150 +
 aclocal.m4 2016-08-08 12:33:42.740866267 +
 @@ -564,7 +564,7 @@ AC_MSG_CHECKING([for size of bool])
  AC_CACHE_VAL(cf_cv_type_of_bool,[
rm -f cf_test.out
@@ -31,7 +31,7 @@
  #include 
  
  #if defined(__cplusplus)
-@@ -4687,12 +4687,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
-@@ -4817,9 +4820,9 @@ 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 <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <\$TMP
  CF_EOF
  if test -n "$cf_compress" ; then
-@@ -11694,9 +11697,9 @@ cat >>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <$@
 --- ncurses/curses.priv.h
-+++ ncurses/curses.priv.h  2016-07-07 09:02:12.566644995 +
 ncurses/curses.priv.h  2016-08-08 12:33:42.748866115 +
 @@ -2024,6 +2024,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);
@@ -795,7 +795,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 2016-07-07 09:02:12.566644995 +
 ncurses/run_cmd.sh 2016-08-08 12:33:42.748866115 +
 @@ -0,0 +1,11 @@
 +#!/bin/sh
 +
@@ -809,7 +809,7 @@
 +
 +exec ${1+"$@"}
 --- ncurses/tinfo/MKfallback.sh
-+++ ncurses/tinfo/MKfallback.sh2016-07-07 09:02:12.566644995 +
 ncurses/tinfo/MKfallback.sh2016-08-08 12:33:42.748866115 +
 @@ -68,6 +68,12 @@ else
tmp_info=
  fi
@@ -842,7 +842,7 @@
done
  
 --- ncurses/tinfo/access.c
-+++ ncurses/tinfo/access.c 2016-07-07 09:02:12.566644995 +
 ncurses/tinfo/access.c 2016-08-08 12:33:42.748866115 +
 @@ -35,6 

commit ncurses for openSUSE:Factory

2016-07-24 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2016-07-24 19:41:58

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2016-07-09 
09:18:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2016-07-24 
19:41:59.0 +0200
@@ -1,0 +2,14 @@
+Thu Jul  7 08:57:03 UTC 2016 - wer...@suse.de
+
+- Add ncurses patch 20160702
+  + improve test/list_keys.c, using $TERM if no parameters areg given.
+- Add ncurses patch 20160625
+  + build-fixes for ncurses "test_progs" rule. 
+  + amend change to CF_CC_ENV_FLAGS in 20160521 to make multilib build 
+work (report by Sven Joachim).
+- Add ncurses patch 20160618
+  + build-fixes for ncurses-examples with NetBSD curses.
+  + improve test/list_keys.c, fixing column-widths and sorting the list
+to make it more readable.
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.wxNIuO/_old  2016-07-24 19:42:00.0 +0200
+++ /var/tmp/diff_new_pack.wxNIuO/_new  2016-07-24 19:42:00.0 +0200
@@ -277,10 +277,10 @@
 rm -fr tack
 tar  xfz %{S:5}
 mv tack-* tack
-%patch -P 1 -p0 -b .327x
-%patch -P 4 -p0 -b .hs
-%patch -P 5 -p0 -b .lc
-%patch -P 0 -p0 -b .p0
+%patch1 -p0 -b .327x
+%patch4 -p0 -b .hs
+%patch5 -p0 -b .lc
+%patch0 -p0 -b .p0
 rm -vf include/ncurses_dll.h
 rm -vf mkdirs.sh
 rm -vf tar-copy.sh

++ ncurses-5.9-environment.dif ++
--- /var/tmp/diff_new_pack.wxNIuO/_old  2016-07-24 19:42:00.0 +0200
+++ /var/tmp/diff_new_pack.wxNIuO/_new  2016-07-24 19:42:00.0 +0200
@@ -1,6 +1,11 @@
+---
+ man/curs_util.3x |3 +++
+ ncurses/tinfo/lib_data.c |2 +-
+ 2 files changed, 4 insertions(+), 1 deletion(-)
+
 --- man/curs_util.3x
-+++ man/curs_util.3x   2012-07-20 15:36:56.0 +
-@@ -167,6 +167,9 @@ ncurses modifies the last step in its co
 man/curs_util.3x   2016-07-07 09:01:21.335637800 +
+@@ -172,6 +172,9 @@ ncurses modifies the last step in its co
  checks if the \fBLINES\fR and \fBCOLUMNS\fR environment variables
  are set to a number greater than zero.
  .bP
@@ -11,7 +16,7 @@
  with the value that it has obtained via operating system call
  or from the terminal database.
 --- ncurses/tinfo/lib_data.c
-+++ ncurses/tinfo/lib_data.c   2012-07-20 15:16:13.0 +
 ncurses/tinfo/lib_data.c   2016-07-07 09:01:21.339637723 +
 @@ -257,7 +257,7 @@ NCURSES_EXPORT_VAR(NCURSES_PRESCREEN) _n
  NULL, /* _tputs_trace */
  #endif

++ ncurses-5.9-ibm327x.dif ++
--- /var/tmp/diff_new_pack.wxNIuO/_old  2016-07-24 19:42:00.0 +0200
+++ /var/tmp/diff_new_pack.wxNIuO/_new  2016-07-24 19:42:00.0 +0200
@@ -1,6 +1,10 @@
+---
+ misc/terminfo.src |4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
 --- misc/terminfo.src
-+++ misc/terminfo.src  2014-01-28 17:58:38.062235705 +
-@@ -14838,8 +14838,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
 misc/terminfo.src  2016-07-07 09:00:03.889138816 +
+@@ -15380,8 +15380,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
  #
  
  ibm327x|line mode IBM 3270 style,

++ ncurses-6.0-patches.tar.bz2 ++
 3671 lines of diff (skipped)

++ ncurses-6.0.dif ++
--- /var/tmp/diff_new_pack.wxNIuO/_old  2016-07-24 19:42:01.0 +0200
+++ /var/tmp/diff_new_pack.wxNIuO/_new  2016-07-24 19:42:01.0 +0200
@@ -21,7 +21,7 @@
  19 files changed, 239 insertions(+), 80 deletions(-)
 
 --- aclocal.m4
-+++ aclocal.m4 2016-06-13 10:16:37.035750939 +
 aclocal.m4 2016-07-07 09:02:12.558645150 +
 @@ -564,7 +564,7 @@ AC_MSG_CHECKING([for size of bool])
  AC_CACHE_VAL(cf_cv_type_of_bool,[
rm -f cf_test.out
@@ -31,7 +31,7 @@
  #include 
  
  #if defined(__cplusplus)
-@@ -4684,12 +4684,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
-@@ -4814,9 +4817,9 @@ cat >>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <$@
 --- ncurses/curses.priv.h
-+++ ncurses/curses.priv.h  2016-06-13 10:16:37.043750782 +
 ncurses/curses.priv.h  2016-07-07 09:02:12.566644995 +
 @@ -2024,6 +2024,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);
@@ -795,7 +795,7 @@
  extern NCURSES_EXPORT(int) _nc_freewin (WINDOW *);

commit ncurses for openSUSE:Factory

2016-07-09 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2016-07-09 09:17:52

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2016-05-26 
23:52:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2016-07-09 
09:18:04.0 +0200
@@ -1,0 +2,39 @@
+Mon Jun 13 10:09:58 UTC 2016 - wer...@suse.de
+
+- Add ncurses patch 20160611
+  + revise fix for Debian #805618 (report by Vlado Potisk, cf: 20151128).
+  + modify test/ncurses.c a/A screens to make exiting on an escape
+character depend on the start of keypad and timeout modes, to allow
+better testing of function-keys.
+  + modify rs1 for xterm-16color, xterm-88color and xterm-256color to
+reset palette using "oc" string as in linux -TD
+  + use ANSI reply for u8 in xterm-new, to reflect vt220-style responses
+that could be returned -TD
+  + added a few capabilities fixed in recent vte -TD
+
+---
+Mon Jun  6 13:15:39 UTC 2016 - wer...@suse.de
+
+- Add ncurses patch 20160528
+  + further workaround for PIE/PIC breakage which causes gpm to not link.
+  + fix most cppcheck warnings, mostly style, in ncurses library.
+- Add ncurses patch 20160604
+  + correct logic for -f option in test/demo_terminfo.c
+  + add test/list_keys.c
+
+---
+Tue May 24 07:41:19 UTC 2016 - wer...@suse.de
+
+- Add ncurses patch 20160521
+  + improved manual page description of tset/reset versus window-size.
+  + fixes to work with a slightly broken compiler configuration which
+cannot compile "Hello World!" without adding compiler options
+(report by Ola x Nilsson):
++ pass appropriate compiler options to the CF_PROG_CC_C_O macro.
++ when separating compiler and options in CF_CC_ENV_FLAGS, ensure
+  that all options are split-off into CFLAGS or CPPFLAGS
++ restore some -I options removed in 20140726 because they appeared
+  to be redundant.  In fact, they are needed for a compiler that
+  cannot combine -c and -o options.
+
+---



Other differences:
--
++ ncurses-6.0-patches.tar.bz2 ++
 53617 lines of diff (skipped)

++ ncurses-6.0.dif ++
--- /var/tmp/diff_new_pack.F2ZlGC/_old  2016-07-09 09:18:06.0 +0200
+++ /var/tmp/diff_new_pack.F2ZlGC/_new  2016-07-09 09:18:06.0 +0200
@@ -21,7 +21,7 @@
  19 files changed, 239 insertions(+), 80 deletions(-)
 
 --- aclocal.m4
-+++ aclocal.m4 2016-05-17 10:35:27.099114266 +
 aclocal.m4 2016-06-13 10:16:37.035750939 +
 @@ -564,7 +564,7 @@ AC_MSG_CHECKING([for size of bool])
  AC_CACHE_VAL(cf_cv_type_of_bool,[
rm -f cf_test.out
@@ -31,7 +31,7 @@
  #include 
  
  #if defined(__cplusplus)
-@@ -4677,12 +4677,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
-@@ -4807,9 +4810,9 @@ 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 <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <\$TMP
  CF_EOF
  if test -n "$cf_compress" ; then
-@@ -11676,9 +11679,9 @@ cat >>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <\E[?5l, home=\E[H, hpa=\E[%i%p1%dG,
ht=^I, hts=\EH, ich=\E[%p1%d@, ich1=\E[@, il=\E[%p1%dL,
-@@ -4405,8 +4417,26 @@ xterm-noapp|xterm with cursor keys in no
+@@ -4407,8 +4419,26 @@ xterm-noapp|xterm with cursor keys in no
  xterm-24|vs100|xterms|xterm terminal emulator (X Window System),
lines#24, use=xterm-old,
  
@@ -534,7 +534,7 @@
use=xterm-new,
  
  # This entry assumes that xterm's handling of VT100 SI/SO is disabled by
-@@ -4741,7 +4771,7 @@ xterms-sun|small (80x24) xterm with sunF
+@@ -4743,7 +4773,7 @@ xterms-sun|small (80x24) xterm with sunF
  
   GNOME (VTE)
  # this describes the alpha-version of Gnome terminal shipped with Redhat 6.0
@@ -543,7 +543,7 @@
bce,
kdch1=\177, kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS,
use=xterm-color,
-@@ -4910,10 +4940,14 @@ mgt|Multi GNOME Terminal,
+@@ -4916,10 +4946,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).
@@ -559,7 +559,7 @@
  # Konsole 1.0.1
  # (formerly known as kvt)
  #
-@@ -5043,14 +5077,14 

commit ncurses for openSUSE:Factory

2016-05-26 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2016-05-26 23:52:06

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2016-05-14 
12:22:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2016-05-26 
23:52:07.0 +0200
@@ -1,0 +2,26 @@
+Tue May 17 10:33:40 UTC 2016 - wer...@suse.de
+
+- Add ncurses patch 20160514
+  + regenerate HTML manpages.
+  + improve manual pages for wgetch and wget_wch to point out that they
+might return values without names in curses.h (Debian #822426).
+  + make linux3.0 entry the default linux entry (Debian #823658) -TD
+  + modify linux2.6 entry to improve line-drawing so that the linux3.0
+entry can be used in non-UTF-8 mode -TD
+  + document return value of use_extended_names (report by Mike Gran).
+- Modify patch ncurses-6.0.dif
+
+---
+Tue May 10 08:29:56 UTC 2016 - wer...@suse.de
+
+- Add ncurses patch 20160507
+  + amend change to _nc_do_color to restore the early return for the
+special case used in _nc_screen_wrap (report by Dick Streefland,
+cf: 20151017).
+  + modify test/ncurses.c:
++ check return-value of putwin
++ correct ifdef which made the 'g' test's legend not reflect changes
+  to keypad- and scroll-modes.
+  + correct return-value of extended putwin (report by Mike Gran).
+
+---



Other differences:
--
++ ncurses-6.0-patches.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/patches/ncurses-6.0-20160507.patch 
new/patches/ncurses-6.0-20160507.patch
--- old/patches/ncurses-6.0-20160507.patch  1970-01-01 01:00:00.0 
+0100
+++ new/patches/ncurses-6.0-20160507.patch  2016-05-10 10:28:27.0 
+0200
@@ -0,0 +1,367 @@
+# ncurses 6.0 - patch 20160507 - Thomas E. Dickey
+#
+# 
--
+#
+# Ncurses 6.0 is at
+#  ftp.gnu.org:/pub/gnu
+#
+# Patches for ncurses 6.0 can be found at
+#  ftp://invisible-island.net/ncurses/6.0
+#  http://invisible-mirror.net/archives/ncurses/6.0 
+#
+# 
--
+# ftp://invisible-island.net/ncurses/6.0/ncurses-6.0-20160507.patch.gz
+# patch by Thomas E. Dickey 
+# created  Sun May  8 00:34:20 UTC 2016
+# 
--
+# NEWS |   12 +-
+# VERSION  |2 -
+# dist.mk  |4 +-
+# ncurses/base/lib_color.c |6 ++-
+# ncurses/base/lib_screen.c|5 +-
+# package/debian-mingw/changelog   |4 +-
+# package/debian-mingw64/changelog |4 +-
+# package/debian/changelog |4 +-
+# package/mingw-ncurses.nsi|4 +-
+# package/mingw-ncurses.spec   |2 -
+# package/ncurses.spec |2 -
+# test/ncurses.c   |   73 -
+# 12 files changed, 55 insertions(+), 67 deletions(-)
+# 
--
+Index: NEWS
+Prereq:  1.2597 
+--- ncurses-6.0-20160423+/NEWS 2016-04-24 01:01:58.0 +
 ncurses-6.0-20160507/NEWS  2016-05-07 23:49:50.0 +
+@@ -25,7 +25,7 @@
+ -- sale, use or other dealings in this Software without prior written
--
+ -- authorization.
--
+ 
---
+--- $Id: NEWS,v 1.2597 2016/04/24 01:01:58 tom Exp $
++-- $Id: NEWS,v 1.2600 2016/05/07 23:49:50 tom Exp $
+ 
---
+ 
+ This is a log of changes that ncurses has gone through since Zeyd started
+@@ -45,6 +45,16 @@
+ Changes through 1.9.9e did not credit all contributions;
+ it is not possible to add this information.
+ 
++20160507
++  + amend change to _nc_do_color to restore the early return for the
++special case used in _nc_screen_wrap (report by Dick Streefland,
++cf: 20151017).
++  + modify test/ncurses.c:
+++ check return-value of putwin
+++ correct ifdef which made the 'g' test's legend not reflect changes
++  to keypad- and scroll-modes.
++  + correct return-value of extended putwin (report by Mike 

commit ncurses for openSUSE:Factory

2016-05-14 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2016-05-14 12:22:52

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2016-03-21 
12:43:40.0 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2016-05-14 
12:22:53.0 +0200
@@ -1,0 +2,47 @@
+Tue Apr 26 11:39:18 UTC 2016 - wer...@suse.de
+
+- Add ncurses patch 20160423
+  + modify test/ncurses.c 'd' edit-color menu to optionally read xterm
+color palette directly from terminal, as well as handling KEY_RESIZE
+and screen-repainting with control/L and control/R.
+  + add 'oc' capability to xterm+256color, allowing palette reset for
+xterm -TD
+
+---
+Mon Apr 18 08:34:22 UTC 2016 - wer...@suse.de
+
+- Add ncurses patch 20160416
+  + add workaround in configure script for inept transition to PIE vs
+PIC builds documented in
+https://fedoraproject.org/wiki/Changes/Harden_All_Packages
+  + add "reset" to list of programs whose names might change in manpages
+due to program-transformation configure options.
+  + drop long-obsolete "-n" option from tset.
+- Add ncurses patch 20160409
+  + modify test/blue.c to use Unicode values for card-glyphs when
+available, as well as improving the check for CP437 and CP850.
+- Add ncurses patch 20160402
+  + regenerate HTML manpages.
+  + improve manual pages for utilities with respect to POSIX versus
+X/Open Curses.
+- Add ncurses patch 20160326
+  + regenerate HTML manpages.
+  + improve test/demo_menus.c, allowing mouse-click on the menu-headers
+to switch the active menu.  This requires a new extension option
+O_MOUSE_MENU to tell the menu driver to put mouse events which do not
+apply to the active menu back into the queue so that the application
+can handle the event.
+- Add ncurses patch 20160319
+  + improve description of tgoto parameters (report by Steffen Nurpmeso).
+  + amend workaround for Solaris line-drawing to restore a special case
+that maps Unicode line-drawing characters into the acsc string for
+non-Unicode locales (Debian #816888).
+- Add ncurses patch 20160312
+  + modified test/filter.c to illustrate an alternative to getnstr, that
+polls for input while updating a clock on the right margin as well
+as responding to window size-changes.
+- Add ncurses patch 20160305
+  + omit a redefinition of "inline" when traces are enabled, since this
+does not work with gcc 5.3.x MinGW cross-compiling (cf: 20150912).
+
+---



Other differences:
--
++ ncurses-6.0-patches.tar.bz2 ++
 23100 lines of diff (skipped)

++ ncurses-6.0.dif ++
--- /var/tmp/diff_new_pack.ZLTf1y/_old  2016-05-14 12:22:55.0 +0200
+++ /var/tmp/diff_new_pack.ZLTf1y/_new  2016-05-14 12:22:55.0 +0200
@@ -21,7 +21,7 @@
  19 files changed, 239 insertions(+), 80 deletions(-)
 
 --- aclocal.m4
-+++ aclocal.m4 2016-02-15 13:54:16.012308337 +
 aclocal.m4 2016-04-26 11:40:45.161925098 +
 @@ -564,7 +564,7 @@ AC_MSG_CHECKING([for size of bool])
  AC_CACHE_VAL(cf_cv_type_of_bool,[
rm -f cf_test.out
@@ -150,7 +150,7 @@
  esac
  done
 --- configure
-+++ configure  2016-02-15 13:54:16.016308259 +
 configure  2016-04-26 11:40:45.165925024 +
 @@ -5867,7 +5867,7 @@ case $cf_cv_system_name in
fi
;;
@@ -160,7 +160,7 @@
;;
  (openbsd[2-9].*|mirbsd*)
LD_RPATH_OPT="-Wl,-rpath,"
-@@ -11502,12 +11502,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
-@@ -11632,9 +11635,9 @@ cat >>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <\E[?5l, home=\E[H, hpa=\E[%i%p1%dG,
ht=^I, hts=\EH, ich=\E[%p1%d@, ich1=\E[@, il=\E[%p1%dL,
-@@ -4400,8 +4412,26 @@ xterm-noapp|xterm with cursor keys in no
+@@ -4401,8 +4413,26 @@ xterm-noapp|xterm with cursor keys in no
  xterm-24|vs100|xterms|xterm terminal emulator (X Window System),
lines#24, use=xterm-old,
  
@@ -534,7 +534,7 @@
use=xterm-new,
  
  # This entry assumes that xterm's handling of VT100 SI/SO is disabled by
-@@ -4736,7 +4766,7 @@ xterms-sun|small (80x24) xterm with sunF
+@@ -4737,7 +4767,7 @@ xterms-sun|small (80x24) xterm with sunF
  
   GNOME (VTE)
  # this describes the alpha-version of Gnome terminal shipped with Redhat 6.0
@@ -543,7 +543,7 @@
 

commit ncurses for openSUSE:Factory

2016-03-21 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2016-03-21 12:43:38

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2016-03-01 
11:56:58.0 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2016-03-21 
12:43:40.0 +0100
@@ -1,0 +2,15 @@
+Thu Feb 25 13:19:20 UTC 2016 - wer...@suse.de
+
+- Add ncurses patch 20160220
+  + modify test/configure script to check for pthread dependency of
+ncursest or ncursestw library when building ncurses examples, e.g.,
+in case weak symbols are used.
+  + modify configure macro for shared-library rules to use -Wl,-rpath
+rather than -rpath to work around a bug in scons (FreeBSD #178732,
+cf: 20061021).
+  + double-width multibyte characters were not counted properly in
+winsnstr and wins_nwstr (report/example by Eric Pruitt).
+  + update config.guess, config.sub from
+  http://git.savannah.gnu.org/cgit/config.git
+
+---



Other differences:
--
++ ncurses-6.0-patches.tar.bz2 ++
 3878 lines of diff (skipped)

++ ncurses-6.0.dif ++
--- /var/tmp/diff_new_pack.2dDrGS/_old  2016-03-21 12:43:42.0 +0100
+++ /var/tmp/diff_new_pack.2dDrGS/_new  2016-03-21 12:43:42.0 +0100
@@ -154,7 +154,7 @@
 @@ -5867,7 +5867,7 @@ case $cf_cv_system_name in
fi
;;
- (linux*|gnu*|k*bsd*-gnu)
+ (linux*|gnu*|k*bsd*-gnu|freebsd*)
 -  LD_RPATH_OPT="-Wl,-rpath,"
 +  LD_RPATH_OPT="-Wl,-rpath-link,"
;;




commit ncurses for openSUSE:Factory

2016-03-01 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2016-03-01 11:56:39

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2016-01-21 
23:40:32.0 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2016-03-01 
11:56:58.0 +0100
@@ -1,0 +2,43 @@
+Mon Feb 15 13:53:44 UTC 2016 - wer...@suse.de
+
+- Add ncurses patch 20160213
+  + amend fix for _nc_ripoffline from 20091031 to make test/ditto.c work
+in threaded configuration.
+  + move _nc_tracebits, _tracedump and _tracemouse to curses.priv.h,
+since they are not part of the suggested ABI6.
+
+---
+Tue Feb  9 13:51:28 UTC 2016 - wer...@suse.de
+
+- Add ncurses patch 20160206
+  + define WIN32_LEAN_AND_MEAN for MinGW port, making builds faster.
+  + modify test/ditto.c to allow $XTERM_PROG environment variable to
+override "xterm" as the name of the program to run in the threaded
+configuration.
+
+---
+Fri Feb  5 12:27:36 UTC 2016 - wer...@suse.de
+
+
+- Add ncurses patch 20160130
+  + improve formatting of man/curs_refresh.3x and man/tset.1 manpages
+  + regenerate HTML manpages using newer man2html to eliminate some
+unwanted blank lines.
+- Add ncurses patch 20160123
+  + ifdef'd header-file definition of mouse_trafo() with NCURSES_NOMACROS
+(report by Corey Minyard).
+  + fix some strict compiler-warnings in traces.
+- Add ncurses patch 20160116
+  + tidy up comments about hardcoded 256color palette (report by
+Leonardo Brondani Schenkel) -TD
+  + add putty-noapp entry, and amend putty entry to use application mode
+for better consistency with xterm (report by Leonardo Brondani
+Schenkel) -TD
+  + modify _nc_viscbuf2() and _tracecchar_t2() to trace wide-characters
+as a whole rather than their multibyte equivalents.
+  + minor fix in wadd_wchnstr() to ensure that each cell has nonzero
+width.
+  + move PUTC_INIT calls next to wcrtomb calls, to avoid carry-over of
+error status when processing Unicode values which are not mapped.
+
+---



Other differences:
--
++ ncurses-6.0-patches.tar.bz2 ++
 13324 lines of diff (skipped)

++ ncurses-6.0.dif ++
--- /var/tmp/diff_new_pack.x2DzTZ/_old  2016-03-01 11:57:00.0 +0100
+++ /var/tmp/diff_new_pack.x2DzTZ/_new  2016-03-01 11:57:00.0 +0100
@@ -21,7 +21,7 @@
  19 files changed, 239 insertions(+), 80 deletions(-)
 
 --- aclocal.m4
-+++ aclocal.m4 2016-01-08 10:10:56.702170496 +
 aclocal.m4 2016-02-15 13:54:16.012308337 +
 @@ -564,7 +564,7 @@ AC_MSG_CHECKING([for size of bool])
  AC_CACHE_VAL(cf_cv_type_of_bool,[
rm -f cf_test.out
@@ -150,7 +150,7 @@
  esac
  done
 --- configure
-+++ configure  2016-01-08 10:10:56.706170418 +
 configure  2016-02-15 13:54:16.016308259 +
 @@ -5867,7 +5867,7 @@ case $cf_cv_system_name in
fi
;;
@@ -287,7 +287,7 @@
# the next lines are needed for linking libtic over libncurses
TINFO_NAME=${LIB_NAME}
 --- include/curses.h.in
-+++ include/curses.h.in2016-01-08 10:10:56.706170418 +
 include/curses.h.in2016-02-15 13:54:16.016308259 +
 @@ -165,6 +165,9 @@ typedef @cf_cv_typeof_chtype@ chtype;
  typedef @cf_cv_typeof_mmask_t@ mmask_t;
  #endif
@@ -299,7 +299,7 @@
   * We need FILE, etc.  Include this before checking any feature symbols.
   */
 --- include/termcap.h.in
-+++ include/termcap.h.in   2016-01-08 10:10:56.706170418 +
 include/termcap.h.in   2016-02-15 13:54:16.016308259 +
 @@ -46,6 +46,8 @@ extern "C"
  {
  #endif /* __cplusplus */
@@ -310,7 +310,7 @@
  
  #undef  NCURSES_CONST 
 --- include/tic.h
-+++ include/tic.h  2016-01-08 10:10:56.706170418 +
 include/tic.h  2016-02-15 13:54:16.020308181 +
 @@ -231,12 +231,12 @@ extern NCURSES_EXPORT(const struct alias
   */
  
@@ -327,7 +327,7 @@
  #define CANCELLED_STRING  (char *)(-1)
  
 --- man/man_db.renames
-+++ man/man_db.renames 2016-01-08 10:10:56.706170418 +
 man/man_db.renames 2016-02-15 13:54:16.020308181 +
 @@ -167,6 +167,8 @@ tput.1 tput.1
  tset.1tset.1
  vprintf.3svprintf.3
@@ -338,7 +338,7 @@
  # Other:
  tack.1m   tack.1
 --- man/ncurses.3x
-+++ man/ncurses.3x 2016-01-08 10:10:56.706170418 +
 man/ncurses.3x 2016-02-15 

commit ncurses for openSUSE:Factory

2016-01-21 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2016-01-21 23:40:30

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2015-12-13 
09:34:23.0 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2016-01-21 
23:40:32.0 +0100
@@ -1,0 +2,39 @@
+Fri Jan  8 10:09:31 UTC 2016 - wer...@suse.de
+
+- Add ncurses patch 20160102
+  + modify ncurses c/C color test-screens to take advantage of wide
+screens, reducing the number of lines used for 88- and 256-colors.
+  + minor refinement to check versus ncv to ignore two parameters of
+SGR 38 and 48 when those come from color-capabilities.
+- Add ncurses patch 20151226
+  + add check in tic for use of bold, etc., video attributes in the
+color capabilities, accounting whether the feature is listed in ncv.
+  + add check in tic for conflict between ritm, rmso, rmul versus sgr0.
+- Add ncurses patch 20151219
+  + add a paragraph to curs_getch.3x discussing key naming (discussion
+with James Crippen).
+  + amend workaround for Solaris vs line-drawing to take the configure
+check into account.
+  + add a configure check for wcwidth() versus the ncurses line-drawing
+characters, to use in special-casing systems such as Solaris.
+- Add ncurses patch 20151212
+  + improve CF_XOPEN_CURSES macro used in test/configure, to define as
+needed NCURSES_WIDECHAR for platforms where _XOPEN_SOURCE_EXTENDED
+does not work.  Also modified the test program to ensure that if
+building with ncurses, that the cchar_t type is checked, since that
+normally is since 20111030 ifdef'd depending on this test.
+  + improve 20121222 workaround for broken acs, letting Solaris "work"
+in spite of its m.isconfigured wcwidth which marks all of the line
+drawing characters as double-width.
+- Add ncurses patch 20151205
+  + update form_cursor.3x, form_post.3x, menu_attributes.3x to list
+function names in NAME section (patch by Jason McIntyre).
+  + minor fixes to manpage NAME/SYNOPSIS sections to consistently use
+rule that either all functions which are prototyped in SYNOPSIS are
+listed in the NAME section, or the manual-page name is the sole item
+listed in the NAME section.  The latter is used to reduce clutter,
+e.g., for the top-level library manual pages as well as for certain
+feature-pages such as SP-funcs and threading (prompted by patches by
+Jason McIntyre).
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.Ze5tgC/_old  2016-01-21 23:40:33.0 +0100
+++ /var/tmp/diff_new_pack.Ze5tgC/_new  2016-01-21 23:40:33.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ncurses
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed

++ ncurses-6.0-patches.tar.bz2 ++
 16739 lines of diff (skipped)

++ ncurses-6.0.dif ++
 606 lines (skipped)
 between /work/SRC/openSUSE:Factory/ncurses/ncurses-6.0.dif
 and /work/SRC/openSUSE:Factory/.ncurses.new/ncurses-6.0.dif




commit ncurses for openSUSE:Factory

2015-12-13 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2015-12-13 09:34:21

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2015-11-22 
10:57:40.0 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2015-12-13 
09:34:23.0 +0100
@@ -1,0 +2,21 @@
+Mon Nov 30 09:14:08 UTC 2015 - wer...@suse.de
+
+- Add ncurses patch 20151128
+  + add missing assignment in lib_getch.c to make notimeout() work
+(Debian #805618).
+  + add 't' toggle for notimeout() function in test/ncurses.c a/A screens
+  + add viewdata terminal description (Alexandre Montaron).
+  + fix a case in tic/infocmp for formatting capabilities where a
+backslash at the end of a string was mishandled.
+  + fix some typos in curs_inopts.3x (Benno Schulenberg).
+
+---
+Mon Nov 23 13:03:09 UTC 2015 - wer...@suse.de
+
+- Add ncurses patch 20151121
+  + fix some inconsistencies in the pccon* entries -TD
+  + add bold to pccon+sgr+acs and pccon-base (Tati Chevron).
+  + add keys f12-f124 to pccon+keys (Tati Chevron).
+  + add test/test_sgr.c program to exercise all combinations of sgr.
+
+---



Other differences:
--
++ ncurses-6.0-patches.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/patches/ncurses-6.0-20151121.patch 
new/patches/ncurses-6.0-20151121.patch
--- old/patches/ncurses-6.0-20151121.patch  1970-01-01 01:00:00.0 
+0100
+++ new/patches/ncurses-6.0-20151121.patch  2015-11-23 14:02:33.0 
+0100
@@ -0,0 +1,720 @@
+# ncurses 6.0 - patch 20151121 - Thomas E. Dickey
+#
+# 
--
+#
+# Ncurses 6.0 is at
+#  ftp.gnu.org:/pub/gnu
+#
+# Patches for ncurses 6.0 can be found at
+#  ftp://invisible-island.net/ncurses/6.0
+#  http://invisible-mirror.net/archives/ncurses/6.0 
+#
+# 
--
+# ftp://invisible-island.net/ncurses/6.0/ncurses-6.0-20151121.patch.gz
+# patch by Thomas E. Dickey 
+# created  Sun Nov 22 02:17:21 UTC 2015
+# 
--
+# MANIFEST |1 
+# NEWS |8 
+# VERSION  |2 
+# dist.mk  |4 
+# man/curs_bkgd.3x |3 
+# misc/terminfo.src|   56 +++--
+# ncurses-6.0-20151121/test/test_sgr.c |  363 +
+# package/debian-mingw/changelog   |4 
+# package/debian-mingw64/changelog |4 
+# package/debian/changelog |4 
+# package/mingw-ncurses.nsi|4 
+# package/mingw-ncurses.spec   |2 
+# package/ncurses.spec |2 
+# test/modules |3 
+# test/programs|3 
+# 15 files changed, 428 insertions(+), 35 deletions(-)
+# 
--
+Index: MANIFEST
+--- ncurses-6.0-20151107+/MANIFEST 2015-06-27 19:49:54.0 +
 ncurses-6.0-20151121/MANIFEST  2015-11-22 01:12:19.0 +
+@@ -1162,6 +1162,7 @@
+ ./test/test_inwstr.c
+ ./test/test_opaque.c
+ ./test/test_setupterm.c
++./test/test_sgr.c
+ ./test/test_vid_puts.c
+ ./test/test_vidputs.c
+ ./test/testaddch.c
+Index: NEWS
+Prereq:  1.2526 
+--- ncurses-6.0-20151107+/NEWS 2015-11-08 01:57:15.0 +
 ncurses-6.0-20151121/NEWS  2015-11-21 23:33:30.0 +
+@@ -25,7 +25,7 @@
+ -- sale, use or other dealings in this Software without prior written
--
+ -- authorization.
--
+ 
---
+--- $Id: NEWS,v 1.2526 2015/11/08 01:57:15 tom Exp $
++-- $Id: NEWS,v 1.2530 2015/11/21 23:33:30 tom Exp $
+ 
---
+ 
+ This is a log of changes that ncurses has gone through since Zeyd started
+@@ -45,6 +45,12 @@
+ Changes through 1.9.9e did not credit all contributions;
+ it is not possible to add this information.
+ 
++20151121
++  + fix some inconsistencies in the pccon* entries -TD
++  + add bold to pccon+sgr+acs and pccon-base (Tati Chevron).
++  

commit ncurses for openSUSE:Factory

2015-11-22 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2015-11-22 10:57:38

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2015-10-06 
13:23:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2015-11-22 
10:57:40.0 +0100
@@ -1,0 +2,119 @@
+Tue Nov 10 13:27:31 UTC 2015 - wer...@suse.de
+
+- Add ncurses patch 20151107
+  + modify tset's assignment to TERM in its output to reflect the name by
+which the terminal description is found, rather than the primary
+name.  That was an unnecessary part from the initial conversion of
+tset from termcap to terminfo.  The termcap program in 4.3BSD did
+this to avoid using the short 2-character name (report by Rich
+Burridge).
+  + minor fix to configure script to ensure that rules for resulting.map
+are only generated when needed (cf: 20151101).
+  + modify configure script to handle the case where tic-library is
+renamed, but the --with-debug option is used by itself without
+normal or shared libraries (prompted by comment in Debian #803482).
+- Add ncurses patch 20151101
+  + amend change for pkg-config which allows build of pc-files when no
+valid pkg-config library directory was configured to suppress the
+actual install if it is not overridden to a valid directory at
+install time (cf: 20150822).
+  + modify editing script which generates resulting.map to work with the
+clang configuration on recent FreeBSD, which gives an error on an
+empty "local" section.
+  + fix a spurious "(Part)" message in test/ncurses.c b/B tests due
+to incorrect attribute-masking.
+- Add ncurses patch 20151024
+  + modify MKexpanded.c to update the expansion of a temporary filename
+to "expanded.c", for use in trace statements.
+  + modify layout of b/B tests in test/ncurses.c to allow for additional
+annotation on the right margin; some terminals with partial support
+did not display well.
+  + fix typo in curs_attr.3x (patch by Sven Joachim).
+  + fix typo in INSTALL (patch by Tomas Cech).
+  + improve configure check for setting WILDCARD_SYMS variable; on ppc64
+the variable is in the Data section rather than Text (patch by Michel
+Normand).
+  + using configure option "--without-fallbacks" incorrectly caused
+FALLBACK_LIST to be set to "no" (patch by Tomas Cech).
+  + updated minitel entries to fix kel problem with emacs, and add
+minitel1b-nb (Alexandre Montaron).
+  + reviewed/updated nsterm entry Terminal.app in OSX -TD
+  + replace some dead URLs in comments with equivalents from the
+Internet Archive -TD
+  + update config.guess, config.sub from
+  http://git.savannah.gnu.org/cgit/config.git
+- Add ncurses patch 20151017
+  + modify ncurses/Makefile.in to sort keys.list in POSIX locale
+(Debian #801864, patch by Esa Peuha).
+  + remove an early-return from _nc_do_color, which can interfere with
+data needed by bkgd when ncurses is configured with extended colors
+(patch by Denis Tikhomirov).
+  > fixes for OS/2 (patches by KO Myung-Hun)
+  + use button instead of kbuf[0] in EMX-specific part of lib_mouse.c
+  + support building with libtool on OS/2
+  + use stdc++ on OS/2 kLIBC
+  + clear cf_XOPEN_SOURCE on OS/2
+- Remove patch ncurses-6.0-wildcard_for_ppc64.patch as this change is
+  now upstream with patch set 20151024
+
+---
+Sat Oct 31 12:04:22 UTC 2015 - sleep_wal...@opensuse.org
+
+- remove hunk from ncurses-6.0.dif modifying configure.in
+  according to NEWS (20110924) it is not used anymore
+- drop ncurses-5.9-overwrite.dif as not neededd
+  (WITH_OVERWRITE=$with_overwrite is in configure already twice anyway)
+- drop ncurses-6.0-avoid-line-markers.dif as not needed
+  (see ncurses/base/MKlib_gen.sh 69-84)
+
+---
+Mon Oct 12 09:30:14 UTC 2015 - wer...@suse.de
+
+-Add ncurses patch 20151010
+ + add configure check for openpty to test/configure script, for ditto.
+ + minor fixes to test/view.c in investigating Debian #790847.
+ + update autoconf patch to 2.52.20150926, incorporates a fix for Cdk.
+ + add workaround for breakage of POSIX makefiles by recent binutils
+   change.
+ + improve check for working poll() by using posix_openpt() as a
+   fallback in case there is no valid terminal on the standard input
+   (prompted by discussion on bug-ncurses mailing list, Debian #676461).
+-Add ncurses patch 20150926
+ + change makefile rule for removing resulting.map to distclean rather
+   than clean.
+ + add /lib/terminfo to terminfo-dirs in ".deb" 

commit ncurses for openSUSE:Factory

2015-10-06 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2015-10-06 13:23:02

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2015-09-19 
06:52:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2015-10-06 
13:23:04.0 +0200
@@ -1,0 +2,47 @@
+Fri Sep 25 09:42:43 UTC 2015 - norm...@linux.vnet.ibm.com
+
+- New patch to avoid ppc64 build error, related to bnc#946048
+  ncurses-6.0-wildcard_for_ppc64.patch
+
+---
+Mon Sep 14 08:02:36 UTC 2015 - wer...@suse.de
+
+- Add ncurses patch 20150912
+  + fixes for configure/build using clang on OSX (prompted by report by
+William Gallafent).
++ do not redefine "inline" in ncurses_cfg.h; this was originally to
+  solve a problem with gcc/g++, but is aggravated by clang's misuse
+  of symbols to pretend it is gcc.
++ add braces to configure script to prevent unwanted add of
+  "-lstdc++" to the CXXLIBS symbol.
++ improve/update test-program used for checking existence of stdc++
+  library.
++ if $CXXLIBS is set, the linkage test uses that in addition to $LIBS
+
+---
+Mon Sep  7 09:02:07 UTC 2015 - wer...@suse.de
+
+- Add ncurses patch 20150905
+  + add note in curs_addch.3x about line-drawing when it depends upon
+UTF-8.
+  + add tic -q option for consistency with infocmp, use it to suppress
+all comments from the "tic -I" output.
+  + modify infocmp -q option to suppress the "Reconstructed from"
+header.
+  + add infocmp/tic -Q option, which allows one to dump the compiled
+form of the terminal entry, in hexadecimal or base64.
+
+---
+Mon Aug 31 13:13:43 UTC 2015 - wer...@suse.de
+
+- Add ncurses patch 20150822
+  + sort options in usage message for infocmp, to make it simpler to
+see unused letters.
+  + update usage message for tic, adding "-0" option.
+  + documented differences in ESCDELAY versus AIX's implementation.
+  + fix some compiler warnings from ports.
+  + modify --with-pkg-config-libdir option to make it possible to install
+".pc" files even if pkg-config is not found (adapted by patch by
+Joshua Root).
+
+---

New:

  ncurses-6.0-wildcard_for_ppc64.patch



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.AUJyxF/_old  2015-10-06 13:23:05.0 +0200
+++ /var/tmp/diff_new_pack.AUJyxF/_new  2015-10-06 13:23:05.0 +0200
@@ -64,6 +64,7 @@
 Patch4: ncurses-5.7-tack.dif
 Patch5: ncurses-5.9-environment.dif
 Patch6: ncurses-6.0-avoid-line-markers.dif
+Patch7: ncurses-6.0-wildcard_for_ppc64.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %global _sysconfdir /etc
 %global _miscdir%{_datadir}/misc
@@ -283,6 +284,7 @@
 %patch -P 5 -p0 -b .lc
 %patch -P 0 -p0 -b .p0
 %patch -P 6 -p0 -b .p6
+%patch -P 7 -p1 -b .p7
 rm -vf include/ncurses_dll.h
 rm -vf mkdirs.sh
 rm -vf tar-copy.sh
@@ -299,6 +301,7 @@
 SCREENLOG=${SCREENDIR}/log
 cat > $SCREENRC<<-EOF
deflogin off
+   deflog on
logfile $SCREENLOG
logfile flush 1
logtstamp off

++ ncurses-5.9-overwrite.dif ++
--- /var/tmp/diff_new_pack.AUJyxF/_old  2015-10-06 13:23:05.0 +0200
+++ /var/tmp/diff_new_pack.AUJyxF/_new  2015-10-06 13:23:05.0 +0200
@@ -17,9 +17,9 @@
 +++ configure  2013-09-30 09:17:52.0 +
 @@ -6956,6 +6956,7 @@ else
  fi;
- echo "$as_me:6984: result: $with_overwrite" >&5
+ echo "$as_me:6991: result: $with_overwrite" >&5
  echo "${ECHO_T}$with_overwrite" >&6
 +WITH_OVERWRITE="$with_overwrite"
  
- echo "$as_me:6987: checking if external terminfo-database is used" >&5
+ echo "$as_me:6994: checking if external terminfo-database is used" >&5
  echo $ECHO_N "checking if external terminfo-database is used... $ECHO_C" >&6

++ ncurses-6.0-patches.tar.bz2 ++
 31774 lines of diff (skipped)

++ ncurses-6.0-wildcard_for_ppc64.patch ++
From: Michel Normand 
Subject: ncurses 6.0 wildcard for ppc64
Date: Fri, 25 Sep 2015 11:23:32 +0200

related to bug openSUSE 946048
avoid ncurses build error on ppc64 architecture
the nm  tool is reporting _is_missing in Data section for ppc64.
(by comparison ppc64le is reporting it in Text section)
===
[  102s] 

commit ncurses for openSUSE:Factory

2015-09-18 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2015-09-19 06:52:09

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is "ncurses"

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2015-06-03 
08:12:08.0 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2015-09-19 
06:52:10.0 +0200
@@ -1,0 +2,132 @@
+Mon Aug 17 07:18:34 UTC 2015 - wer...@suse.de
+
+- Add ncurses patch 20150815
+  + disallow "no" as a possible value for "--with-shlib-version" option,
+overlooked in cleanup-changes for 2708 (report by Tommy Alex).
+  + update release notes in INSTALL.
+  + regenerate llib-* files to help with review for release notes.
+- Modify patch ncurses-5.9-overwrite.dif
+
+---
+Fri Aug 14 14:26:52 UTC 2015 - wer...@suse.de
+
+- Add ncurses patch 20150810
+  + workaround for Debian #65617, which was fixed in mawk's upstream
+releases in 2009 (report by Sven Joachim).  See
+  http://invisible-island.net/mawk/CHANGES.html#t20090727
+- Move infocmp from devel to utils package for ruby readline implementation 
+
+---
+Mon Aug 12 10:11:22 UTC 2015 - wer...@suse.de
+
+- Update to official ncurses 6.0
+  + based on the patch 20150808
+- Port and rename several patches
+  ncurses-5.9-avoid-line-markers.dif becomes ncurses-6.0-avoid-line-markers.dif
+  ncurses-5.9.dif becomes ncurses-6.0.dif
+- Add ncurses patch 20150808
+  + build-fix for Ada95 on older platforms without stdint.h
+  + build-fix for Solaris, whose /bin/sh and /usr/bin/sed are non-POSIX.
+  + update release announcement, summarizing more than 800 changes across
+more than 200 snapshots.
+  + minor fixes to manpages, etc., to simplify linking from announcement
+page.
+
+---
+Tue Jul 28 12:26:57 UTC 2015 - wer...@suse.de
+
+- Add ncurses patch 20150725
+  + updated llib-* files.
+  + build-fixes for ncurses library "test_progs" rule.
+  + use alternate workaround for gcc 5.x feature (adapted from patch by
+Mikhail Peselnik).
+  + add status line to tmux via xterm+sl (patch by Nicholas Marriott).
+  + fixes for st 0.5 from testing with tack -TD
+  + review/improve several manual pages to break up wall-of-text:
+curs_add_wch.3x, curs_attr.3x, curs_bkgd.3x, curs_bkgrnd.3x,
+curs_getcchar.3x, curs_getch.3x, curs_kernel.3x, curs_mouse.3x,
+curs_outopts.3x, curs_overlay.3x, curs_pad.3x, curs_termattrs.3x
+curs_trace.3x, and curs_window.3x
+
+---
+Mon Jul 27 12:01:41 UTC 2015 - wer...@suse.de
+
+- Rework fixing the pkg-config files 
+
+---
+Mon Jul 20 08:09:33 UTC 2015 - wer...@suse.de
+
+- Add ncurses patch 20150719
+  + correct an old logic error for %A and %O in tparm (report by "zreed").
+  + improve documentation for signal handlers by adding section in the
+curs_initscr.3x page.
+  + modify logic in make_keys.c to not assume anything about the size
+of strnames and strfnames variables, since those may be functions
+in the thread- or broken-linker configurations (problem found by
+Coverity).
+  + modify test/configure script to check for pthreads configuration,
+e.g., ncursestw library.
+
+---
+Mon Jul 13 12:34:48 UTC 2015 - wer...@suse.de
+
+- Add ncurses patch 20150711 pre-release
+  + modify scripts to build/use test-packages for the pthreads
+configuration of ncurses6.
+  + add references to ttytype and termcap symbols in demo_terminfo.c and
+demo_termcap.c to ensure that when building ncursest.map, etc., that
+the corresponding names such as _nc_ttytype are added to the list of
+versioned symbols (report by Werner Fink)
+  + fix regression from 20150704 (report/patch by Werner Fink).
+
+---
+Mon Jul  6 13:37:05 UTC 2015 - wer...@suse.de
+
+- Add ncurses patch 20150606 pre-release
+  + make ABI 6 the default by updates to dist.mk and VERSION, with the
+intention that the existing ABI 5 should build as before using the
+"--with-abi=5" option.
+  + regenerate ada- and man-html documentation.
+  + minor fixes to color- and util-manpages.
+  + fix a regression in Ada95/gen/Makefile.in, to handle special case of
+Cygwin, which uses the broken-linker feature.
+  + amend fix for CF_NCURSES_CONFIG used in test/configure to assume that
+ncurses package scripts work when present for cross-compiling, as the
+

commit ncurses for openSUSE:Factory

2015-06-03 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2015-06-03 08:12:07

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is ncurses

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2015-05-30 
12:32:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2015-06-03 
08:12:08.0 +0200
@@ -1,0 +2,22 @@
+Mon Jun  1 08:37:16 UTC 2015 - wer...@suse.de
+
+- Add ncurses patch 20150530
+  + change private type for Event_Mask in Ada95 binding to work when
+mmask_t is set to 32-bits.
+  + remove spurious %; from st entry (report by Daniel Pitts) -TD
+  + add vte-2014, update vte to use that -TD
+  + modify tic and infocmp to move a diagnostic for tparm strings that
+have a syntax error to tic's -c option (report by Daniel Pitts).
+  + fix two problems with configure script macros (Debian #786436,
+cf: 20150425, cf: 20100529).
+- Add ncurses patch 20150523
+  + add 'P' menu item to test/ncurses.c, to show pad in color.
+  + improve discussion in curs_color.3x about color rendering (prompted
+by comment on Stack Overflow forum):
+  + remove screen-bce.mlterm, since mlterm does not do bce -TD
+  + add several screen.XXX entries to support the respective variations
+for 256 colors -TD
+  + add putty+fnkeys* building-block entries -TD
+  + add smkx/rmkx to capabilities analyzed with infocmp -i option.
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.BqGA0k/_old  2015-06-03 08:12:09.0 +0200
+++ /var/tmp/diff_new_pack.BqGA0k/_new  2015-06-03 08:12:09.0 +0200
@@ -276,7 +276,19 @@
 rm -f  Ada95/src/terminal_interface-curses.adb
 rm -f  Ada95/src/library.gpr
 rm -f  mkinstalldirs
-tar Oxfj %{S:1} | patch -p1 -s
+tar xfj %{S:1}
+set +x
+for patch in patches/ncurses*.patch
+do
+case $patch in
+*/ncurses-5.9-20150516.patch)
+   cat $patch | sh
+esac
+patch -f -T -p1 -s  $patch
+done
+set -x
+rm -rf patches/
+find -name '*.orig' | xargs -r rm -f
 tar  xfj %{S:5}
 mv tack-* tack
 %patch -P 1 -p0 -b .327x

++ ncurses-5.9-patches.tar.bz2 ++
 23926 lines of diff (skipped)

++ ncurses-5.9.dif ++
--- /var/tmp/diff_new_pack.BqGA0k/_old  2015-06-03 08:12:14.0 +0200
+++ /var/tmp/diff_new_pack.BqGA0k/_new  2015-06-03 08:12:14.0 +0200
@@ -413,7 +413,7 @@
fi
if test ${includedir} != /usr/include ; then
 --- misc/terminfo.src
-+++ misc/terminfo.src  2015-04-27 10:38:20.0 +
 misc/terminfo.src  2015-06-01 08:26:54.890018864 +
 @@ -301,7 +301,9 @@ dumb|80-column dumb tty,
am,
cols#80,
@@ -476,7 +476,7 @@
ech=\E[%p1%dX, ed=\E[J, el=\E[K, el1=\E[1K, home=\E[H, ht=^I,
hts=\EH, ich=\E[%p1%d@, il=\E[%p1%dL, il1=\E[L, ind=\ED,
is2=\E\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h\E[1;24r\E[24;1H,
-@@ -3619,13 +3629,14 @@ putty-sco|putty with SCO function keys,
+@@ -3654,13 +3664,14 @@ putty+fnkeys+sco|SCO fn-keys for PuTTY,
  # retrieving the window title, and for setting the window size (i.e., using
  # resize -s), though it does not pass SIGWINCH to the application if the
  # user resizes the window with the mouse.
@@ -492,7 +492,7 @@
dl1=\E[M, ech=\E[%p1%dX, ed=\E[J, el=\E[K, el1=\E[1K,
flash=\E[?5h\E[?5l$200/, hpa=\E[%i%p1%dG,
il=\E[%p1%dL, il1=\E[L, kdch1=\E[3~, kf1=\E[11~,
-@@ -3828,6 +3839,7 @@ xterm-old|antique xterm version,
+@@ -3863,6 +3874,7 @@ xterm-old|antique xterm version,
use=xterm-r6,
  # This is the base xterm entry for the xterm supplied with XFree86 3.2  up.
  # The name has been changed and some aliases have been removed.
@@ -500,7 +500,7 @@
  xterm-xf86-v32|xterm terminal emulator (XFree86 3.2 Window System),
OTbs, am, bce, km, mir, msgr, xenl, XT,
cols#80, it#8, lines#24, ncv@,
-@@ -3837,7 +3849,7 @@ xterm-xf86-v32|xterm terminal emulator (
+@@ -3872,7 +3884,7 @@ xterm-xf86-v32|xterm terminal emulator (
csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=^H,
cud=\E[%p1%dB, cud1=^J, cuf=\E[%p1%dC, cuf1=\E[C,
cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A,
@@ -509,7 +509,7 @@
ech=\E[%p1%dX, ed=\E[J, el=\E[K, el1=\E[1K, enacs=\E(B\E)0,
flash=\E[?5h$100/\E[?5l, home=\E[H, hpa=\E[%i%p1%dG,
ht=^I, hts=\EH, ich=\E[%p1%d@, ich1=\E[@, il=\E[%p1%dL,
-@@ -4305,8 +4317,26 @@ xterm-noapp|xterm with cursor keys in no
+@@ -4340,8 +4352,26 @@ xterm-noapp|xterm with cursor keys in no
  xterm-24|vs100|xterms|xterm terminal emulator (X Window System),
lines#24, use=xterm-old,
  
@@ 

commit ncurses for openSUSE:Factory

2015-05-30 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2015-05-30 12:32:45

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is ncurses

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2015-05-20 
23:16:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2015-05-30 
12:32:46.0 +0200
@@ -1,0 +2,14 @@
+Mon May 18 13:55:40 UTC 2015 - wer...@suse.de
+
+- Add ncurses patch 20150516
+  + amend change to .pc files to only use the extra loader flags which
+may have rpath options (report by Sven Joachim, cf: 20150502).
+  + change versioning for dpkg's in test-packages for Ada95 and
+ncurses-examples for consistency with Debian, to work with package
+updates.
+  + regenerate html manpages.
+  + clarify handling of carriage return in waddch manual page; it was
+discussed only in the portability section (prompted by comment on
+Stack Overflow forum):
+
+---



Other differences:
--
++ ncurses-5.9-patches.tar.bz2 ++
 5719 lines of diff (skipped)

++ ncurses-5.9.dif ++
--- /var/tmp/diff_new_pack.6XtFgu/_old  2015-05-30 12:32:51.0 +0200
+++ /var/tmp/diff_new_pack.6XtFgu/_new  2015-05-30 12:32:51.0 +0200
@@ -366,7 +366,7 @@
 @@ -76,7 +76,7 @@ if test $includedir != /usr/include
  fi
  
- LDFLAGS=@LDFLAGS@
+ LDFLAGS=
 -if test $libdir != /usr/lib ; then
 +if test $libdir != /usr/lib -a $libdir != /usr/lib64 ; then
LDFLAGS=$LDFLAGS -L\${libdir}




commit ncurses for openSUSE:Factory

2015-05-20 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2015-05-20 23:16:31

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is ncurses

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2015-05-06 
11:21:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2015-05-20 
23:16:33.0 +0200
@@ -1,0 +2,50 @@
+Mon May 11 12:52:13 UTC 2015 - wer...@suse.de
+
+- Add ncurses patch 20150509
+  + add test-packages for cross-compiling ncurses-examples using the
+MinGW test-packages.  These are only the Debian packages; RPM later.
+  + cleanup format of debian/copyright files
+  + add pc-files to the MinGW cross-compiling test-packages.
+  + correct a couple of places in gen-pkgconfig.in to handle renaming of
+the tinfo library.
+
+---
+Mon May  4 10:37:01 UTC 2015 - wer...@suse.de
+
+- Add ncurses patch 20150502
+  + modify the configure script to allow different default values
+for ABI 5 versus ABI 6.
+  + add wgetch-events to test-packages.
+  + add a note on how to build ncurses-examples to test/README.
+  + fix a memory leak in delscreen (report by Daniel Kahn Gillmor,
+Debian #783486) -TD
+  + remove unnecessary ';' from E3 capabilities -TD
+  + add tmux entry, derived from screen (patch by Nicholas Marriott).
+  + split-out recent change to nsterm-bce as nsterm-build326, and add
+nsterm-build342 to reflect changes with successive releases of OSX
+(discussion with Leonardo B Schenkel)
+  + add xon, ich1, il1 to ibm3161 (patch by Stephen Powell, Debian
+#783806)
+  + add sample magic file, to document ext-putwin.
+  + modify gen-pkgconfig.in to add explicit -ltinfo, etc., to the
+generated .pc file when ld option --as-needed is used, or when
+ncurses and tinfo are installed without using rpath (prompted by
+discussion with Sylvain Bertrand).
+  + modify test-package for ncurses6 to omit rpath feature when installed
+in /usr.
+  + add OSX's *.dSYM to clean-rules in makefiles.
+  + make extra-suffix work for OSX configuration, e.g., for shared
+libraries.
+  + modify Ada95/configure script to work with pkg-config
+  + move test-package for ncurses6 to /usr, since filename-conflicts have
+been eliminated.
+  + corrected build rules for Ada95/gen/generate; it does not depend on
+the ncurses library aside from headers.
+  + reviewed man pages, fixed a few other spelling errors.
+  + fix a typo in curs_util.3x (Sven Joachim).
+  + use extra-suffix in some overlooked shared library dependencies
+found by 20150425 changes for test-packages.
+  + update config.guess, config.sub from
+  http://git.savannah.gnu.org/cgit/config.git
+
+---



Other differences:
--
++ ncurses-5.9-patches.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/patches/ncurses-5.9-20150509.patch 
new/patches/ncurses-5.9-20150509.patch
--- old/patches/ncurses-5.9-20150509.patch  1970-01-01 01:00:00.0 
+0100
+++ new/patches/ncurses-5.9-20150509.patch  2015-05-11 10:51:23.0 
+0200
@@ -0,0 +1,1476 @@
+# ncurses 5.9 - patch 20150509 - Thomas E. Dickey
+#
+# 
--
+#
+# Ncurses 5.9 is at
+#  ftp.gnu.org:/pub/gnu
+#
+# Patches for ncurses 5.9 are in the subdirectory
+#  ftp://invisible-island.net/ncurses/5.9
+#
+# 
--
+# ftp://invisible-island.net/ncurses/5.9/ncurses-5.9-20150509.patch.gz
+# patch by Thomas E. Dickey dic...@invisible-island.net
+# created  Sun May 10 01:39:21 UTC 2015
+# 
--
+# Ada95/package/debian/copyright |   15 
+# MANIFEST   |   14 
+# NEWS   |   10 
+# VERSION|2 
+# dist.mk|4 
+# misc/gen-pkgconfig.in  |7 
+# ncurses-5.9-20150509/test/package/debian-mingw/compat  |1 
+# ncurses-5.9-20150509/test/package/debian-mingw/control |   18 
+# ncurses-5.9-20150509/test/package/debian-mingw/copyright   |   78 +++
+# ncurses-5.9-20150509/test/package/debian-mingw/docs|1 
+# 

commit ncurses for openSUSE:Factory

2015-05-06 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2015-05-06 11:21:51

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is ncurses

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2015-04-23 
07:55:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2015-05-06 
11:21:52.0 +0200
@@ -1,0 +2,21 @@
+Mon Apr 27 09:18:50 UTC 2015 - wer...@suse.de
+
+- Add ncurses patch 20150425
+  + expanded description of tgetstr's area pointer in manual page
+(report by Todd M Lewis).
+  + in-progress changes to modify test-packages to use ncursesw6 rather
+than ncursesw, with updated configure scripts.
+  + modify CF_NCURSES_CONFIG in Ada95- and test-configure scripts to
+check for .pc files via pkg-config, but add a linkage check since
+frequently pkg-config configurations are broken.
+  + modify misc/gen-pkgconfig.in to include EXTRA_LDFLAGS, e.g., for the
+rpath option.
+  + add 'dim' capability to screen entry (report by Leonardo B Schenkel)
+  + add several key definitions to nsterm-bce to match preconfigured
+keys, e.g., with OSX 10.9 and 10.10 (report by Leonardo B Schenkel)
+  + fix repeated extra-suffix in ncurses-config.in (cf: 20150418).
+  + improve term_variables manual page, adding section on the terminfo
+long-name symbols which are defined in the term.h header.
+  + fix bug in lib_tracebits.c introduced in const-fixes (cf: 20150404).
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.1Bvupv/_old  2015-05-06 11:21:53.0 +0200
+++ /var/tmp/diff_new_pack.1Bvupv/_new  2015-05-06 11:21:53.0 +0200
@@ -380,7 +380,8 @@
 #
 # No --enable-term-driver as this had crashed last time
 # in ncurses/tinfo/lib_setup.c due to the fact that
-# _nc_globals.term_driver was a NULL function pointer
+# _nc_globals.term_driver was a NULL function pointer as
+# this is for the MinGW port!
 #
 # No --enable-tcap-names because we may have to recompile
 # programs or foreign programs won't work
@@ -434,6 +435,7 @@
--enable-sigwinch   \
--enable-colorfgbg  \
--enable-sp-funcs   \
+   --enable-interop\
 %if %abi = 6
--with-pthread  \
--enable-reentrant  \
@@ -564,6 +566,7 @@
--enable-ext-mouse  \
--disable-widec \
--disable-ext-colors\
+   --disable-overwrite \
 %if %{with symversion}

--with-versioned-syms=${PWD}/package/ncursest.map \
 %endif
@@ -604,6 +607,7 @@
--enable-ext-mouse  \
--enable-widec  \
--enable-ext-colors \
+   --disable-overwrite \
 %if %{with symversion}

--with-versioned-syms=${PWD}/package/ncursestw.map \
 %endif
@@ -650,6 +654,7 @@
--enable-ext-mouse  \
--enable-widec  \
--enable-ext-colors \
+   --disable-overwrite \
 %if %{with symversion}

--with-versioned-syms=${PWD}/package/ncursestw.map \
 %endif

++ ncurses-5.9-overwrite.dif ++
--- /var/tmp/diff_new_pack.1Bvupv/_old  2015-05-06 11:21:53.0 +0200
+++ /var/tmp/diff_new_pack.1Bvupv/_new  2015-05-06 11:21:53.0 +0200
@@ -15,11 +15,11 @@
  AC_ARG_ENABLE(database,
 --- configure
 +++ configure  2013-09-30 09:17:52.0 +
-@@ -6799,6 +6799,7 @@ else
+@@ -6956,6 +6956,7 @@ else
  fi;
- echo $as_me:6900: result: $with_overwrite 5
+ echo $as_me:6957: result: $with_overwrite 5
  echo ${ECHO_T}$with_overwrite 6
 +WITH_OVERWRITE=$with_overwrite
  
- echo $as_me:6903: checking if external terminfo-database is used 5
+ echo $as_me:6960: checking if external terminfo-database is used 5
  echo $ECHO_N checking if external terminfo-database is used... $ECHO_C 6

++ ncurses-5.9-patches.tar.bz2 ++
 93031 lines of diff (skipped)

++ ncurses-5.9.dif ++
--- /var/tmp/diff_new_pack.1Bvupv/_old  2015-05-06 11:21:58.0 +0200
+++ /var/tmp/diff_new_pack.1Bvupv/_new  2015-05-06 11:21:58.0 +0200
@@ -7,7 +7,7 @@
  include/tic.h

commit ncurses for openSUSE:Factory

2015-04-22 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2015-04-23 07:55:34

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is ncurses

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2015-03-23 
12:11:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2015-04-23 
07:55:36.0 +0200
@@ -1,0 +2,19 @@
+Mon Apr 13 12:00:16 UTC 2015 - wer...@suse.de
+
+- Add ncurses patch 20150404
+  + improve description of start_color() in the manual.
+  + modify several files in ncurses- and progs-directories to allow
+const data used in internal tables to be put by the linker into the
+readonly text segment.
+- Add ncurses patch 20150329
+  + correct cut/paste error for --enable-ext-putwin that made it the
+same as --enable-ext-colors (report by Roumen Petrov)
+- Add ncurses patch 20150328
+  + add -f option to test/savescreen.c to help with testing/debugging
+the extended putwin/getwin.
+  + add logic for writing/reading combining characters in the extended
+putwin/getwin.
+  + add --enable-ext-putwin configure option to turn on the extended
+putwin/getwin.
+
+---



Other differences:
--
++ ncurses-5.9-overwrite.dif ++
--- /var/tmp/diff_new_pack.BevPq9/_old  2015-04-23 07:55:37.0 +0200
+++ /var/tmp/diff_new_pack.BevPq9/_new  2015-04-23 07:55:37.0 +0200
@@ -17,9 +17,9 @@
 +++ configure  2013-09-30 09:17:52.0 +
 @@ -6799,6 +6799,7 @@ else
  fi;
- echo $as_me:6899: result: $with_overwrite 5
+ echo $as_me:6900: result: $with_overwrite 5
  echo ${ECHO_T}$with_overwrite 6
 +WITH_OVERWRITE=$with_overwrite
  
- echo $as_me:6902: checking if external terminfo-database is used 5
+ echo $as_me:6903: checking if external terminfo-database is used 5
  echo $ECHO_N checking if external terminfo-database is used... $ECHO_C 6

++ ncurses-5.9-patches.tar.bz2 ++
 17688 lines of diff (skipped)




commit ncurses for openSUSE:Factory

2015-03-23 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2015-03-23 12:11:21

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is ncurses

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2015-02-27 
10:56:14.0 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2015-03-23 
12:11:22.0 +0100
@@ -1,0 +2,29 @@
+Mon Mar  9 10:36:15 UTC 2015 - wer...@suse.de
+
+- Add ncurses patch 20150307
+  + document limitations of getwin in manual page (prompted by discussion
+with John S Urban).
+  + extend test/savescreen.c to demonstrate that color pair values
+and graphic characters can be restored using getwin.
+
+---
+Tue Mar  3 11:39:24 UTC 2015 - wer...@suse.de
+
+- Add ncurses patch 20150228
+  + modify win_driver.c to eliminate the constructor, to make it more
+usable in an application which may/may not need the console window
+(report by Grady Martin).
+
+---
+Fri Feb 27 09:18:04 UTC 2015 - wer...@suse.de
+
+- Add ncurses patch 20150221
+  + capture define's related to -D_XOPEN_SOURCE from the configure check
+and add those to the *-config and *.pc files, to simplify use for
+the wide-character libraries.
+  + modify ncurses.spec to accommodate Fedora21's location of pkg-config
+directory.
+  + correct sense of --disable-lib-suffixes configure option (report
+by Nicolas Boos, cf: 20140426).
+
+---



Other differences:
--
++ ncurses-5.9-overwrite.dif ++
--- /var/tmp/diff_new_pack.TAAi6Y/_old  2015-03-23 12:11:23.0 +0100
+++ /var/tmp/diff_new_pack.TAAi6Y/_new  2015-03-23 12:11:23.0 +0100
@@ -17,9 +17,9 @@
 +++ configure  2013-09-30 09:17:52.0 +
 @@ -6799,6 +6799,7 @@ else
  fi;
- echo $as_me:6892: result: $with_overwrite 5
+ echo $as_me:6899: result: $with_overwrite 5
  echo ${ECHO_T}$with_overwrite 6
 +WITH_OVERWRITE=$with_overwrite
  
- echo $as_me:6895: checking if external terminfo-database is used 5
+ echo $as_me:6902: checking if external terminfo-database is used 5
  echo $ECHO_N checking if external terminfo-database is used... $ECHO_C 6

++ ncurses-5.9-patches.tar.bz2 ++
 11370 lines of diff (skipped)

++ ncurses-5.9.dif ++
--- /var/tmp/diff_new_pack.TAAi6Y/_old  2015-03-23 12:11:28.0 +0100
+++ /var/tmp/diff_new_pack.TAAi6Y/_new  2015-03-23 12:11:28.0 +0100
@@ -32,7 +32,7 @@
  #include stdio.h
  
  #if defined(__cplusplus)
-@@ -4428,12 +4428,15 @@ cat $cf_edit_man CF_EOF
+@@ -4462,12 +4462,15 @@ cat $cf_edit_man CF_EOF
echo '? missing rename for '\$cf_source
cf_target=\$cf_source
fi
@@ -50,7 +50,7 @@
sed -f $cf_man_alias \\
  CF_EOF
  
-@@ -4443,7 +4446,7 @@ cat $cf_edit_man CF_EOF
+@@ -4477,7 +4480,7 @@ cat $cf_edit_man CF_EOF
  CF_EOF
  else
  cat $cf_edit_man CF_EOF
@@ -59,7 +59,7 @@
  CF_EOF
  fi
  
-@@ -4483,7 +4486,7 @@ cat $cf_edit_man CF_EOF
+@@ -4517,7 +4520,7 @@ cat $cf_edit_man CF_EOF
mv \$TMP.$cf_so_strip \$TMP
fi
fi
@@ -68,7 +68,7 @@
  CF_EOF
  fi
  
-@@ -4492,23 +4495,23 @@ case $MANPAGE_FORMAT in #(vi
+@@ -4526,23 +4529,23 @@ case $MANPAGE_FORMAT in #(vi
  cat $cf_edit_man CF_EOF
if test \$form = format ; then
# BSDI installs only .0 suffixes in the cat directories
@@ -98,7 +98,7 @@
for cf_alias in \$aliases
do
if test \$section = 1 ; then
-@@ -4517,7 +4520,7 @@ cat $cf_edit_man CF_EOF
+@@ -4551,7 +4554,7 @@ cat $cf_edit_man CF_EOF
  
if test $MANPAGE_SYMLINKS = yes ; then
if test -f \$cf_alias\${suffix} 
; then
@@ -107,7 +107,7 @@
then
continue
fi
-@@ -4527,18 +4530,18 @@ CF_EOF
+@@ -4561,18 +4564,18 @@ CF_EOF
  case x$LN_S in #(vi
  *-f) #(vi
  cat $cf_edit_man CF_EOF
@@ -129,7 +129,7 @@
echo .so \$cf_source \$TMP
  CF_EOF
  if test -n $cf_compress ; then
-@@ -4558,9 +4561,9 @@ cat $cf_edit_man CF_EOF
+@@ -4592,9 +4595,9 @@ cat $cf_edit_man CF_EOF
)
)
elif test \$verb = removing ; then
@@ -142,7 +142,7 @@
)
   

commit ncurses for openSUSE:Factory

2015-02-27 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2015-02-27 10:56:12

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is ncurses

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2015-02-20 
12:00:09.0 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2015-02-27 
10:56:14.0 +0100
@@ -1,0 +2,9 @@
+Mon Feb 16 10:12:17 UTC 2015 - wer...@suse.de
+
+- Add ncurses patch 20150214
+  + regenerate html manpages using improved man2html from work on xterm.
+  + regenerated .map and .sym files using improved script, accounting
+for the --enable-weak-symbols configure option (report by Werner
+Fink).
+
+---



Other differences:
--
++ ncurses-5.9-patches.tar.bz2 ++
 16559 lines of diff (skipped)

++ ncurses-5.9.dif ++
--- /var/tmp/diff_new_pack.2vgquF/_old  2015-02-27 10:56:19.0 +0100
+++ /var/tmp/diff_new_pack.2vgquF/_new  2015-02-27 10:56:19.0 +0100
@@ -990,23 +990,3 @@
  #define CANCELLED_NUMERIC (-2)
  #define CANCELLED_STRING  (char *)(-1)
  
 package/ncursest.map
-+++ package/ncursest.map   2015-01-21 14:41:45.809518532 +
-@@ -345,6 +345,7 @@ NCURSES_TINFO_5.7.20081102 {
-   _nc_screen_of;
-   _nc_set_no_padding;
-   _nc_set_tputs_trace;
-+  _nc_sigprocmask;
-   _nc_stdscr;
-   _nc_strcodes;
-   _nc_strfnames;
 package/ncursestw.map
-+++ package/ncursestw.map  2015-01-21 14:42:04.281518331 +
-@@ -346,6 +346,7 @@ NCURSES_TINFO_5.7.20081102 {
-   _nc_screen_of;
-   _nc_set_no_padding;
-   _nc_set_tputs_trace;
-+  _nc_sigprocmask;
-   _nc_stdscr;
-   _nc_strcodes;
-   _nc_strfnames;

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit ncurses for openSUSE:Factory

2015-02-20 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2015-02-20 12:00:08

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is ncurses

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2014-12-29 
00:29:34.0 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2015-02-20 
12:00:09.0 +0100
@@ -1,0 +2,74 @@
+Mon Jan 26 09:44:16 UTC 2015 - wer...@suse.de
+
+- Add ncurses patch 20150124
+  + add configure check to determine if local: _*; can be used in the
+.map files to selectively omit symbols beginning with _.  On at
+least recent FreeBSD, the wildcard applies to all _ symbols.
+  + remove obsolete/conflicting rule for ncurses.map from
+ncurses/Makefile.in (cf:  20130706).
+- Apply symbol versioning only for SUSE version greater that 1320
+
+---
+Wed Jan 21 15:58:08 UTC 2015 - wer...@suse.de
+
+- Now with symbol version control 
+
+---
+Wed Jan 21 13:24:17 UTC 2015 - wer...@suse.de
+
+- Add ncurses patch 20150117
+  + improve description in INSTALL of the --with-versioned-syms option.
+  + add combination of --with-hashed-db and --with-ticlib to
+configurations for .map files (report by Werner Fink).
+
+---
+Wed Jan 21 12:22:05 UTC 2015 - rguent...@suse.com
+
+- Add ncurses-5.9-avoid-line-markers.dif to pass -P to the preprocessor
+  when generating lib_gen.c to avoid breaking the parsing with AWK
+  of the preprocessor output of GCC 4.9 and up.
+
+---
+Mon Jan 12 08:49:11 UTC 2015 - wer...@suse.de
+
+- Add ncurses patch 20150110
+  + add a step to generating .map files, to declare any remaining
+symbols beginning with _ as local, at the last version node.
+  + improve configure checks for pkg-config, addressing a variant found
+with FreeBSD ports.
+  + modify win_driver.c to provide characters for special keys, like
+ansi.sys, when keypad mode is off, rather than returning nothing at
+all (discussion with Eli Zaretskii).
+  + add broken_linker and hashed-db configure options to combinations
+use for generating the .map and .sym files.
+  + avoid using ld directly when creating shared library, to simplify
+cross-compiles.  Also drop -Bsharable option from shared-library
+rules for FreeBSD and DragonFly (FreeBSD #196592).
+  + fix a memory leak in form library Free_RegularExpression_Type()
+(report by Pavel Balaev).
+
+---
+Wed Jan  7 14:39:03 UTC 2015 - wer...@suse.de
+
+- Add ncurses patch 20150103
+  + modify_nc_flush() to retry if interrupted (patch by Stian Skjelstad).
+  + change map files to make _nc_freeall a global, since it may be used
+via the Ada95 binding when checking for memory leaks.
+  + improve sed script used in 20141220 to account for wide-, threaded-
+variations in ABI 6.
+- Add ncurses patch 20141227
+  + regenerate .map files, using step overlooked in 20141213 to use
+the same patch-dates across each file to match ncurses.map (report by
+Sven Joachim).
+- Add ncurses patch 20141221
+  + fix an incorrect variable assignment in 20141220 changes (report by
+Sven Joachim).
+- Add ncurses patch 20141220
+  + updated Ada95/configure with macro changes from 20141213
+  + tie configure options --with-abi-version and --with-versioned-syms
+together, so that ABI 6 libraries have distinct symbol versions from
+the ABI 5 libraries.
+  + replace obsolete/nonworking link to man2html with current one,
+regenerate html-manpages.
+
+---

New:

  ncurses-5.9-avoid-line-markers.dif



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.qiOlaE/_old  2015-02-20 12:00:11.0 +0100
+++ /var/tmp/diff_new_pack.qiOlaE/_new  2015-02-20 12:00:11.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ncurses
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,8 +16,18 @@
 #
 
 
+%bcond_with hasheddb
+%if 0%{?suse_version}  1320
+%bcond_without  symversion
+%else
+%bcond_with symversion
+%endif
+
 Name:   ncurses
 #!BuildIgnore: terminfo
+%if %{with hasheddb}

commit ncurses for openSUSE:Factory

2014-12-28 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2014-12-29 00:29:29

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is ncurses

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2014-12-01 
14:00:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2014-12-29 
00:29:34.0 +0100
@@ -1,0 +2,34 @@
+Tue Dec 16 11:14:35 UTC 2014 - wer...@suse.de
+
+- Add ncurses patch 20141206
+  + updated .map files so that each symbol that may be shared across
+the different library configurations has the same label.  Some
+review is needed to ensure these are really compatible.
+  + modify MKlib_gen.sh to work around change in development version of
+gcc introduced here:
+https://gcc.gnu.org/ml/gcc-patches/2014-06/msg02185.html
+https://gcc.gnu.org/ml/gcc-patches/2014-07/msg00236.html
+(reports by Marcus Shawcroft, Maohui Lei).
+  + improved configure macro CF_SUBDIR_PATH, from lynx changes.
+- Add ncurses patch 20141213
+  + modify misc/gen-pkgconfig.in to add -I option for include-directory
+when using both --prefix and --disable-overwrite (report by Misty
+De Meo).
+  + add configure option --with-pc-suffix to allow minor renaming of
+.pc files and the corresponding library.  Use this in the test
+package for ncurses6.
+  + modify configure script so that if pkg-config is not installed, it
+is still possible to install .pc files (report by Misty De Meo).
+  + updated .sym files, removing symbols which are marked as local
+in the corresponding .map files.
+  + updated .map files to reflect move of comp_captab and comp_hash
+from tic-library to tinfo-library in 20090711 (report by Sven
+Joachim).
+- Add ncurses patch 20141129
+  + improved .map files by generating them with a script that builds
+ncurses with several related configurations and merges the results.
+A further refinement is planned, to make the tic- and tinfo-library
+symbols use the same versions across each of the four configurations
+which are represented (reports by Sven Joachim, Werner Fink).
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.iccIk4/_old  2014-12-29 00:29:37.0 +0100
+++ /var/tmp/diff_new_pack.iccIk4/_new  2014-12-29 00:29:37.0 +0100
@@ -454,6 +454,7 @@
--disable-tic-depends   \
--with-cxx-shared   \
--with-ticlib=tic   \
+   --with-pc-suffix\
--enable-pc-files   \
--with-pkg-config-libdir=%{_libdir}/pkgconfig
 kill $pid

++ ncurses-5.9-overwrite.dif ++
--- /var/tmp/diff_new_pack.iccIk4/_old  2014-12-29 00:29:37.0 +0100
+++ /var/tmp/diff_new_pack.iccIk4/_new  2014-12-29 00:29:37.0 +0100
@@ -17,9 +17,9 @@
 +++ configure  2013-09-30 09:17:52.0 +
 @@ -6526,6 +6526,7 @@ else
  fi;
- echo $as_me:6733: result: $with_overwrite 5
+ echo $as_me:6797: result: $with_overwrite 5
  echo ${ECHO_T}$with_overwrite 6
 +WITH_OVERWRITE=$with_overwrite
  
- echo $as_me:6736: checking if external terminfo-database is used 5
+ echo $as_me:6800: checking if external terminfo-database is used 5
  echo $ECHO_N checking if external terminfo-database is used... $ECHO_C 6

++ ncurses-5.9-patches.tar.bz2 ++
 44222 lines of diff (skipped)

++ ncurses-5.9.dif ++
--- /var/tmp/diff_new_pack.iccIk4/_old  2014-12-29 00:29:41.0 +0100
+++ /var/tmp/diff_new_pack.iccIk4/_new  2014-12-29 00:29:41.0 +0100
@@ -32,7 +32,7 @@
  #include stdio.h
  
  #if defined(__cplusplus)
-@@ -4405,12 +4405,15 @@ cat $cf_edit_man CF_EOF
+@@ -4428,12 +4428,15 @@ cat $cf_edit_man CF_EOF
echo '? missing rename for '\$cf_source
cf_target=\$cf_source
fi
@@ -50,7 +50,7 @@
sed -f $cf_man_alias \\
  CF_EOF
  
-@@ -4420,7 +4423,7 @@ cat $cf_edit_man CF_EOF
+@@ -4443,7 +4446,7 @@ cat $cf_edit_man CF_EOF
  CF_EOF
  else
  cat $cf_edit_man CF_EOF
@@ -59,7 +59,7 @@
  CF_EOF
  fi
  
-@@ -4460,7 +4463,7 @@ cat $cf_edit_man CF_EOF
+@@ -4483,7 +4486,7 @@ cat $cf_edit_man CF_EOF
mv \$TMP.$cf_so_strip \$TMP
fi
fi
@@ -68,7 +68,7 @@
  CF_EOF
  fi
  
-@@ -4469,23 +4472,23 @@ case $MANPAGE_FORMAT in #(vi
+@@ -4492,23 +4495,23 @@ case $MANPAGE_FORMAT in #(vi
  cat $cf_edit_man CF_EOF
if test \$form = format ; then
# BSDI installs only .0 suffixes in the cat directories
@@ -98,7 +98,7 @@
for cf_alias in \$aliases

commit ncurses for openSUSE:Factory

2014-12-01 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2014-12-01 14:00:21

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is ncurses

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2014-11-04 
17:27:43.0 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2014-12-01 
14:00:22.0 +0100
@@ -1,0 +2,18 @@
+Mon Nov 17 13:13:16 UTC 2014 - wer...@suse.de
+
+- Do not use new symbol versioning as some common symbols are missed
+- Add ncurses patch 20141115
+  + improve description of limits for color values and color pairs in
+curs_color.3x (prompted by patch by Tim van der Molen).
+  + add VERSION file, using first field in that to record the ABI version
+used for configure --with-libtool --disable-libtool-version
+  + add configure options for applying the .map and .sym files to
+the ncurses, form, menu and panel libraries.
+  + add .map and .sym files to show exported symbols, e.g., for
+symbol-versioning.
+- Add ncurses patch 20141101
+  + improve strict compiler-warnings by adding a cast in TRACE_RETURN
+and making a new TRACE_RETURN1 macro for cases where the cast does
+not apply.
+
+---



Other differences:
--
++ ncurses-5.9-overwrite.dif ++
--- /var/tmp/diff_new_pack.mS9XXs/_old  2014-12-01 14:00:24.0 +0100
+++ /var/tmp/diff_new_pack.mS9XXs/_new  2014-12-01 14:00:24.0 +0100
@@ -17,9 +17,9 @@
 +++ configure  2013-09-30 09:17:52.0 +
 @@ -6526,6 +6526,7 @@ else
  fi;
- echo $as_me:6527: result: $with_overwrite 5
+ echo $as_me:6733: result: $with_overwrite 5
  echo ${ECHO_T}$with_overwrite 6
 +WITH_OVERWRITE=$with_overwrite
  
- echo $as_me:6530: checking if external terminfo-database is used 5
+ echo $as_me:6736: checking if external terminfo-database is used 5
  echo $ECHO_N checking if external terminfo-database is used... $ECHO_C 6

++ ncurses-5.9-patches.tar.bz2 ++
 24083 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit ncurses for openSUSE:Factory

2014-11-04 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2014-11-04 17:27:29

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is ncurses

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2014-10-15 
16:19:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2014-11-04 
17:27:43.0 +0100
@@ -1,0 +2,31 @@
+Mon Oct 20 08:44:14 UTC 2014 - wer...@suse.de
+
+- Add ncurses patch 20141018
+  + reviewed terminology 0.6.1, add function key definitions.  None of
+the vt100-compatibility issues were improved -TD
+  + improve infocmp conversion of extended capabilities to termcap by
+correcting the limit check against parametrized[], as well as filling
+in a check if the string happens to have parameters, e.g., xm
+in recent changes.
+  + add check for zero/negative dimensions for resizeterm and resize_term
+(report by Mike Gran).
+
+---
+Mon Oct 13 12:15:12 UTC 2014 - wer...@suse.de
+
+- Add ncurses patch 20141011
+  + add experimental support for xterm's 1005 mouse mode, to use in a
+demonstration of its limitations.
+  + add experimental support for %u format to terminfo.
+  + modify test/ncurses.c to also show position reports in 'a' test.
+  + minor formatting fixes to _nc_trace_mmask_t, make this function
+exported to help with debugging mouse changes.
+  + improve behavior of wheel-mice for xterm protocol, noting that there
+are only button-presses for buttons 4 and 5, so there is no need
+to wait to combine events into double-clicks (report/analysis by
+Greg Field).
+  + provide examples xterm-1005 and xterm-1006 terminfo entries -TD
+  + implement decoder for xterm SGR 1006 mouse mode.
+- Adapt patch ncurses-5.9.dif
+
+---



Other differences:
--
++ ncurses-5.9-patches.tar.bz2 ++
 1967 lines of diff (skipped)

++ ncurses-5.9.dif ++
--- /var/tmp/diff_new_pack.IgK0Rf/_old  2014-11-04 17:27:47.0 +0100
+++ /var/tmp/diff_new_pack.IgK0Rf/_new  2014-11-04 17:27:47.0 +0100
@@ -1,6 +1,29 @@
+---
+ aclocal.m4   |   40 +++--
+ configure|   41 +++--
+ configure.in |1 
+ 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|9 ++
+ misc/ncurses-config.in   |2 
+ misc/terminfo.src|  131 
++-
+ ncurses/Makefile.in  |2 
+ ncurses/curses.priv.h|2 
+ ncurses/run_cmd.sh   |   11 +++
+ ncurses/tinfo/MKfallback.sh  |   10 ++-
+ ncurses/tinfo/access.c   |   27 
+ ncurses/tinfo/lib_setup.c|3 
+ ncurses/tinfo/read_entry.c   |2 
+ ncurses/tinfo/read_termcap.c |   21 --
+ test/test.priv.h |4 -
+ 20 files changed, 241 insertions(+), 80 deletions(-)
+
 --- aclocal.m4
 +++ aclocal.m4 2010-10-11 13:57:42.0 +
-@@ -505,7 +505,7 @@ AC_MSG_CHECKING([for size of bool])
+@@ -523,7 +523,7 @@ AC_MSG_CHECKING([for size of bool])
  AC_CACHE_VAL(cf_cv_type_of_bool,[
rm -f cf_test.out
AC_TRY_RUN([
@@ -9,7 +32,7 @@
  #include stdio.h
  
  #if defined(__cplusplus)
-@@ -4355,12 +4355,15 @@ cat $cf_edit_man CF_EOF
+@@ -4405,12 +4405,15 @@ cat $cf_edit_man CF_EOF
echo '? missing rename for '\$cf_source
cf_target=\$cf_source
fi
@@ -27,7 +50,7 @@
sed -f $cf_man_alias \\
  CF_EOF
  
-@@ -4370,7 +4373,7 @@ cat $cf_edit_man CF_EOF
+@@ -4420,7 +4423,7 @@ cat $cf_edit_man CF_EOF
  CF_EOF
  else
  cat $cf_edit_man CF_EOF
@@ -36,7 +59,7 @@
  CF_EOF
  fi
  
-@@ -4410,7 +4413,7 @@ cat $cf_edit_man CF_EOF
+@@ -4460,7 +4463,7 @@ cat $cf_edit_man CF_EOF
mv \$TMP.$cf_so_strip \$TMP
fi
fi
@@ -45,7 +68,7 @@
  CF_EOF
  fi
  
-@@ -4419,23 +4422,23 @@ case $MANPAGE_FORMAT in #(vi
+@@ -4469,23 +4472,23 @@ case $MANPAGE_FORMAT in #(vi
  cat $cf_edit_man CF_EOF
if test \$form = format ; then
# BSDI installs only .0 suffixes in the cat directories
@@ -75,7 +98,7 @@
for cf_alias in \$aliases
do
if test \$section = 1 ; then
-@@ -,7 +4447,7 @@ cat $cf_edit_man CF_EOF
+@@ -4494,7 +4497,7 @@ cat $cf_edit_man CF_EOF
  
if 

commit ncurses for openSUSE:Factory

2014-10-15 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2014-10-15 16:19:34

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is ncurses

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2014-09-03 
18:20:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2014-10-15 
16:19:43.0 +0200
@@ -1,0 +2,41 @@
+Tue Sep 30 14:15:11 UTC 2014 - wer...@suse.de
+
+- Add upstream patch 20140927
+  + implement curs_set in win_driver.c
+  + implement flash in win_driver.c
+  + fix an infinite loop in win_driver.c if the command-window loses
+focus.
+  + improve the non-buffered mode, i.e., NCURSES_CONSOLE2, of
+win_driver.c by temporarily changing the buffer-size to match the
+window-size to eliminate the scrollback.  Also enforce a minimum
+screen-size of 24x80 in the non-buffered mode.
+  + modify generated misc/Makefile to suppress install.data from the
+dependencies if the --disable-db-install option is used, compensating
+for the top-level makefile changes used to add ncurses*-config in the
+20140920 changes (report by Steven Honeyman).
+
+---
+Tue Sep 23 08:22:42 UTC 2014 - wer...@suse.de
+
+- Add ncurses patch 20140920
+  + add ncurses*-config to bin-directory of sample package-scripts.
+  + add check to ensure that getopt is available; this is a problem in
+some older cross-compiler environments.
+  + expanded on the description of --disable-overwrite in INSTALL
+(prompted by reports by Joakim Tjernlund, Thomas Klausner).
+See Gentoo #522586 and NetBSD #49200 for examples.
+which relates to the clarified guidelines.
+  + remove special logic from CF_INCLUDE_DIRS which adds the directory
+for the --includedir from the build (report by Joakim Tjernlund).
+  + add case for Unixware to CF_XOPEN_SOURCE, from lynx changes.
+  + update config.sub from http://git.savannah.gnu.org/cgit/config.git
+
+---
+Mon Sep 15 09:31:43 UTC 2014 - wer...@suse.de
+
+- Add ncurses patch 20140913
+  + add a configure check to ignore some of the plethora of non-working
+C++ cross-compilers.
+  + build-fixes for Ada95 with gnat 4.9
+
+---



Other differences:
--
++ ncurses-5.9-overwrite.dif ++
--- /var/tmp/diff_new_pack.P3T4AY/_old  2014-10-15 16:19:45.0 +0200
+++ /var/tmp/diff_new_pack.P3T4AY/_new  2014-10-15 16:19:45.0 +0200
@@ -1,6 +1,11 @@
+---
+ configure|1 +
+ configure.in |1 +
+ 2 files changed, 2 insertions(+)
+
 --- configure.in
 +++ configure.in   2012-01-30 16:31:47.0 +
-@@ -436,6 +436,7 @@ AC_ARG_ENABLE(overwrite,
+@@ -475,6 +475,7 @@ AC_ARG_ENABLE(overwrite,
[with_overwrite=$enableval],
[if test $prefix = /usr ; then with_overwrite=yes; else 
with_overwrite=no; fi])
  AC_MSG_RESULT($with_overwrite)
@@ -9,12 +14,12 @@
  AC_MSG_CHECKING(if external terminfo-database is used)
  AC_ARG_ENABLE(database,
 --- configure
-+++ configure  2013-09-30 09:17:51.710735838 +
-@@ -6390,6 +6390,7 @@ else
 configure  2013-09-30 09:17:52.0 +
+@@ -6526,6 +6526,7 @@ else
  fi;
- echo $as_me:6455: result: $with_overwrite 5
+ echo $as_me:6527: result: $with_overwrite 5
  echo ${ECHO_T}$with_overwrite 6
 +WITH_OVERWRITE=$with_overwrite
  
- echo $as_me:6458: checking if external terminfo-database is used 5
+ echo $as_me:6530: checking if external terminfo-database is used 5
  echo $ECHO_N checking if external terminfo-database is used... $ECHO_C 6

++ ncurses-5.9-patches.tar.bz2 ++
 35944 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit ncurses for openSUSE:Factory

2014-09-03 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2014-09-03 18:20:25

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is ncurses

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2014-08-29 
17:42:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2014-09-03 
18:20:27.0 +0200
@@ -1,0 +2,8 @@
+Mon Sep  1 12:18:19 UTC 2014 - wer...@suse.de
+
+- Add ncurses patch 20140831
+  + modify test/demo_termcap.c and test/demo_terminfo.c to make their
+options more directly comparable, and add -i option to specify
+a terminal description filename to parse for names to lookup.
+
+---



Other differences:
--
++ ncurses-5.9-patches.tar.bz2 ++
 1607 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit ncurses for openSUSE:Factory

2014-08-29 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2014-08-29 17:42:13

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is ncurses

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2014-08-20 
10:50:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2014-08-29 
17:42:15.0 +0200
@@ -1,0 +2,25 @@
+Mon Aug 25 13:48:27 UTC 2014 - wer...@suse.de
+
+- Make pkgconfig files work for all current versions that is
+  abi 5, abi wide 5, abi 6, and abi wide 6 
+- Change patch ncurses-5.9.dif to enable gen-pkgconfig to do this
+
+---
+Mon Aug 25 09:50:03 UTC 2014 - wer...@suse.de
+
+- Add ncurses patch 20140823
+  + fix special case where double-width character overwrites a single-
+width character in the first column (report by Egmont Koblinger,
+cf: 20050813).
+
+---
+Fri Aug 22 13:34:00 UTC 2014 - mma...@suse.cz
+
+- Install pkg-config files into %_libdir
+
+---
+Fri Aug 22 10:59:18 UTC 2014 - mma...@suse.cz
+
+- Install pkg-config files
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.wRu0zD/_old  2014-08-29 17:42:17.0 +0200
+++ /var/tmp/diff_new_pack.wRu0zD/_new  2014-08-29 17:42:17.0 +0200
@@ -19,6 +19,7 @@
 Name:   ncurses
 #!BuildIgnore: terminfo
 BuildRequires:  gcc-c++
+BuildRequires:  pkg-config
 BuildRequires:  screen
 %if 0%{?suse_version}  1130
 BuildRequires:  gpm-devel
@@ -452,7 +453,9 @@
--disable-widec \
--disable-tic-depends   \
--with-cxx-shared   \
-   --with-ticlib=tic
+   --with-ticlib=tic   \
+   --enable-pc-files   \
+   --with-pkg-config-libdir=%{_libdir}/pkgconfig
 kill $pid
 #
 #  The configure line
@@ -509,7 +512,13 @@
 # must not use %jobs here (would lead to: ln: ncurses.h already exists)
 make install DESTDIR=%{root} includedir=%{_incdir} includesubdir=/ncurses 
libdir=%{_libdir}
 ln -sf %{_incdir}/ncurses/{curses,ncurses,term,termcap}.h %{root}%{_incdir}
+%if %abi = 6
+sh %{S:6} --cflags -I%{_incdir}/ncurses --libs -lncurses --libs 
-ltinfo %{root}%{_bindir}/ncurses6-config
+%else
 sh %{S:6} --cflags -I%{_incdir}/ncurses --libs -lncurses --libs 
-ltinfo %{root}%{_bindir}/ncurses5-config
+%endif
+mkdir pc
+mv -f %{root}%{_libdir}/pkgconfig/*.pc pc/
 #
 # Check for tack program on base of above ncurses
 #
@@ -537,6 +546,7 @@
 cp fallback.c.build ncurses/fallback.c
 make -C c++ etip.h
 make %{?_smp_mflags}
+sed -ri 
s@^(libdir=).show_libdir@\1%{_libdir}/ncurses6@;s@^(includedir=).show_includedir@\1%{_incdir}/ncurses6/ncurses@
 misc/gen-pkgconfig
 # must not use %jobs here (would lead to: ln: ncurses.h already exists)
 make install.libs install.includes DESTDIR=%{root} 
includedir=%{_incdir}/ncurses6 includesubdir=/ncurses libdir=%{_libdir}/ncurses6
 ln -sf %{_incdir}/ncurses6/ncurses/{curses,ncurses,term}.h 
%{root}%{_incdir}/ncurses6/
@@ -544,6 +554,13 @@
 pushd man
sh ../edit_man.sh normal installing %{root}%{_mandir} . 
ncurses6-config.1
 popd
+for pc in %{root}%{_libdir}/pkgconfig/*.pc
+do
+   test -e $pc || break
+   base=${pc%%.pc}
+   base=${base##*/}
+   mv -f $pc pc/${base}6.pc
+done
 %endif
 make clean
 #
@@ -565,10 +582,19 @@
 make %{?_smp_mflags}
 # must not use %jobs here (would lead to: ln: ncurses.h already exists)
 make install.libs install.includes DESTDIR=%{root} includedir=%{_incdir} 
includesubdir=/ncursesw libdir=%{_libdir}
+%if %abi = 6
+sh %{S:6} --cflags -I%{_incdir}/ncursesw --libs -lncursesw --libs 
-ltinfo %{root}%{_bindir}/ncursesw6-config
+pushd man
+   sh ../edit_man.sh normal installing %{root}%{_mandir} . 
ncursesw6-config.1
+popd
+%else
 sh %{S:6} --cflags -I%{_incdir}/ncursesw --libs -lncursesw --libs 
-ltinfo %{root}%{_bindir}/ncursesw5-config
 pushd man
sh ../edit_man.sh normal installing %{root}%{_mandir} . 
ncursesw5-config.1
 popd
+%endif
+rm -f %{root}%{_libdir}/pkgconfig/ti*.pc
+mv -f %{root}%{_libdir}/pkgconfig/*.pc pc/
 %if %abi  6
 make clean
 #
@@ -582,12 +608,21 @@
 cp fallback.c.build ncurses/fallback.c
 make -C c++ etip.h
 make %{?_smp_mflags}
+sed -ri 

commit ncurses for openSUSE:Factory

2014-08-20 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2014-08-20 10:50:36

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is ncurses

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2014-08-05 
12:59:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2014-08-20 
10:50:37.0 +0200
@@ -1,0 +2,33 @@
+Mon Aug 18 10:09:40 UTC 2014 - wer...@suse.de
+
+- Add ncurses patch 20140816
+  + fix colors in ncurses 'b' test which did not work after changing
+it to put the test-strings in subwindows (cf: 20140705).
+  + merge redundant SEE-ALSO sections in form and menu manpages.
+- Add ncurses patch 20140809
+  + modify declarations for user-data pointers in C++ binding to use
+reinterpret_cast to facilitate converting typed pointers to void*
+in user's application (patch by Adam Jiang).
+  + regenerated html manpages.
+  + add note regarding cause and effect for TERM in ncurses manpage,
+having noted clueless verbiage in Terminal.app's help file
+which reverses cause/effect.
+  + remove special fallback definition for NCURSES_ATTR_T, since macros
+have resolved type-mismatches using casts (cf: 970412).
+  + fixes for win_driver.c:
++ handle repainting on endwin/refresh combination.
++ implement beep().
++ minor cleanup.
+- Add ncurses patch 20140802
+  + minor portability fixes for MinGW:
++ ensure WINVER is defined in makefiles rather than using headers
++ add check for gnatprep -T option
++ work around bug introduced by gcc 4.8.1 in MinGW which breaks
+  trace feature:
+  
http://stackoverflow.com/questions/20877689/gcc-4-8-1-minggw-d-option-does-not-work-as-usual
+  + fix most compiler warnings for Cygwin ncurses-examples.
+  + restore redundant -I options in test/Makefile.in, since they are
+typically needed when building the derived ncurses-examples package
+(cf: 20140726).
+
+---



Other differences:
--
++ ncurses-5.9-patches.tar.bz2 ++
 8753 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit ncurses for openSUSE:Factory

2014-08-05 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2014-08-05 12:59:36

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is ncurses

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2014-07-19 
11:04:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2014-08-05 
12:59:41.0 +0200
@@ -1,0 +2,14 @@
+Mon Jul 28 11:16:06 UTC 2014 - wer...@suse.de
+
+- Add ncurses patch 20140726
+  + eliminate some redundant -I options used for building libraries, and
+ensure that ${srcdir} is added to the include-options (prompted by
+discussion with Paul Gilmartin).
+  + modify configure script to work with Minix3.2
+  + add form library extension O_DYNAMIC_JUSTIFY option which can be
+used to override the different treatment of justification for static
+versus dynamic fields (adapted from patch by Leon Winter).
+  + add a null pointer check in test/edit_field.c (report/analysis by
+Leon Winter, cf: 20130608).
+
+---



Other differences:
--
++ ncurses-5.9-overwrite.dif ++
--- /var/tmp/diff_new_pack.5ddRj7/_old  2014-08-05 12:59:42.0 +0200
+++ /var/tmp/diff_new_pack.5ddRj7/_new  2014-08-05 12:59:42.0 +0200
@@ -12,9 +12,9 @@
 +++ configure  2013-09-30 09:17:51.710735838 +
 @@ -6390,6 +6390,7 @@ else
  fi;
- echo $as_me:6392: result: $with_overwrite 5
+ echo $as_me:6455: result: $with_overwrite 5
  echo ${ECHO_T}$with_overwrite 6
 +WITH_OVERWRITE=$with_overwrite
  
- echo $as_me:6395: checking if external terminfo-database is used 5
+ echo $as_me:6458: checking if external terminfo-database is used 5
  echo $ECHO_N checking if external terminfo-database is used... $ECHO_C 6

++ ncurses-5.9-patches.tar.bz2 ++
 48119 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit ncurses for openSUSE:Factory

2014-07-19 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2014-07-19 11:04:11

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is ncurses

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2014-06-25 
11:47:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2014-07-19 
11:04:14.0 +0200
@@ -1,0 +2,23 @@
+Mon Jul 14 08:57:10 UTC 2014 - wer...@suse.de
+
+- Add ncurses patch 20140712
+  + correct Charable() macro check for A_ALTCHARSET in wide-characters.
+  + build-fix for position-debug code in tty_update.c, to work with or
+without sp-funcs.
+- Add ncurses patch 20140705
+  + add w/W toggle to ncurses.c 'B' test, to demonstrate permutation of
+video-attributes and colors with double-width character strings.
+
+---
+Mon Jun 30 07:09:05 UTC 2014 - wer...@suse.de
+
+- Add ncurses patch 20140629
+  + correct check in win_driver.c for saving screen contents, e.g., when
+NCURSES_CONSOLE2 is set (cf: 20140503).
+  + reorganize b/B menu items in ncurses.c, putting the test-strings into
+subwindows.  This is needed for a planned change to use Unicode
+fullwidth characters in the test-screens.
+  + correct update to form status for _NEWTOP, broken by fixes for
+compiler warnings (patch by Leon Winter, cf: 20120616).
+
+---



Other differences:
--
++ ncurses-5.9-patches.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/patches/ncurses-5.9-20140629.patch 
new/patches/ncurses-5.9-20140629.patch
--- old/patches/ncurses-5.9-20140629.patch  1970-01-01 01:00:00.0 
+0100
+++ new/patches/ncurses-5.9-20140629.patch  2014-06-30 09:07:36.0 
+0200
@@ -0,0 +1,613 @@
+# ncurses 5.9 - patch  - Thomas E. Dickey
+#
+# 
--
+#
+# Ncurses 5.9 is at
+#  ftp.gnu.org:/pub/gnu
+#
+# Patches for ncurses 5.9 are in the subdirectory
+#  ftp://invisible-island.net/ncurses/5.9
+#
+# 
--
+# ftp://invisible-island.net/ncurses/5.9/ncurses-5.9-20140629.patch.gz
+# patch by Thomas E. Dickey dic...@invisible-island.net
+# created  Mon Jun 30 00:28:28 UTC 2014
+# 
--
+# NEWS |   11 ++
+# dist.mk  |4 
+# form/frm_driver.c|4 
+# ncurses/win32con/win_driver.c|4 
+# package/debian-mingw/changelog   |4 
+# package/debian-mingw64/changelog |4 
+# package/debian/changelog |4 
+# package/mingw-ncurses.nsi|4 
+# package/mingw-ncurses.spec   |2 
+# package/ncurses.spec |2 
+# test/dots_curses.c   |6 -
+# test/ncurses.c   |  154 -
+# 12 files changed, 130 insertions(+), 73 deletions(-)
+# 
--
+Index: NEWS
+Prereq:  1.2229 
+--- ncurses-5.9-20140621+/NEWS 2014-06-21 21:51:45.0 +
 ncurses-5.9-20140629/NEWS  2014-06-29 23:43:38.0 +
+@@ -25,7 +25,7 @@
+ -- sale, use or other dealings in this Software without prior written
--
+ -- authorization.
--
+ 
---
+--- $Id: NEWS,v 1.2229 2014/06/21 21:51:45 tom Exp $
++-- $Id: NEWS,v 1.2234 2014/06/29 23:43:38 tom Exp $
+ 
---
+ 
+ This is a log of changes that ncurses has gone through since Zeyd started
+@@ -45,6 +45,15 @@
+ Changes through 1.9.9e did not credit all contributions;
+ it is not possible to add this information.
+ 
++20140629
++  + correct check in win_driver.c for saving screen contents, e.g., when
++NCURSES_CONSOLE2 is set (cf: 20140503).
++  + reorganize b/B menu items in ncurses.c, putting the test-strings into
++subwindows.  This is needed for a planned change to use Unicode
++fullwidth characters in the test-screens.
++  + correct update to form status for _NEWTOP, broken by fixes for
++compiler warnings (patch by Leon Winter, cf: 20120616).
++
+ 20140621
+   + change shared-library suffix for AIX 5 and 6 to .so, avoiding
+ conflict with the static library 

commit ncurses for openSUSE:Factory

2014-06-25 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2014-06-25 11:47:23

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is ncurses

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2014-05-28 
06:43:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2014-06-25 
11:47:32.0 +0200
@@ -1,0 +2,50 @@
+Tue Jun 24 12:40:25 UTC 2014 - wer...@suse.de
+
+- Remove the iterm link to iTerm.app terminal entry as there is already
+  an iterm entry from an other package
+- Add ncurses patch 20140621
+  + change shared-library suffix for AIX 5 and 6 to .so, avoiding
+conflict with the static library (report by Ben Lentz).
+  + document RPATH_LIST in INSTALLATION file, as part of workarounds for
+upgrading an ncurses library using the --with-shared option.
+  + modify test/ncurses.c c/C tests to cycle through subsets of the
+total number of colors, to better illustrate 8/16/88/256-colors by
+providing directly comparable screens.
+  + add test/dots_curses.c, for comparison with the low-level examples.
+
+---
+Mon Jun 16 11:21:55 UTC 2014 - wer...@suse.de
+
+- Add ncurses patch 20140614
+  + fix dereference before null check found by Coverity in tic.c 
+(cf: 20140524).
+  + fix sign-extension bug in read_entry.c which prevented toe from
+reading empty screen+italics entry.
+  + modify sgr for screen.xterm-new to support dim capability -TD
+  + add dim capability to nsterm+7 -TD
+  + cancel dim capability for iterm -TD
+  + add dim, invis capabilities to vte-2012 -TD
+  + add sitm/ritm to konsole-base and mlterm3 -TD
+- Add ncurses patch 20140609
+   fix regression in screen terminfo entries (reports by Christian
+Ebert, Gabriele Balducci) -TD
+  + revert the change to screen; see notes for why this did not work -TD
+  + cancel sitm/ritm for entries which extend screen, to work around
+screen's hardcoded behavior for SGR 3 -TD
+- Add ncurses patch 20140607
+  + separate masking for sgr in vidputs from sitm/ritm, which do not
+overlap with sgr functionality.
+  + remove unneeded -i option from adacurses-config; put -a in the -I
+option for consistency (patch by Pascal Pignard).
+  + update xterm-new to patch #305 -TD
+  + change format of test-scripts for Debian Ada95 and ncurses-examples
+packages to quilted to work around Debian #700177 (cf: 20130907).
+  + build fix for form_driver_w.c as part of ncurses-examples package for
+older ncurses than 20131207.
+  + add Hello World example to adacurses-config manpage.
+  + remove unused --enable-pc-files option from Ada95/configure.
+  + add --disable-gnat-projects option for testing.
+  + revert changes to Ada95 project-files configuration (cf: 20140524).
+  + corrected usage message in adacurses-config.
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.v0V3Sb/_old  2014-06-25 11:47:33.0 +0200
+++ /var/tmp/diff_new_pack.v0V3Sb/_new  2014-06-25 11:47:33.0 +0200
@@ -262,6 +262,7 @@
 %setup -q -n ncurses-%{version}
 rm -fr tack
 rm -f  Ada95/src/terminal_interface-curses.adb
+rm -f  Ada95/src/library.gpr
 rm -f  mkinstalldirs
 tar Oxfj %{S:1} | patch -p1 -s
 tar  xfj %{S:5}
@@ -275,6 +276,8 @@
 rm -vf mkdirs.sh
 rm -vf tar-copy.sh
 rm -vf mk-dlls.sh
+# Remove iterm link to iTerm.app
+sed -ri '/^iTerm/{s@iterm\|@@}' misc/terminfo.src
 
 %build
 %global _configure screen -L -D -m ./configure

++ ncurses-5.9-overwrite.dif ++
--- /var/tmp/diff_new_pack.v0V3Sb/_old  2014-06-25 11:47:33.0 +0200
+++ /var/tmp/diff_new_pack.v0V3Sb/_new  2014-06-25 11:47:33.0 +0200
@@ -12,9 +12,9 @@
 +++ configure  2013-09-30 09:17:51.710735838 +
 @@ -6390,6 +6390,7 @@ else
  fi;
- echo $as_me:6391: result: $with_overwrite 5
+ echo $as_me:6392: result: $with_overwrite 5
  echo ${ECHO_T}$with_overwrite 6
 +WITH_OVERWRITE=$with_overwrite
  
- echo $as_me:6394: checking if external terminfo-database is used 5
+ echo $as_me:6395: checking if external terminfo-database is used 5
  echo $ECHO_N checking if external terminfo-database is used... $ECHO_C 6

++ ncurses-5.9-patches.tar.bz2 ++
 29996 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit ncurses for openSUSE:Factory

2014-05-27 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2014-05-28 06:42:56

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is ncurses

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2014-05-22 
20:38:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2014-05-28 
06:42:58.0 +0200
@@ -1,0 +2,53 @@
+Mon May 26 08:38:03 UTC 2014 - wer...@suse.de
+
+- Add ncurses patch 20140524
+  + fix typo in ncurses manpage for the NCURSES_NO_MAGIC_COOKIE
+environment variable.
+  + improve discussion of input-echoing in curs_getch.3x
+  + clarify discussion in curs_addch.3x of wrapping.
+  + modify parametrized.h to make fln non-padded.
+  + correct several entries which had termcap-style padding used in
+terminfo: adm21, aj510, alto-h19, att605-pc, x820 -TD
+  + correct syntax for padding in some entries: dg211, h19 -TD
+  + correct ti924-8 which had confused padding versus octal escapes -TD
+  + correct padding in sbi entry -TD
+  + fix an old bug in the termcap emulation; %i was ignored in tparm()
+because the parameters to be incremented were already on the internal
+stack (report by Corinna Vinschen).
+  + modify tic's -c option to take into account the -C option to
+activate additional checks which compare the results from running
+tparm() on the terminfo expressions versus the translated termcap
+expressions.
+  + modify tic to allow it to read from FIFOs (report by Matthieu Fronton,
+cf: 20120324).
+   patches by Nicolas Boulenguez:
+  + explicit dereferences to suppress some style warnings.
+  + when c_varargs_to_ada.c includes its header, use double quotes
+instead of .
+  + samples/ncurses2-util.adb:  removed unused with clause.  The warning
+was removed by an obsolete pragma.
+  + replaced Unreferenced pragmas with Warnings (Off).  The latter,
+available with older GNATs, needs no configure test.  This also
+replaces 3 untested Unreferenced pragmas.
+  + simplified To_C usage in trace handling.  Using two parameters allows
+some basic formatting, and avoids a warning about security with some
+compiler flags.
+  + for generated Ada sources, replace many snippets with one pure
+package.
+  + removed C_Chtype and its conversions.
+  + removed C_AttrType and its conversions.
+  + removed conversions between int, Item_Option_Set, Menu_Option_Set.
+  + removed int, Field_Option_Set, Item_Option_Set conversions.
+  + removed C_TraceType, Attribute_Option_Set conversions.
+  + replaced C.int with direct use of Eti_Error, now enumerated.  As it
+was used in a case statement, values were tested by the Ada compiler
+to be consecutive anyway.
+  + src/Makefile.in: remove duplicate stanza
+only consider using a project for shared libraries.
+- Add tack patch 1.07.20130713
+  * init.c: typo
+  * fun.c, scan.c: fix warnings from clang 3.3 --analyze
+  * init.c: add error check to setupterm call; ncurses does in fact
+allow hardcopy and generic terminal descriptions (Debian #716377).
+
+---

Old:

  tack-1.07-20120916.tar.bz2

New:

  tack-1.07-20130713.tar.bz2



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.nQEKJN/_old  2014-05-28 06:43:00.0 +0200
+++ /var/tmp/diff_new_pack.nQEKJN/_new  2014-05-28 06:43:00.0 +0200
@@ -44,7 +44,7 @@
 Source2:handle.linux
 Source3:README.devel
 Source4:ncurses-rpmlintrc
-Source5:tack-1.07-20120916.tar.bz2
+Source5:tack-1.07-20130713.tar.bz2
 Source6:edit.sed
 Source7:baselibs.conf
 Patch0: ncurses-%{version}.dif

++ ncurses-5.9-patches.tar.bz2 ++
 30564 lines of diff (skipped)

++ tack-1.07-20120916.tar.bz2 - tack-1.07-20130713.tar.bz2 ++
 7468 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/tack-1.07-20120916/CHANGES new/tack-1.07-20130713/CHANGES
--- old/tack-1.07-20120916/CHANGES  2012-09-17 01:47:41.0 +0200
+++ new/tack-1.07-20130713/CHANGES  2013-07-13 21:07:40.0 +0200
@@ -1,3 +1,39 @@
+2013-07-13  Thomas E. Dickey  t...@invisible-island.net
+
+   * init.c: typo
+
+   * fun.c, scan.c: fix warnings from clang 3.3 --analyze
+
+   * init.c:
+   

commit ncurses for openSUSE:Factory

2014-05-22 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2014-05-22 20:38:04

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is ncurses

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2014-05-03 
16:51:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2014-05-22 
20:38:19.0 +0200
@@ -1,0 +2,17 @@
+Mon May 12 12:06:39 UTC 2014 - wer...@suse.de
+
+- Add ncurses patch 20140510
+  + cleanup recently introduced compiler warnings for MingW port.
+  + workaround for ${MAKEFLAGS} configure check versus GNU make 4.0,
+which introduces more than one gratuitous incompatibility.
+
+---
+Mon May  5 10:59:16 UTC 2014 - wer...@suse.de
+
+-  Add ncurses patch 20140503
+   + add vt520ansi terminfo entry (patch by Mike Gran)
+   + further improve MinGW support for the scenario where there is an
+ ANSI-escapes handler such as ansicon running in the console window
+ (patch by Juergen Pfeifer).
+
+---



Other differences:
--
++ ncurses-5.9-patches.tar.bz2 ++
 2348 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit ncurses for openSUSE:Factory

2014-05-03 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2014-05-03 16:51:34

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is ncurses

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2014-04-25 
16:06:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2014-05-03 
16:51:38.0 +0200
@@ -1,0 +2,18 @@
+Mon Apr 28 10:53:21 UTC 2014 - wer...@suse.de
+
+- Add ncurses patch 20140426
+  + add --disable-lib-suffixes option (adapted from patch by Juergen
+Pfeifer).
+  + merge some changes from Juergen Pfeifer's work with MSYS2, to
+simplify later merging:
++ use NC_ISATTY() macro for isatty() in library
++ add _nc_mingw_isatty() and related functions to windows-driver
++ rename terminal driver entrypoints to simplify grep's
+  + remove a check in the sp-funcs flavor of newterm() which allowed only
+the first call to newterm() to succeed (report by Thomas Beierlein,
+cf: 20090927).
+- Add ncurses patch 20140419
+  + update config.guess, config.sub from
+  http://git.savannah.gnu.org/cgit/config.git
+
+---



Other differences:
--
++ ncurses-5.9-overwrite.dif ++
--- /var/tmp/diff_new_pack.T3lnvX/_old  2014-05-03 16:51:39.0 +0200
+++ /var/tmp/diff_new_pack.T3lnvX/_new  2014-05-03 16:51:39.0 +0200
@@ -10,11 +10,11 @@
  AC_ARG_ENABLE(database,
 --- configure
 +++ configure  2013-09-30 09:17:51.710735838 +
-@@ -6375,6 +6375,7 @@ else
+@@ -6390,6 +6390,7 @@ else
  fi;
- echo $as_me:6376: result: $with_overwrite 5
+ echo $as_me:6391: result: $with_overwrite 5
  echo ${ECHO_T}$with_overwrite 6
 +WITH_OVERWRITE=$with_overwrite
  
- echo $as_me:6379: checking if external terminfo-database is used 5
+ echo $as_me:6394: checking if external terminfo-database is used 5
  echo $ECHO_N checking if external terminfo-database is used... $ECHO_C 6

++ ncurses-5.9-patches.tar.bz2 ++
 14917 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit ncurses for openSUSE:Factory

2014-04-25 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2014-04-25 16:06:57

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is ncurses

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2014-04-06 
09:54:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2014-04-25 
16:06:58.0 +0200
@@ -1,0 +2,10 @@
+Mon Apr 14 17:01:36 UTC 2014 - wer...@suse.de
+
+- Add ncurses patch 20140412
+  + modify configure script:
++ drop the -no-gcc option from Intel compiler, from lynx changes.
++ extend the --with-hashed-db configure option to simplify building
+ with different versions of Berkeley database using FreeBSD ports.
+   + improve initialization for MinGW port (patch by Juergen Pfeifer):
+
+---



Other differences:
--
++ ncurses-5.9-patches.tar.bz2 ++
 2958 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit ncurses for openSUSE:Factory

2014-04-06 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2014-04-06 09:54:08

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is ncurses

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2014-03-11 
17:25:44.0 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2014-04-06 
09:54:09.0 +0200
@@ -1,0 +2,51 @@
+Mon Mar 31 10:13:11 UTC 2014 - wer...@suse.de
+
+- Add ncurses patch 20140329
+  + add check in tic for mismatch between ccc and initp/initc
+  + cancel ccc in putty-256color and konsole-256color for consistency
+with the cancelled initc capability (patch by Sven Zuhlsdorf).
+  + add xterm+256setaf building block for various terminals which only
+get the 256-color feature half-implemented -TD
+  + updated st entry (leaving the 0.1.1 version as simpleterm) to
+0.4.1 -TD
+
+---
+Thu Mar 27 13:57:11 UTC 2014 - wer...@suse.de
+
+- Make sure that libgpm is always loaded dynamically 
+
+---
+Wed Mar 26 09:04:28 UTC 2014 - wer...@suse.de
+
+- Add ncurses patch 20140323
+  + fix typo in mlterm entry (report by Gabriele Balducci) -TD
+- Add ncurses patch 20140322
+  + use types from stdint.h in sample build-scripts for chtype, etc.
+  + modify configure script and curses.h.in to allow the types specified
+using --with-chtype and related options to be defined in stdint.h
+  + add terminology entry -TD
+  + add mlterm3 entry, use that as mlterm -TD
+  + inherit mlterm-256color from mlterm -TD
+
+---
+Tue Mar 18 17:18:00 UTC 2014 - wer...@suse.de
+
+- Add ncurses patch 20140315
+  + modify _nc_New_TopRow_and_CurrentItem() to ensure that the menu's
+top-row is adjusted as needed to ensure that the current item is
+on the screen (patch by Johann Klammer).
+  + add wgetdelay() to retrieve _delay member of WINDOW if it happens to
+be opaque, e.g., in the pthread configuration (prompted by patch by
+Soren Brinkmann).
+
+---
+Wed Mar 12 08:53:39 UTC 2014 - wer...@suse.de
+
+- Add ncurses patch 20140308
+  + modify ifdef in read_entry.c to handle the case where
+NCURSES_USE_DATABASE is not defined (patch by Xin Li).
+  + add cast in form_driver_w() to fix ARM build (patch by Xin Li).
+  + add logic to win_driver.c to save/restore screen contents when not
+allocating a console-buffer (cf: 20140215).
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.hztWad/_old  2014-04-06 09:54:11.0 +0200
+++ /var/tmp/diff_new_pack.hztWad/_new  2014-04-06 09:54:11.0 +0200
@@ -379,6 +379,10 @@
 # libtinfo (is linked with) and therefore there is no
 # advantage about splitting of a libtinfo (IMHO).
 #
+%if 0%{?suse_version}  1310
+SO=$(rpm -ql gpm-devel|grep %{_libdir})
+SO=%{_libdir}/$(readlink $SO)
+%endif
 touch --reference=README config.sub config.guess
  $SCREENLOG
 tail -q -s 0.5 -f $SCREENLOG  pid=$!
@@ -393,7 +397,11 @@
--with-manpage-renames=${PWD}/man/man_db.renames \
--with-manpage-aliases  \
--with-ospeed=speed_t   \
+%if 0%{?suse_version}  1310
+   --with-gpm=$SO  \
+%else
--with-gpm  \
+%endif
--with-dlsym\
--with-termlib=tinfo\
--with-ticlib=tic   \

++ ncurses-5.9-patches.tar.bz2 ++
 3191 lines of diff (skipped)

++ ncurses-5.9.dif ++
--- /var/tmp/diff_new_pack.hztWad/_old  2014-04-06 09:54:14.0 +0200
+++ /var/tmp/diff_new_pack.hztWad/_new  2014-04-06 09:54:14.0 +0200
@@ -9,7 +9,7 @@
  #include stdio.h
  
  #if defined(__cplusplus)
-@@ -4350,12 +4350,15 @@ cat $cf_edit_man CF_EOF
+@@ -4355,12 +4355,15 @@ cat $cf_edit_man CF_EOF
echo '? missing rename for '\$cf_source
cf_target=\$cf_source
fi
@@ -27,7 +27,7 @@
sed -f $cf_man_alias \\
  CF_EOF
  
-@@ -4365,7 +4368,7 @@ cat $cf_edit_man CF_EOF
+@@ -4370,7 +4373,7 @@ cat $cf_edit_man CF_EOF
  CF_EOF
  else
  cat $cf_edit_man CF_EOF
@@ -36,7 +36,7 @@
  CF_EOF
  fi
  
-@@ -4405,7 +4408,7 @@ cat $cf_edit_man CF_EOF
+@@ -4410,7 +4413,7 @@ cat $cf_edit_man CF_EOF
mv \$TMP.$cf_so_strip \$TMP
fi
fi
@@ -45,7 +45,7 @@
  CF_EOF
  fi
  
-@@ -4414,23 +4417,23 @@ case $MANPAGE_FORMAT in #(vi
+@@ -4419,23 +4422,23 @@ case $MANPAGE_FORMAT in 

commit ncurses for openSUSE:Factory

2014-03-11 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2014-03-11 17:25:43

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is ncurses

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2014-02-04 
19:55:44.0 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2014-03-11 
17:25:44.0 +0100
@@ -1,0 +2,26 @@
+Mon Mar  3 16:21:40 UTC 2014 - wer...@suse.de
+
+- Add ncurses patch 20140301
+  + clarify error-returns from newwin (report by Ruslan Nabioullin).
+- Add ncurses patch 20140222
+  + fix some compiler warnings in win_driver.c
+  + updated notes for wsvt25 based on tack and vttest -TD
+  + add teken entry to show actual properties of FreeBSD's xterm
+console -TD
+- Add ncurses patch 20140215
+  + in-progress changes to win_driver.c to implement output without
+allocating a console-buffer.  This uses a pre-existing environment
+variable NCGDB used by Juergen Pfeifer for debugging (prompted by
+discussion with Erwin Waterlander regarding Console2, which hangs
+when reading in an allocated console-buffer).
+  + add -t option to gdc.c, and modify to accept S to step through the
+scrolling-stages.
+  + regenerate NCURSES-Programming-HOWTO.html to fix some of the broken
+html emitted by docbook.
+- Add ncurses patch 20140209
+  + modify CF_XOPEN_SOURCE macro to omit followup check to determine if
+_XOPEN_SOURCE can/should be defined.  g++ 4.7.2 built on Solaris 10
+has some header breakage due to its own predefinition of this symbol
+(report by Jean-Pierre Flori, Sage #15796).
+
+---



Other differences:
--
++ ncurses-5.9-patches.tar.bz2 ++
 35166 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit ncurses for openSUSE:Factory

2014-02-04 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2014-02-04 19:55:43

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is ncurses

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2014-01-29 
07:19:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2014-02-04 
19:55:44.0 +0100
@@ -1,0 +2,16 @@
+Mon Feb  3 10:11:10 UTC 2014 - wer...@suse.de
+
+- Add ncurses patch 20140201
+  + add/use symbol NCURSES_PAIRS_T like NCURSES_COLOR_T, to illustrate
+which short types are for color pairs and which are color values.
+  + fix build for s390x, by correcting field bit offsets in generated
+representation clauses when int=32 long=64 and endian=big, or at
+least on s390x (patch by Nicolas Boulenguez).
+  + minor cleanup change to test/form_driver_w.c (patch by Gaute Hope).
+- Add ncurses patch 20140125
+  + remove unnecessary ifdef's in Ada95/gen/gen.c, which reportedly do
+not work as is with gcc 4.8 due to fixes using chtype cast made for
+new compiler warnings by gcc 4.8 in 20130824 (Debian #735753, patch
+by Nicolas Boulenguez).
+
+---



Other differences:
--
++ ncurses-5.9-patches.tar.bz2 ++
 2727 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit ncurses for openSUSE:Factory

2014-01-28 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2014-01-29 07:19:16

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is ncurses

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2014-01-24 
21:42:09.0 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2014-01-29 
07:19:18.0 +0100
@@ -1,0 +2,6 @@
+Tue Jan 28 18:18:22 UTC 2014 - wer...@suse.de
+
+- Add patch ncurses-5.9-ibm327x.dif to make ibm327x not a generic
+  terminal type but a more dumb one (bnc#859214) 
+
+---

New:

  ncurses-5.9-ibm327x.dif



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.NbQwDv/_old  2014-01-29 07:19:19.0 +0100
+++ /var/tmp/diff_new_pack.NbQwDv/_new  2014-01-29 07:19:19.0 +0100
@@ -48,6 +48,7 @@
 Source6:edit.sed
 Source7:baselibs.conf
 Patch0: ncurses-%{version}.dif
+Patch1: ncurses-5.9-ibm327x.dif
 Patch3: ncurses-5.9-overwrite.dif
 Patch4: ncurses-5.7-tack.dif
 Patch5: ncurses-5.9-environment.dif
@@ -265,6 +266,7 @@
 tar Oxfj %{S:1} | patch -p1 -s
 tar  xfj %{S:5}
 mv tack-* tack
+%patch -P 1 -p0 -b .327x
 %patch -P 3 -p0 -b .ow
 %patch -P 4 -p0 -b .hs
 %patch -P 5 -p0 -b .lc

++ ncurses-5.9-ibm327x.dif ++
--- misc/terminfo.src
+++ misc/terminfo.src   2014-01-28 17:58:38.062235705 +
@@ -14838,8 +14838,8 @@ hazel|exec80|h80|he80|Hazeltine Executiv
 #
 
 ibm327x|line mode IBM 3270 style,
-   gn,
-   clear=^M^J, el=^M, home=^M,
+   cols#80,
+   clear=^M^J, cr=^M, cud1=^J, el=^M, home=^M, ind=^J,
 
 ibm3101|i3101|IBM 3101-10,
OTbs, am, xon,
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit ncurses for openSUSE:Factory

2014-01-24 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2014-01-24 21:42:07

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is ncurses

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2013-12-19 
13:34:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2014-01-24 
21:42:09.0 +0100
@@ -1,0 +2,9 @@
+Mon Jan 20 13:49:00 UTC 2014 - wer...@suse.de
+
+- Add ncurses patch 20140118
+  + apply includesubdir variable which was introduced in 20130805 to
+gen-pkgconfig.in (Debian #735782).
+- Correct spec file irarch to make S390(x) fallback terminal types
+  working on S390(x) (bnc#859214)
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.SgEajZ/_old  2014-01-24 21:42:11.0 +0100
+++ /var/tmp/diff_new_pack.SgEajZ/_new  2014-01-24 21:42:11.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ncurses
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -322,9 +322,9 @@
 test ! -f /.buildenv || . /.buildenv
OPATH=$PATH
 %ifarch s390x s390
-  FALLBK=xterm,linux,vt100,vt102
-%else
   FALLBK=xterm,ibm327x,vt100,vt102,vt220
+%else
+  FALLBK=xterm,linux,vt100,vt102
 %endif
  CC=gcc
 CXX=g++

++ ncurses-5.9-patches.tar.bz2 ++
 3201 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit ncurses for openSUSE:Factory

2013-12-19 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2013-12-19 13:34:29

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is ncurses

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2013-12-11 
16:52:13.0 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2013-12-19 
13:34:30.0 +0100
@@ -1,0 +2,14 @@
+Tue Dec 17 17:40:23 UTC 2013 - wer...@suse.de
+
+- Add ncurses patch 20131214
+  + modify configure-script/ifdef's to allow OLD_TTY feature to be
+suppressed if the type of ospeed is configured using the option
+--with-ospeed to not be a short.  By default, it is a short for
+termcap-compatibility (adapted from suggestion by Christian
+Weisgerber).
+  + correct a typo in _nc_baudrate() (patch by Christian Weisgerber,
+cf: 20061230).
+  + fix a few -Wlogical-op warnings.
+  + updated llib-l* files.
+
+---



Other differences:
--
++ ncurses-5.9-patches.tar.bz2 ++
 9792 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit ncurses for openSUSE:Factory

2013-12-11 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2013-12-11 16:52:11

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is ncurses

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2013-12-02 
17:02:03.0 +0100
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2013-12-11 
16:52:13.0 +0100
@@ -1,0 +2,8 @@
+Tue Dec 10 14:54:55 UTC 2013 - wer...@suse.de
+
+- Add ncurses patch 20131207
+  + add form_driver_w() entrypoint to wide-character forms library,
+as well as test program form_driver_w (adapted from patch by
+Gaute Hope).
+
+---



Other differences:
--
++ ncurses-5.9-patches.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/patches/ncurses-5.9-20131207.patch 
new/patches/ncurses-5.9-20131207.patch
--- old/patches/ncurses-5.9-20131207.patch  1970-01-01 01:00:00.0 
+0100
+++ new/patches/ncurses-5.9-20131207.patch  2013-12-10 15:53:49.0 
+0100
@@ -0,0 +1,691 @@
+# ncurses 5.9 - patch  - Thomas E. Dickey
+#
+# 
--
+#
+# Ncurses 5.9 is at
+#  ftp.gnu.org:/pub/gnu
+#
+# Patches for ncurses 5.9 are in the subdirectory
+#  ftp://invisible-island.net/ncurses/5.9
+#
+# 
--
+# ftp://invisible-island.net/ncurses/5.9/ncurses-5.9-20131207.patch.gz
+# patch by Thomas E. Dickey dic...@invisible-island.net
+# created  Sun Dec  8 01:49:22 UTC 2013
+# 
--
+# NEWS  |7 
+# dist.mk   |4 
+# form/form.h   |7 
+# form/frm_driver.c |  279 +++-
+# ncurses-5.9-20131207/test/form_driver_w.c |  155 +++
+# package/debian-mingw/changelog|4 
+# package/debian-mingw64/changelog  |4 
+# package/debian/changelog  |4 
+# package/mingw-ncurses.nsi |4 
+# package/mingw-ncurses.spec|2 
+# package/ncurses.spec  |2 
+# test/modules  |3 
+# test/programs |3 
+# 13 files changed, 460 insertions(+), 18 deletions(-)
+# 
--
+Index: NEWS
+Prereq:  1.2143 
+--- ncurses-5.9-20131123+/NEWS 2013-11-23 18:29:01.0 +
 ncurses-5.9-20131207/NEWS  2013-12-07 18:26:50.0 +
+@@ -25,7 +25,7 @@
+ -- sale, use or other dealings in this Software without prior written
--
+ -- authorization.
--
+ 
---
+--- $Id: NEWS,v 1.2143 2013/11/23 18:29:01 tom Exp $
++-- $Id: NEWS,v 1.2145 2013/12/07 18:26:50 tom Exp $
+ 
---
+ 
+ This is a log of changes that ncurses has gone through since Zeyd started
+@@ -45,6 +45,11 @@
+ Changes through 1.9.9e did not credit all contributions;
+ it is not possible to add this information.
+ 
++20131207
++  + add form_driver_w() entrypoint to wide-character forms library, as
++well as test program form_driver_w (adapted from patch by Gaute
++Hope).
++
+ 20131123
+   + minor fix for CF_GCC_WARNINGS to special-case options which are not
+ recognized by clang.
+Index: dist.mk
+Prereq:  1.959 
+--- ncurses-5.9-20131123+/dist.mk  2013-11-23 18:02:48.0 +
 ncurses-5.9-20131207/dist.mk   2013-12-07 15:21:58.0 +
+@@ -25,7 +25,7 @@
+ # use or other dealings in this Software without prior written   #
+ # authorization. #
+ ##
+-# $Id: dist.mk,v 1.959 2013/11/23 18:02:48 tom Exp $
++# $Id: dist.mk,v 1.960 2013/12/07 15:21:58 tom Exp $
+ # Makefile for creating ncurses distributions.
+ #
+ # This only needs to be used directly as a makefile by developers, but
+@@ -37,7 +37,7 @@
+ # These define the major/minor/patch versions of ncurses.
+ NCURSES_MAJOR = 5
+ NCURSES_MINOR = 9
+-NCURSES_PATCH = 20131123
++NCURSES_PATCH = 20131207
+ 
+ # We don't append the patch to the version, since this only applies 

commit ncurses for openSUSE:Factory

2013-12-02 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2013-12-02 17:02:02

Comparing /work/SRC/openSUSE:Factory/ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.ncurses.new (New)


Package is ncurses

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2013-10-01 
08:19:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2013-12-02 
17:02:03.0 +0100
@@ -1,0 +2,78 @@
+Fri Nov 29 12:55:49 UTC 2013 - wer...@suse.de
+
+- Add ncurses patch 20131123
+ + minor fix for CF_GCC_WARNINGS to special-case options which are not
+   recognized by clang.
+- Add ncurses patch 20131116
+  + add special case to configure script to move _XOPEN_SOURCE_EXTENDED 
+definition from CPPFLAGS to CFLAGS if it happens to be needed for
+Solaris, because g++ errors with that definition (report by
+Jean-Pierre Flori, Sage #15268).
+  + correct logic in infocmp's -i option which was intended to ignore
+strings which correspond to function-keys as candidates for piecing
+together initialization- or reset-strings.  The problem dates to
+1.9.7a, but was overlooked until changes in -Wlogical-op warnings for
+gcc 4.8 (report by David Binderman).
+  + updated CF_GCC_WARNINGS to documented options for gcc 4.9.0, adding
+checks for -Wextra, -Wignored-qualifiers and -Wlogical-op
+  + updated CF_GCC_WARNINGS to documented options for gcc 4.9.0, moving
+checks for -Wextra and -Wdeclaration-after-statement into the macro,
+and adding checks for -Wignored-qualifiers, -Wlogical-op and -Wvarargs
+  + updated CF_CURSES_UNCTRL_H and CF_SHARED_OPTS macros from ongoing
+work on cdk.
+- Add ncurses patch 20131110
+  + minor cleanup of terminfo.tail
+
+---
+Fri Nov 29 11:57:52 UTC 2013 - wer...@suse.de
+
+- On S390(x) use other fallback terminal types, that is have the
+  ibm327x and vt220 available even if no terminfo-base is installed.
+
+---
+Wed Nov  6 14:02:38 UTC 2013 - wer...@suse.de
+
+- Add ncurses patch 20131102
+  + use TS extension to describe xterm's title-escapes -TD
+  + modify terminator and nsterm-s to use xterm+sl-twm building block -TD
+  + simplify pfkey expression in ansi.sys -TD
+
+---
+Tue Oct 29 12:47:19 UTC 2013 - wer...@suse.de
+
+- Make it build even with new tar command
+- Add ncurses patch 20131027
+  + correct/simplify ifdef's for cur_term versus broken-linker and
+reentrant options (report by Jean-Pierre Flori, cf: 20090530).
+  + modify release/version combinations in test build-scripts to make
+them more consistent with other packages.
+- Add ncurses patch 20131019
+  + add nc_mingw.h to installed headers for MinGW port; needed for
+compiling ncurses-examples.
+  + add rpm-script for testing cross-compile of ncurses-examples.
+- Add ncurses patch 20131014
+  + fix new typo in CF_ADA_INCLUDE_DIRS macro (report by Roumen Petrov).
+- Add ncurses patch 20131012
+  + fix a few compiler warnings in progs and test.
+  + minor fix to package/debian-mingw/rules, do not strip dll's.
+  + minor fixes to configure script for empty $prefix, e.g., when doing
+cross-compiles to MinGW.
+  + add script for building test-packages of binaries cross-compiled to
+MinGW using NSIS.
+- Add ncurses patch 20131005
+  + minor fixes for ncurses-example package and makefile.
+  + add scripts for test-builds of cross-compiler packages for ncurses6
+to MinGW.
+- Add ncurses patch 20130928
+  + some build-fixes for ncurses-examples with NetBSD-6.0 curses, though
+it lacks some common functions such as use_env() which is not yet
+addressed.
+  + build-fix and some compiler warning fixes for ncurses-examples with
+OpenBSD 5.3
+  + fix a possible null-pointer reference in a trace message from newterm.
+  + quiet a few warnings from NetBSD 6.0 namespace pollution by
+nonstandard popcount() function in standard strings.h header.
+  + ignore g++ 4.2.1 warnings for -Weffc++ in c++/cursesmain.cc
+  + fix a few overlooked places for --enable-string-hacks option.
+
+---



Other differences:
--
++ ncurses.spec ++
--- /var/tmp/diff_new_pack.XpNIwD/_old  2013-12-02 17:02:04.0 +0100
+++ /var/tmp/diff_new_pack.XpNIwD/_new  2013-12-02 17:02:04.0 +0100
@@ -321,7 +321,11 @@
 
 test ! -f /.buildenv || . /.buildenv
OPATH=$PATH
+%ifarch s390x s390
   FALLBK=xterm,linux,vt100,vt102
+%else
+  FALLBK=xterm,ibm327x,vt100,vt102,vt220
+%endif
  CC=gcc
  

  1   2   >