Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ncurses for openSUSE:Factory checked in at 2026-01-08 15:25:19 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ncurses (Old) and /work/SRC/openSUSE:Factory/.ncurses.new.1928 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ncurses" Thu Jan 8 15:25:19 2026 rev:318 rq:1325791 version:unknown Changes: -------- --- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes 2025-12-24 13:17:01.252216216 +0100 +++ /work/SRC/openSUSE:Factory/.ncurses.new.1928/ncurses.changes 2026-01-08 15:25:23.595992722 +0100 @@ -1,0 +2,44 @@ +Wed Jan 7 12:46:32 UTC 2026 - Dr. Werner Fink <[email protected]> + +- Add ncurses patch 20251231 + + amend fix for Windows-style pathnames to eliminate "./" in comment + generated by infocmp where not needed (report by Sven Joachim). + + fix a few gcc 15.2 warnings for C23 + + actually generate doc/html/announce.html (report by Branden Robinson) +- Add ncurses patch 20260103 + + cancel ncv in putty (patch by Jakub Horky) + + add NQ to list of user-definable capabilities in user_caps(5) (patch + by Jakub Horky) + + update ncurses/wcwidth.c, for MinGW ports, from xterm. +- Update to ncurses 6.6 (patch 20251230) + + update announcement + + corrected an ifdef needed for mouse support in MinGW/Windows + + eliminate remaining duplicate code between MinGW/Windows drivers +- Update to tack-1.11-20251210 + * package/debian/changelog, package/tack.spec, tack.h: bump + * edit.c: gcc warning 0 vs NULL + * tackcfg.h: + build-fix: term.h no longer exports termios.h definitions (Debian #1122485) + * tack.h: use noreturn, if possible + * tackgen.c, tack.c, pad.c, sync.c, output.c, modes.c, crum.c, edit.c, + fun.c, init.c, menu.c, ansi.c, charset.c, color.c, control.c, tack.h: + fixes for gcc15 -Wzero-as-null-pointer-constant +- Port and rename patch ncurses-6.4.dif which is now ncurses-6.6.dif +- Port patches + * ncurses-5.9-ibm327x.dif + * ncurses-6.5-ghostty.dif + +------------------------------------------------------------------- +Wed Jan 7 11:59:03 UTC 2026 - Dr. Werner Fink <[email protected]> + +- Add ncurses patch 20251227 + + make win32_curses.h obsolete in favor of nc_win32.h + + modify MinGW32 configuration to account for its use of Windows-style + pathnames in filesystem checks. + + replace --enable-exp-win32 option with --enable-named-pipes +- Add ncurses patch 20251220 + > in-progress work to merge MinGW/Windows port. + + eliminate EXP_WIN32_DRIVER with USE_NAMED_PIPES + + change MS_TERMINAL to DEFAULT_TERM_VAR + +------------------------------------------------------------------- Old: ---- ncurses-6.4.dif ncurses-6.5-patches.tar.bz2 ncurses-6.5.tar.gz ncurses-6.5.tar.gz.asc tack-1.11-20250503.tgz tack-1.11-20250503.tgz.asc New: ---- ncurses-6.6-patches.tar.bz2 ncurses-6.6.dif ncurses-6.6.tar.gz ncurses-6.6.tar.gz.asc tack-1.11-20251210.tgz tack-1.11-20251210.tgz.asc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ncurses.spec ++++++ --- /var/tmp/diff_new_pack.45GwSp/_old 2026-01-08 15:25:28.504195207 +0100 +++ /var/tmp/diff_new_pack.45GwSp/_new 2026-01-08 15:25:28.516195702 +0100 @@ -1,7 +1,7 @@ # # spec file for package ncurses # -# Copyright (c) 2025 SUSE LLC and contributors +# Copyright (c) 2026 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -43,9 +43,9 @@ %endif %global patchlvl %(bash %{_sourcedir}/get_version_number.sh %{_sourcedir}) -%global basevers 6.5 +%global basevers 6.6 %global tackvers 1.11 -%global tacklvl 20250503 +%global tacklvl 20251210 Name: ncurses #!BuildIgnore: terminfo @@ -84,7 +84,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.5.%{patchlvl} +Version: %{basevers}.%{patchlvl} Release: 0 Summary: Terminal control library #Git: http://ncurses.scripts.mit.edu @@ -107,7 +107,7 @@ Source12: ncursesnt Source42: termerase.c Source43: termerase.1 -Patch0: ncurses-6.4.dif +Patch0: ncurses-6.6.dif Patch1: ncurses-5.9-ibm327x.dif Patch2: ncurses-5.7-tack.dif Patch3: FORTIFY_SOURCE_3-fix.patch ++++++ get_version_number.sh ++++++ --- /var/tmp/diff_new_pack.45GwSp/_old 2026-01-08 15:25:29.356230357 +0100 +++ /var/tmp/diff_new_pack.45GwSp/_new 2026-01-08 15:25:29.384231512 +0100 @@ -3,7 +3,8 @@ sourcedir=$1 test -n "${sourcedir}" || sourcedir=$PWD test -e ${sourcedir}/ncurses.spec || exit 1 -version=$(sed -rn '/^Version:[[:space:]]+/{s/^Version:[[:space:]]+([0-9]+\.[0-9]+)(\.[^\.]+)?/\1/p}' ${sourcedir}/ncurses.spec) || exit 1 +basevers=$(sed -rn '/^%global[[:space:]]+basevers/{s/^%global[[:space:]]+basevers[[:space:]]+([0-9]+\.[0-9]+)/\1/p}' ${sourcedir}/ncurses.spec) || exit 1 +version=$(sed -rn "/^Version:[[:space:]]+/{s/^Version:[[:space:]]+%\{basevers\}\.%\{patchlvl\}/${basevers}/p}" ${sourcedir}/ncurses.spec) || exit 1 test -e ${sourcedir}/ncurses-${version}.tar.gz || exit 1 last=($(tar Oxf ${sourcedir}/ncurses-${version}.tar.gz ncurses-${version}/VERSION)) || exit 1 test -e ${sourcedir}/ncurses-${version}-patches.tar.bz2 || echo ${last[2]} ++++++ ncurses-5.9-ibm327x.dif ++++++ --- /var/tmp/diff_new_pack.45GwSp/_old 2026-01-08 15:25:29.628241579 +0100 +++ /var/tmp/diff_new_pack.45GwSp/_new 2026-01-08 15:25:29.660242899 +0100 @@ -22,7 +22,7 @@ use=ansi+local, use=ansi+rca, use=linux+sfkeys, use=vt100+pf1-pf4, use=vt220+ufkeys, use=vt220+pcedit, -@@ -18307,7 +18307,19 @@ hazel|exec80|h80|he80|Hazeltine Executiv +@@ -18310,7 +18310,19 @@ hazel|exec80|h80|he80|Hazeltine Executiv ibm327x|line mode IBM 3270 style, gn, ++++++ ncurses-6.5-ghostty.dif ++++++ --- /var/tmp/diff_new_pack.45GwSp/_old 2026-01-08 15:25:29.788248179 +0100 +++ /var/tmp/diff_new_pack.45GwSp/_new 2026-01-08 15:25:29.824249665 +0100 @@ -7,7 +7,7 @@ --- misc/terminfo.src +++ misc/terminfo.src 2025-01-13 08:43:20.312926680 +0000 -@@ -8593,7 +8593,7 @@ contour-direct|Contour terminal with dir +@@ -8596,7 +8596,7 @@ contour-direct|Contour terminal with dir # # The developers set "Tc" in their terminal description to hint that it # supports direct-colors, but the feature did not work with this version -TD ++++++ ncurses-6.5-patches.tar.bz2 -> ncurses-6.6-patches.tar.bz2 ++++++ ++++ 1660 lines of diff (skipped) ++++++ ncurses-6.4.dif -> ncurses-6.6.dif ++++++ --- /work/SRC/openSUSE:Factory/ncurses/ncurses-6.4.dif 2025-12-24 13:16:59.256133756 +0100 +++ /work/SRC/openSUSE:Factory/.ncurses.new.1928/ncurses-6.6.dif 2026-01-08 15:25:22.231936449 +0100 @@ -17,8 +17,8 @@ 15 files changed, 188 insertions(+), 64 deletions(-) --- aclocal.m4 -+++ aclocal.m4 2025-11-17 08:25:40.426919217 +0000 -@@ -6224,12 +6224,12 @@ cat >>$cf_edit_man <<CF_EOF ++++ aclocal.m4 2026-01-07 12:00:47.828917432 +0000 +@@ -6229,12 +6229,12 @@ cat >>$cf_edit_man <<CF_EOF echo "? missing rename for \$cf_source" cf_target="\$cf_source" fi @@ -33,7 +33,7 @@ sed -f "$cf_man_alias" \\ CF_EOF -@@ -6239,7 +6239,7 @@ cat >>$cf_edit_man <<CF_EOF +@@ -6244,7 +6244,7 @@ cat >>$cf_edit_man <<CF_EOF CF_EOF else cat >>$cf_edit_man <<CF_EOF @@ -42,7 +42,7 @@ CF_EOF fi -@@ -6295,7 +6295,7 @@ cat >>$cf_edit_man <<CF_EOF +@@ -6300,7 +6300,7 @@ cat >>$cf_edit_man <<CF_EOF mv \$TMP.$cf_manpage_so_strip \$TMP fi fi @@ -51,7 +51,7 @@ CF_EOF fi -@@ -6304,31 +6304,31 @@ case "$MANPAGE_FORMAT" in +@@ -6309,31 +6309,31 @@ case "$MANPAGE_FORMAT" in cat >>$cf_edit_man <<CF_EOF if test "\$form" = format ; then # BSDI installs only .0 suffixes in the cat directories @@ -90,7 +90,7 @@ for cf_alias in \$aliases do if test "\$section" = 1 ; then -@@ -6338,7 +6338,7 @@ cat >>$cf_edit_man <<CF_EOF +@@ -6343,7 +6343,7 @@ cat >>$cf_edit_man <<CF_EOF if test "$MANPAGE_SYMLINKS" = yes ; then if test -f "\$cf_alias\${suffix}" ; then @@ -99,7 +99,7 @@ then continue fi -@@ -6348,18 +6348,18 @@ CF_EOF +@@ -6353,18 +6353,18 @@ CF_EOF case "x$LN_S" in (*-f) cat >>$cf_edit_man <<CF_EOF @@ -121,7 +121,7 @@ echo ".so \$cf_source" >\$TMP CF_EOF if test -n "$cf_manpage_compress" ; then -@@ -6379,9 +6379,9 @@ cat >>$cf_edit_man <<CF_EOF +@@ -6384,9 +6384,9 @@ cat >>$cf_edit_man <<CF_EOF ) ) elif test "\$verb" = removing ; then @@ -134,7 +134,7 @@ ) test -d "\$cf_subdir\${section}" && test -n "\$aliases" && ( -@@ -6402,6 +6402,7 @@ cat >>$cf_edit_man <<CF_EOF +@@ -6407,6 +6407,7 @@ cat >>$cf_edit_man <<CF_EOF # echo ".hy 0" cat \$TMP fi @@ -143,8 +143,8 @@ esac done --- configure -+++ configure 2025-11-17 08:25:40.430919144 +0000 -@@ -6764,7 +6764,7 @@ echo $ECHO_N "checking for an rpath opti ++++ configure 2026-01-07 12:00:47.832917358 +0000 +@@ -6765,7 +6765,7 @@ echo $ECHO_N "checking for an rpath opti fi ;; (linux*|gnu*|k*bsd*-gnu|freebsd*) @@ -153,7 +153,7 @@ ;; (openbsd[2-9].*|mirbsd*) LD_RPATH_OPT="-Wl,-rpath," -@@ -7137,8 +7137,8 @@ echo "${ECHO_T}$cf_cv_ldflags_search_pat +@@ -7138,8 +7138,8 @@ echo "${ECHO_T}$cf_cv_ldflags_search_pat else cf_cv_shared_soname='`basename $@`' fi @@ -164,7 +164,7 @@ ;; (mingw*msvc*) cf_cv_shlib_version=msvcdll -@@ -8387,7 +8387,7 @@ echo "${ECHO_T}$with_pcre2" >&6 +@@ -8388,7 +8388,7 @@ echo "${ECHO_T}$with_pcre2" >&6 if test "x$with_pcre2" != xno ; then cf_with_pcre2_ok=no @@ -173,7 +173,7 @@ do if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "$cf_with_pcre2"; then -@@ -29560,12 +29560,12 @@ cat >>$cf_edit_man <<CF_EOF +@@ -29603,12 +29603,12 @@ cat >>$cf_edit_man <<CF_EOF echo "? missing rename for \$cf_source" cf_target="\$cf_source" fi @@ -188,7 +188,7 @@ sed -f "$cf_man_alias" \\ CF_EOF -@@ -29575,7 +29575,7 @@ cat >>$cf_edit_man <<CF_EOF +@@ -29618,7 +29618,7 @@ cat >>$cf_edit_man <<CF_EOF CF_EOF else cat >>$cf_edit_man <<CF_EOF @@ -197,7 +197,7 @@ CF_EOF fi -@@ -29631,7 +29631,7 @@ cat >>$cf_edit_man <<CF_EOF +@@ -29674,7 +29674,7 @@ cat >>$cf_edit_man <<CF_EOF mv \$TMP.$cf_manpage_so_strip \$TMP fi fi @@ -206,7 +206,7 @@ CF_EOF fi -@@ -29640,31 +29640,31 @@ case "$MANPAGE_FORMAT" in +@@ -29683,31 +29683,31 @@ case "$MANPAGE_FORMAT" in cat >>$cf_edit_man <<CF_EOF if test "\$form" = format ; then # BSDI installs only .0 suffixes in the cat directories @@ -245,7 +245,7 @@ for cf_alias in \$aliases do if test "\$section" = 1 ; then -@@ -29674,7 +29674,7 @@ cat >>$cf_edit_man <<CF_EOF +@@ -29717,7 +29717,7 @@ cat >>$cf_edit_man <<CF_EOF if test "$MANPAGE_SYMLINKS" = yes ; then if test -f "\$cf_alias\${suffix}" ; then @@ -254,7 +254,7 @@ then continue fi -@@ -29684,18 +29684,18 @@ CF_EOF +@@ -29727,18 +29727,18 @@ CF_EOF case "x$LN_S" in (*-f) cat >>$cf_edit_man <<CF_EOF @@ -276,7 +276,7 @@ echo ".so \$cf_source" >\$TMP CF_EOF if test -n "$cf_manpage_compress" ; then -@@ -29715,9 +29715,9 @@ cat >>$cf_edit_man <<CF_EOF +@@ -29758,9 +29758,9 @@ cat >>$cf_edit_man <<CF_EOF ) ) elif test "\$verb" = removing ; then @@ -289,7 +289,7 @@ ) test -d "\$cf_subdir\${section}" && test -n "\$aliases" && ( -@@ -29738,6 +29738,7 @@ cat >>$cf_edit_man <<CF_EOF +@@ -29781,6 +29781,7 @@ cat >>$cf_edit_man <<CF_EOF # echo ".hy 0" cat \$TMP fi @@ -416,7 +416,7 @@ if [ $name = $MAIN_LIBRARY ] --- misc/terminfo.src -+++ misc/terminfo.src 2025-07-21 06:56:42.699837065 +0000 ++++ misc/terminfo.src 2026-01-07 12:21:21.933974400 +0000 @@ -305,7 +305,9 @@ dumb|80-column dumb tty, am, cols#80, @@ -453,7 +453,7 @@ sgr=\E[0;10%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p5 %t;2%;%?%p6%t;1%;m%?%p9%t\016%e\017%;, sgr0=\E[m\017, smacs=^N, use=linux2.2, -@@ -5484,7 +5493,7 @@ xterm+88color2|xterm 88-color feature, +@@ -5487,7 +5496,7 @@ xterm+88color2|xterm 88-color feature, # These variants of XFree86 3.9.16 xterm are built as a configure option. xterm-256color|xterm with 256 colors, @@ -462,7 +462,7 @@ xterm-88color|xterm with 88 colors, use=xterm+osc104, use=xterm+88color, use=xterm-256color, -@@ -5750,9 +5759,25 @@ xterm-noapp|xterm with cursor keys in no +@@ -5753,9 +5762,25 @@ xterm-noapp|xterm with cursor keys in no xterm-24|vs100|xterms|xterm terminal emulator 24-line (X Window System), lines#24, use=xterm-old, @@ -489,7 +489,7 @@ # This entry assumes that xterm's handling of VT100 SI/SO is disabled by # setting the vt100Graphics resource to false. -@@ -6206,7 +6231,7 @@ xterms-sun|small (80x24) xterm with sunF +@@ -6209,7 +6234,7 @@ xterms-sun|small (80x24) xterm with sunF #### GNOME (VTE) # this describes the alpha-version of GNOME terminal shipped with Redhat 6.0 @@ -498,7 +498,7 @@ bce, kdch1=^?, use=linux+kbs, use=vt100+pf1-pf4, use=xterm-color, -@@ -6495,11 +6520,15 @@ mgt|Multi GNOME Terminal, +@@ -6498,11 +6523,15 @@ 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). @@ -515,7 +515,7 @@ # Konsole 1.0.1 (2001/11/25) # (formerly known as kvt) # -@@ -6755,7 +6784,7 @@ mlterm3|multi lingual terminal emulator +@@ -6758,7 +6787,7 @@ mlterm3|multi lingual terminal emulator mlterm2|multi lingual terminal emulator 2.x, am, eslok, km, mc5i, mir, msgr, npc, xenl, XT, colors#8, cols#80, lines#24, pairs#64, @@ -524,7 +524,7 @@ bel=^G, bold=\E[1m, clear=\E[H\E[2J, cr=\r, cub1=^H, cud1=\n, dch=\E[%p1%dP, dch1=\E[P, ech=\E[%p1%dX, ed=\E[J, el=\E[K, el1=\E[1K, enacs=, ich=\E[%p1%d@, ind=\n, -@@ -6833,7 +6862,7 @@ rxvt-basic|rxvt terminal base (X Window +@@ -6836,7 +6865,7 @@ rxvt-basic|rxvt terminal base (X Window sgr0=\E[0m\017, smir=\E[4h, smkx=\E=, smul=\E[4m, use=ecma+underline, use=ecma+standout, use=ansi+csr, use=ansi+idl, use=ansi+local, use=xterm+alt47, @@ -533,7 +533,7 @@ use=vt220+cvis, use=vt220+keypad, # Key Codes from rxvt reference: -@@ -6919,6 +6948,7 @@ rxvt-basic|rxvt terminal base (X Window +@@ -6922,6 +6951,7 @@ rxvt-basic|rxvt terminal base (X Window rxvt+pcfkeys|rxvt fragment for PC-style fkeys, kDC=\E[3$, kEND=\E[8$, kHOM=\E[7$, kIC=\E[2$, kLFT=\E[d, kNXT=\E[6$, kPRV=\E[5$, kRIT=\E[c, kel=\E[8\^, kend=\E[8~, @@ -541,7 +541,7 @@ kf21=\E[23$, kf22=\E[24$, kf23=\E[11\^, kf24=\E[12\^, kf25=\E[13\^, kf26=\E[14\^, kf27=\E[15\^, kf28=\E[17\^, kf29=\E[18\^, kf30=\E[19\^, kf31=\E[20\^, kf32=\E[21\^, -@@ -7001,6 +7031,38 @@ rxvt-cygwin-native|rxvt terminal emulato +@@ -7004,6 +7034,38 @@ rxvt-cygwin-native|rxvt terminal emulato \302x\263y\363z\362{\343|\330~\376, use=rxvt-cygwin, @@ -580,7 +580,7 @@ # This variant is supposed to work with rxvt 2.7.7 when compiled with # NO_BRIGHTCOLOR defined. rxvt needs more work... rxvt-16color|rxvt with 16 colors like aixterm, -@@ -8595,7 +8657,7 @@ pty|4bsd pseudo teletype, +@@ -8598,7 +8660,7 @@ pty|4bsd pseudo teletype, # https://github.com/emacs-mirror/emacs/blob/master/lisp/term.el # # The codes supported by the term.el terminal emulation in GNU Emacs 19.30 @@ -589,7 +589,7 @@ am, mir, xenl, cols#80, lines#24, bel=^G, bold=\E[1m, cr=\r, csr=\E[%i%p1%d;%p2%dr, cub1=^H, -@@ -8604,6 +8666,13 @@ eterm|GNU Emacs term.el terminal emulati +@@ -8607,6 +8669,13 @@ eterm|GNU Emacs term.el terminal emulati smir=\E[4h, use=ansi+cpr, use=ansi+cup, use=ansi+erase, use=ansi+idl, use=ansi+local, use=ansi+sgrso, use=ansi+sgrul, use=xterm+alt47, @@ -603,7 +603,7 @@ # The codes supported by the term.el terminal emulation in GNU Emacs 22.2 eterm-color|Emacs term.el terminal emulator term-protocol-version 0.96, -@@ -8843,11 +8912,18 @@ screen.xterm-xfree86|screen.xterm-new|sc +@@ -8846,11 +8915,18 @@ screen.xterm-xfree86|screen.xterm-new|sc E3@, use=screen+italics, use=screen+fkeys, use=xterm+x11mouse, use=ecma+index, use=ansi+rep, use=ecma+strikeout, use=xterm+pcfkeys, @@ -623,7 +623,7 @@ # xterm-r6 does not really support khome/kend unless it is propped up by # the translations resource. -@@ -8932,7 +9008,7 @@ screen-w|VT 100/ANSI X3.64 virtual termi +@@ -8935,7 +9011,7 @@ screen-w|VT 100/ANSI X3.64 virtual termi screen2|VT 100/ANSI X3.64 virtual terminal (old 2.x), cols#80, lines#24, clear=\E[2J\E[H, cr=\r, cub1=^H, cup=\E[%i%p1%d;%p2%dH, @@ -632,7 +632,7 @@ kf2=\ET, kf3=\EU, kf4=\EV, kf5=\EW, kf6=\EP, kf7=\EQ, kf8=\ER, kf9=\E0I, khome=\EH, nel=\r\n, rc=\E8, ri=\EM, rmso=\E[23m, rs1=\Ec, sc=\E7, sgr0=\E[m, smso=\E[3m, use=ecma+underline, -@@ -10866,7 +10942,7 @@ hp700-wy|HP 700/41 emulating Wyse30, +@@ -10869,7 +10945,7 @@ hp700-wy|HP 700/41 emulating Wyse30, ri=\Ej, rmir=\Er, rmso=\EG0$<10/>, rmul=\EG0$<10/>, sgr0=\EG0$<10/>, smir=\Eq, smso=\EG4$<10/>, smul=\EG8$<10/>, tbc=\E0, vpa=\E[%p1%{32}%+%c, @@ -641,7 +641,7 @@ am, da, db, xhp, cols#80, lh#2, lines#24, lm#0, lw#8, nlab#8, acsc=0cjgktlrmfn/q\,t5u6v8w7x., bel=^G, blink=\E&dA, -@@ -18328,7 +18404,7 @@ ibm3101|i3101|IBM 3101-10, +@@ -18331,7 +18407,7 @@ ibm3101|i3101|IBM 3101-10, cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, ed=\EJ, el=\EI, home=\EH, hts=\E0, ind=\n, nel=\r\n, tbc=\EH, use=vt52+arrows, @@ -650,7 +650,7 @@ is2=\E S, rmacs=\E>B, rs2=\E S, sgr=\E4%{64}%?%p1%t%{65}%|%;%?%p2%t%{66}%|%;%?%p3%t%{65}%|%; %?%p4%t%{68}%|%;%?%p5%t%{64}%|%;%?%p6%t%{72}%|%;%?%p7%t -@@ -18563,7 +18639,7 @@ lft|lft-pc850|LFT-PC850|IBM LFT PC850 De +@@ -18566,7 +18642,7 @@ lft|lft-pc850|LFT-PC850|IBM LFT PC850 De # "Megapel" refers to the display adapter, which was used with the IBM RT # aka IBM 6150. ++++++ ncurses-6.5.tar.gz -> ncurses-6.6.tar.gz ++++++ ++++ 178665 lines of diff (skipped) ++++++ tack-1.11-20250503.tgz -> tack-1.11-20251210.tgz ++++++ ++++ 7839 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.11-20250503/CHANGES new/tack-1.11-20251210/CHANGES --- old/tack-1.11-20250503/CHANGES 2025-05-03 19:34:24.000000000 +0200 +++ new/tack-1.11-20251210/CHANGES 2025-12-11 01:32:22.000000000 +0100 @@ -1,3 +1,26 @@ +2025-12-10 Thomas E. Dickey <[email protected]> + + * package/debian/changelog, package/tack.spec, tack.h: bump + + * edit.c: gcc warning 0 vs NULL + + * tackcfg.h: + build-fix: term.h no longer exports termios.h definitions (Debian #1122485) + +2025-11-11 Thomas E. Dickey <[email protected]> + + * configure: regen + + * aclocal.m4: resync with my-autoconf + +2025-07-09 Thomas E. Dickey <[email protected]> + + * config.guess, config.sub: update to 2025-07-10 + +2025-06-08 Thomas E. Dickey <[email protected]> + + * install-sh: fix license + 2025-05-03 Thomas E. Dickey <[email protected]> * sysdep.c: increase regex buffer-size @@ -66,6 +89,8 @@ * tack.1: bump + * tack.1: update header + * init.c: add XR/xr and RV/rv optionally to the initial screen * tack.c: formatting 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.11-20250503/edit.c new/tack-1.11-20251210/edit.c --- old/tack-1.11-20250503/edit.c 2025-04-27 22:45:33.000000000 +0200 +++ new/tack-1.11-20251210/edit.c 2025-12-11 01:21:20.000000000 +0100 @@ -24,7 +24,7 @@ #include <tack.h> -MODULE_ID("$Id: edit.c,v 1.53 2025/04/27 20:45:33 tom Exp $") +MODULE_ID("$Id: edit.c,v 1.54 2025/12/11 00:21:20 tom Exp $") /* * These are adapted from tic.h @@ -170,7 +170,7 @@ static NAME_TABLE const * find_cap_by_index(int capIndex, NAME_TYPE capType) { - static NAME_TABLE const *result = 0; + static NAME_TABLE const *result = NULL; size_t n; alloc_name_table(); @@ -247,9 +247,9 @@ static char * get_newer_string(int num) { - char *result = 0; + char *result = NULL; const NAME_TABLE *p = find_cap_by_index(num, STRING); - if (p != 0) + if (p != NULL) result = tigetstr((NCURSES_CONST char *) p->nt_name); return result; } 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.11-20250503/package/debian/changelog new/tack-1.11-20251210/package/debian/changelog --- old/tack-1.11-20250503/package/debian/changelog 2025-05-03 15:08:44.000000000 +0200 +++ new/tack-1.11-20251210/package/debian/changelog 2025-12-11 01:32:22.000000000 +0100 @@ -1,3 +1,9 @@ +tack (1.11+20251210) unstable; urgency=low + + * maintenance updates + + -- Thomas E. Dickey <[email protected]> Wed, 10 Dec 2025 19:32:22 -0500 + tack (1.11+20250503) unstable; urgency=low * maintenance updates 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.11-20250503/package/tack.spec new/tack-1.11-20251210/package/tack.spec --- old/tack-1.11-20250503/package/tack.spec 2025-05-03 15:08:44.000000000 +0200 +++ new/tack-1.11-20251210/package/tack.spec 2025-12-11 01:32:22.000000000 +0100 @@ -1,9 +1,9 @@ Summary: terminfo action checker %global AppProgram tack %global AppVersion 1.11 -%global AppPatched 20250503 +%global AppPatched 20251210 %global MySite https://invisible-island.net -# $XTermId: tack.spec,v 1.38 2025/05/03 13:08:44 tom Exp $ +# $XTermId: tack.spec,v 1.39 2025/12/11 00:32:22 tom Exp $ Name: %{AppProgram} Version: %{AppVersion} Release: %{AppPatched} @@ -55,8 +55,11 @@ %changelog # each patch should add its ChangeLog entries here +* Wed Dec 10 2025 Thomas E. Dickey +- testing tack 1.11-20251210 + * Wed Jul 26 2017 Thomas Dickey - use system-defined build-flags +- use system-defined build-flags * Sat Sep 04 2010 Thomas Dickey - initial version 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.11-20250503/tack.1 new/tack-1.11-20251210/tack.1 --- old/tack-1.11-20250503/tack.1 2025-04-27 18:51:28.000000000 +0200 +++ new/tack-1.11-20251210/tack.1 2025-04-27 18:51:28.000000000 +0200 @@ -27,8 +27,8 @@ .\" authorization. * .\"*************************************************************************** .\" -.\" $Id: tack.1,v 1.13 2025/04/27 16:51:28 tom Exp $ -.TH tack 1 2024-04-30 "terminfo action checker" "User commands" +.\" $Id: tack.1,v 1.14 2025/04/27 16:51:28 tom Exp $ +.TH tack 1 2025-04-27 "terminfo action checker" "User commands" .ds n 5 . .ie \n(.g \{\ 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.11-20250503/tack.h new/tack-1.11-20251210/tack.h --- old/tack-1.11-20250503/tack.h 2025-05-03 15:08:44.000000000 +0200 +++ new/tack-1.11-20251210/tack.h 2025-12-11 01:32:22.000000000 +0100 @@ -19,7 +19,7 @@ ** Boston, MA 02110-1301, USA */ -/* $Id: tack.h,v 1.108 2025/05/03 13:08:44 tom Exp $ */ +/* $Id: tack.h,v 1.109 2025/12/11 00:32:22 tom Exp $ */ #ifndef NCURSES_TACK_H_incl #define NCURSES_TACK_H_incl 1 @@ -28,7 +28,7 @@ #define MAJOR_VERSION 1 #define MINOR_VERSION 11 -#define PATCH_VERSION 20250503 +#define PATCH_VERSION 20251210 #include <tackcfg.h> 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.11-20250503/tackcfg.h new/tack-1.11-20251210/tackcfg.h --- old/tack-1.11-20250503/tackcfg.h 2025-04-27 22:43:21.000000000 +0200 +++ new/tack-1.11-20251210/tackcfg.h 2025-12-11 01:15:40.000000000 +0100 @@ -18,7 +18,7 @@ ** Boston, MA 02110-1301, USA */ -/* $Id: tackcfg.h,v 1.1 2025/04/27 20:43:21 tom Exp $ */ +/* $Id: tackcfg.h,v 1.2 2025/12/11 00:15:40 tom Exp $ */ #ifndef TACK_CFG_H_incl #define TACK_CFG_H_incl 1 @@ -80,15 +80,18 @@ #include <string.h> #include <signal.h> /* include before curses.h to work around glibc bug */ -#include <curses.h> - #if defined(NCURSES_VERSION) && defined(HAVE_TERM_ENTRY_H) -#include <term_entry.h> +#include <term_entry.h> /* this includes curses.h and term.h */ #define TACK_CAN_EDIT 1 #else #define TACK_CAN_EDIT 0 +#include <curses.h> #include <term.h> +#endif + #include <termios.h> + +#ifndef GET_TTY #define TTY struct termios #define TERMIOS 1 #define GET_TTY(fd, buf) tcgetattr(fd, buf)
