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-06-13 18:44:43 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ncurses (Old) and /work/SRC/openSUSE:Factory/.ncurses.new.1981 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ncurses" Sat Jun 13 18:44:43 2026 rev:335 rq:1358852 version:unknown Changes: -------- --- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes 2026-06-10 15:48:00.063908094 +0200 +++ /work/SRC/openSUSE:Factory/.ncurses.new.1981/ncurses.changes 2026-06-13 18:44:56.731467264 +0200 @@ -1,0 +2,5 @@ +Thu Jun 11 13:30:32 UTC 2026 - Dr. Werner Fink <[email protected]> + +- Pre work for ABI 7 + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ncurses.spec ++++++ --- /var/tmp/diff_new_pack.oOZnsk/_old 2026-06-13 18:44:58.143526085 +0200 +++ /var/tmp/diff_new_pack.oOZnsk/_new 2026-06-13 18:44:58.147526253 +0200 @@ -473,9 +473,11 @@ OPATH=$PATH CC=gcc CXX=g++ - CFLAGS="${RPM_OPT_FLAGS} -pipe -D_REENTRANT" + CFLAGS="${RPM_OPT_FLAGS} -pipe" + CPPFLAGS="-D_REENTRANT" if [[ "$BUILD_BASENAME" = debug-* ]] ; then - CFLAGS="${CFLAGS} -g -DTRACE" + CFLAGS="${CFLAGS} -g" + CPPFLAGS="${CPPFLAGS} -DTRACE" fi echo -e 'int main() { return ((char)~1 > 0); }' | gcc -O2 -Wall -xc -o unsign - if ./unsign ; then @@ -488,7 +490,6 @@ cflags -Wl,--hash-size=8599 LDFLAGS cflags -Wl,--as-needed LDFLAGS CXXFLAGS=$CFLAGS - CPPFLAGS= include= for header in stddef.h limits.h do @@ -503,7 +504,7 @@ done if test -n "$include" then - CPPFLAGS="$include" + CPPFLAGS="${CPPFLAGS} ${include}" unset include fi test -n "$TERM" || TERM=linux @@ -626,6 +627,11 @@ for pthreads in t "" do test "$abi" = 5 -a -n "$pthreads" && continue || : + # commented out to get none threading libs + # test "$abi" = 6 -a -z "$pthreads" && continue || : + + # for ABI 7 only normal, wide, and wide threaded versions + test "$abi" = 7 -a -n "$pthreads" -a -z "$wide" && continue || : mkdir build.${wide}${pthreads}${abi} pushd build.${wide}${pthreads}${abi} @@ -644,12 +650,18 @@ test "$abi" = 6 -o "$abi" = 7 && \ echo --enable-opaque-curses --enable-opaque-form --enable-opaque-menu --enable-opaque-panel --enable-ext-mouse --enable-ext-colors || \ echo --disable-opaque-curses --disable-opaque-form --disable-opaque-menu --disable-opaque-panel --disable-ext-mouse --disable-ext-colors + test "$abi" = 7 && \ + echo --enable-ext-mouse2 # # If threaded then use pthreads and weak symbols as this avoids four different libraries # Side effect is that the the threaded libraries a binary incompatible with none threaded # + # NB: For ABI 7 use the full four library matrix + weak_symbols=--enable-weak-symbols + test "$abi" = 7 -a -n "$pthreads" && \ + weak_symbols="--disable-weak-symbols" test -n "$pthreads" && \ - echo --with-pthread --enable-pthreads-eintr --enable-reentrant --enable-weak-symbols || \ + echo --with-pthread --enable-pthreads-eintr --enable-reentrant $weak_symbols || \ echo --without-pthread --disable-pthreads-eintr --disable-reentrant --disable-weak-symbols test -n "$wide" && \ echo --enable-widec --enable-wattr-macros || \ @@ -696,6 +708,7 @@ export LD_LIBRARY_PATH=$PWD/lib/.build export BUILD_TIC=$PWD/progs/tic.build export BUILD_INFOCMP=$PWD/progs/infocmp.build + export tic_path=\$BUILD_TIC EOF pushd ncurses/ ln -sf ../../ncurses/tinfo . @@ -719,6 +732,7 @@ (cat > ${PWD}/.build_tic)<<-EOF export BUILD_TIC=/usr/bin/tic export BUILD_INFOCMP=/usr/bin/infocmp + export tic_path=\$BUILD_TIC EOF %endif else @@ -731,6 +745,7 @@ done done done + . ${PWD}/.build_tic pushd build.wt6 make install DESTDIR=%{root} includesubdir=/ncursesw @@ -819,6 +834,7 @@ %install LANG=C.UTF-8 export LANG + . ${PWD}/.build_tic make -C build.5 install.libs DESTDIR=%{buildroot} make -C build.w5 install.libs DESTDIR=%{buildroot} make -C build.6 install.libs DESTDIR=%{buildroot} libdir=%{_libdir}/ncurses6nt @@ -858,12 +874,12 @@ libncursesw*) rm -f ${lnk} echo '/* GNU ld script */' > ${lnk} - echo "INPUT(${lib} AS_NEEDED(-l%{soname_tinfo} -ldl %{?with_usepcre2:-lpcre2-posix -lpcre2-8}))" >> ${lnk} + echo "INPUT(${lib##*/} AS_NEEDED(-l%{soname_tinfo} -ldl %{?with_usepcre2:-lpcre2-posix -lpcre2-8}))" >> ${lnk} ;; libncurses*) rm -f ${lnk} echo '/* GNU ld script */' > ${lnk} - echo "INPUT(${lib} AS_NEEDED(-ltinfo -ldl %{?with_usepcre2:-lpcre2-posix -lpcre2-8}))" >> ${lnk} + echo "INPUT(${lib##*/} AS_NEEDED(-ltinfo -ldl %{?with_usepcre2:-lpcre2-posix -lpcre2-8}))" >> ${lnk} ;; *) ln -sf ${lib} %{buildroot}%{_libdir}/${model}.so esac @@ -888,12 +904,12 @@ libncursesw*) rm -f "${lnk}" echo '/* GNU ld script */' > ${lnk} - echo "INPUT(${lib} AS_NEEDED(-l%{soname_tinfo}))">> ${lnk} + echo "INPUT(${lib##*/} AS_NEEDED(-l%{soname_tinfo}))" >> ${lnk} ;; libncurses*) rm -f "${lnk}" echo '/* GNU ld script */' > ${lnk} - echo "INPUT(${lib} AS_NEEDED(-ltinfo))" >> ${lnk} + echo "INPUT(${lib##*/} AS_NEEDED(-ltinfo))" >> ${lnk} ;; libtinfo*) test -L "${lnk}" || continue @@ -920,13 +936,13 @@ rm -f ${lnk} echo '/* GNU ld script */' > ${lnk} echo 'SEARCH_DIR(%{_libdir}/ncurses5)' >> ${lnk} - echo "INPUT(${lib} AS_NEEDED(-l%{soname_tinfo}))">> ${lnk} + echo "INPUT(${lib##*/} AS_NEEDED(-l%{soname_tinfo}))" >> ${lnk} ;; libncurses*) rm -f ${lnk} echo '/* GNU ld script */' > ${lnk} echo 'SEARCH_DIR(%{_libdir}/ncurses5)' >> ${lnk} - echo "INPUT(${lib} AS_NEEDED(-ltinfo))" >> ${lnk} + echo "INPUT(${lib##*/} AS_NEEDED(-ltinfo))" >> ${lnk} ;; *) ln -sf ${lib} %{buildroot}%{_libdir}/ncurses5/${model}.so esac ++++++ ncurses-6.6.dif ++++++ --- /var/tmp/diff_new_pack.oOZnsk/_old 2026-06-13 18:44:58.267531252 +0200 +++ /var/tmp/diff_new_pack.oOZnsk/_new 2026-06-13 18:44:58.271531418 +0200 @@ -143,7 +143,7 @@ esac done --- configure -+++ configure 2026-06-01 07:30:08.225219676 +0000 ++++ configure 2026-06-11 11:52:34.770279002 +0000 @@ -8695,7 +8695,7 @@ echo $ECHO_N "checking for an rpath opti fi ;; @@ -173,7 +173,7 @@ test "x$with_pcre2" != xyes && cf_list_pcre2="$with_pcre2 $cf_lib_pcre2" cf_with_pcre2_ok=no for cf_with_pcre2 in $cf_list_pcre2 -@@ -29663,12 +29663,12 @@ cat >>$cf_edit_man <<CF_EOF +@@ -29663,12 +29670,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 -@@ -29678,7 +29678,7 @@ cat >>$cf_edit_man <<CF_EOF +@@ -29678,7 +29685,7 @@ cat >>$cf_edit_man <<CF_EOF CF_EOF else cat >>$cf_edit_man <<CF_EOF @@ -197,7 +197,7 @@ CF_EOF fi -@@ -29734,7 +29734,7 @@ cat >>$cf_edit_man <<CF_EOF +@@ -29734,7 +29741,7 @@ cat >>$cf_edit_man <<CF_EOF mv \$TMP.$cf_manpage_so_strip \$TMP fi fi @@ -206,7 +206,7 @@ CF_EOF fi -@@ -29743,31 +29743,31 @@ case "$MANPAGE_FORMAT" in +@@ -29743,31 +29750,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 -@@ -29777,7 +29777,7 @@ cat >>$cf_edit_man <<CF_EOF +@@ -29777,7 +29784,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 -@@ -29787,18 +29787,18 @@ CF_EOF +@@ -29787,18 +29794,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 -@@ -29818,9 +29818,9 @@ cat >>$cf_edit_man <<CF_EOF +@@ -29818,9 +29825,9 @@ cat >>$cf_edit_man <<CF_EOF ) ) elif test "\$verb" = removing ; then @@ -289,7 +289,7 @@ ) test -d "\$cf_subdir\${section}" && test -n "\$aliases" && ( -@@ -29841,6 +29841,7 @@ cat >>$cf_edit_man <<CF_EOF +@@ -29841,6 +29848,7 @@ cat >>$cf_edit_man <<CF_EOF # echo ".hy 0" cat \$TMP fi @@ -405,7 +405,7 @@ if [ $name = $MAIN_LIBRARY ] --- misc/terminfo.src -+++ misc/terminfo.src 2026-06-08 07:18:56.548795273 +0000 ++++ misc/terminfo.src 2026-06-11 09:39:47.857894792 +0000 @@ -305,7 +305,9 @@ dumb|80-column dumb tty, am, cols#80, @@ -442,7 +442,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, -@@ -5586,7 +5595,7 @@ xterm+88color2|xterm 88-color feature, +@@ -5584,7 +5593,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, @@ -451,7 +451,7 @@ xterm-88color|xterm with 88 colors, use=xterm+osc104, use=xterm+88color, use=xterm-256color, -@@ -5865,9 +5874,25 @@ xterm-noapp|xterm with cursor keys in no +@@ -5863,9 +5872,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, @@ -478,7 +478,7 @@ # This entry assumes that xterm's handling of VT100 SI/SO is disabled by # setting the vt100Graphics resource to false. -@@ -6325,7 +6350,7 @@ xterms-sun|small (80x24) xterm with sunF +@@ -6323,7 +6348,7 @@ xterms-sun|small (80x24) xterm with sunF #### GNOME (VTE) # this describes the alpha-version of GNOME terminal shipped with Redhat 6.0 @@ -487,7 +487,7 @@ bce, kdch1=^?, use=linux+kbs, use=vt100+pf1-pf4, use=xterm-color, -@@ -6614,11 +6639,15 @@ mgt|Multi GNOME Terminal, +@@ -6612,11 +6637,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). @@ -504,7 +504,7 @@ # Konsole 1.0.1 (2001/11/25) # (formerly known as kvt) # -@@ -6901,7 +6930,7 @@ mlterm3|multi lingual terminal emulator +@@ -6899,7 +6928,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, @@ -513,7 +513,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, -@@ -6979,7 +7008,7 @@ rxvt-basic|rxvt terminal base (X Window +@@ -6977,7 +7006,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, @@ -522,7 +522,7 @@ use=vt220+cvis, use=vt100+keypad, # Key Codes from rxvt reference: -@@ -7065,6 +7094,7 @@ rxvt-basic|rxvt terminal base (X Window +@@ -7063,6 +7092,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~, @@ -530,7 +530,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\^, -@@ -7147,6 +7177,38 @@ rxvt-cygwin-native|rxvt terminal emulato +@@ -7145,6 +7175,38 @@ rxvt-cygwin-native|rxvt terminal emulato \302x\263y\363z\362{\343|\330~\376, use=rxvt-cygwin, @@ -569,7 +569,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, -@@ -8816,7 +8878,7 @@ pty|4bsd pseudo teletype, +@@ -8814,7 +8876,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 @@ -578,7 +578,7 @@ am, mir, xenl, cols#80, lines#24, bel=^G, bold=\E[1m, cr=\r, csr=\E[%i%p1%d;%p2%dr, cub1=^H, -@@ -8825,6 +8887,13 @@ eterm|GNU Emacs term.el terminal emulati +@@ -8823,6 +8885,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, @@ -592,7 +592,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, -@@ -9092,6 +9161,8 @@ screen.xterm-new|screen customized for m +@@ -9090,6 +9159,8 @@ screen.xterm-new|screen customized for m # Don't use this, because not everyone has "screen.xterm-new": #:screen.xterm|screen for modern xterm, #: use=screen.xterm-new, @@ -601,7 +601,7 @@ # xterm-r6 does not really support khome/kend unless it is propped up by # the translations resource. -@@ -9186,7 +9257,7 @@ screen-w|VT 100/ANSI X3.64 virtual termi +@@ -9184,7 +9255,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, @@ -610,7 +610,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, -@@ -11128,7 +11199,7 @@ hp700-wy|HP 700/41 emulating Wyse30, +@@ -11126,7 +11197,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, @@ -619,7 +619,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, -@@ -18589,7 +18660,7 @@ ibm3101|i3101|IBM 3101-10, +@@ -18587,7 +18658,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, @@ -628,7 +628,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 -@@ -18824,7 +18895,7 @@ lft|lft-pc850|LFT-PC850|IBM LFT PC850 De +@@ -18822,7 +18893,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.
