Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package minicom for openSUSE:Factory checked in at 2023-10-22 21:01:55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/minicom (Old) and /work/SRC/openSUSE:Factory/.minicom.new.1945 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "minicom" Sun Oct 22 21:01:55 2023 rev:44 rq:1119330 version:2.9 Changes: -------- --- /work/SRC/openSUSE:Factory/minicom/minicom.changes 2023-07-10 16:40:29.614754873 +0200 +++ /work/SRC/openSUSE:Factory/.minicom.new.1945/minicom.changes 2023-10-22 21:02:11.490013793 +0200 @@ -1,0 +2,19 @@ +Sat Oct 21 07:02:34 UTC 2023 - Simon Lees <sfl...@suse.de> + +- Update to 2.9 + * Change Hardware Flow Control Default to No. + * Timestamping mode is now saved and restored. + * Split "Screen and Keyboard" menu into two menus. + * Update to gettext-0.21. + * Change return values of --help and --version to success. + * Support higher baud rates on MacOS + * Save character send delay to config file + * Save newline send delay to config file + * Update translations: Romanian, German, French, Norwegian/Bookmal, Polish, + Serbian, Swedish + * New translation: Georgian, Korean + * Remove minicom-2.5-serial_device_path_length.patch fixed upstream + * Rebased openSUSE-defaults.patch Flow Control Changed upstream + * Rebased minicom-2.8-replace-sigrelse.patch + * Rebased 03norzsz.diff +------------------------------------------------------------------- Old: ---- minicom-2.5-serial_device_path_length.patch minicom-2.8.tar.bz2 New: ---- minicom-2.9.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ minicom.spec ++++++ --- /var/tmp/diff_new_pack.rOHoIY/_old 2023-10-22 21:02:12.094035756 +0200 +++ /var/tmp/diff_new_pack.rOHoIY/_new 2023-10-22 21:02:12.094035756 +0200 @@ -17,7 +17,7 @@ Name: minicom -Version: 2.8 +Version: 2.9 Release: 0 Summary: A Terminal Program License: GPL-2.0-or-later @@ -29,12 +29,10 @@ # PATCH-FIX-OPENSUSE openSUSE-no-root-setup.patch Patch1: openSUSE-no-root-setup.patch Patch2: 03norzsz.diff -# PATCH-FIX-UPSTREAM minicom-2.5-serial_device_path_length.patch -- increase permitted length of serial device (boo#707860) -Patch3: minicom-2.5-serial_device_path_length.patch # PATCH-FIX-UPSTREAM minicom-2.8-replace-sigrelse.patch -- Replace deprecated sigrelse https://salsa.debian.org/minicom-team/minicom/-/commit/c43a18c25b09f6968219f3ecbaec7215e804838d -Patch4: minicom-2.8-replace-sigrelse.patch +Patch3: minicom-2.8-replace-sigrelse.patch # PATCH-FIX-UPSTREAM fix-undefined-reference.patch -- Fix undefined reference to external COLS and LINES -Patch5: minicom-2.8-fix-undefined-reference.patch +Patch4: minicom-2.8-fix-undefined-reference.patch BuildRequires: ckermit BuildRequires: gettext-devel BuildRequires: ncurses-devel ++++++ 03norzsz.diff ++++++ --- /var/tmp/diff_new_pack.rOHoIY/_old 2023-10-22 21:02:12.118036629 +0200 +++ /var/tmp/diff_new_pack.rOHoIY/_new 2023-10-22 21:02:12.122036774 +0200 @@ -1,9 +1,10 @@ https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=111060 -diff -Nur minicom-2.8/src/updown.c new/src/updown.c ---- minicom-2.8/src/updown.c 2021-01-01 18:45:55.000000000 +0100 -+++ new/src/updown.c 2022-05-23 15:41:51.964337441 +0200 -@@ -427,6 +427,22 @@ +Index: minicom-2.9/src/updown.c +=================================================================== +--- minicom-2.9.orig/src/updown.c ++++ minicom-2.9/src/updown.c +@@ -427,6 +427,22 @@ void updown(int what, int nr) mcd(""); timer_update(); @@ -24,6 +25,6 @@ + } else + /* If we got interrupted, status != 0 */ - if (win && (status & 0xFF00) == 0) { + if (win && ((status & 0xFF00) == 0 || status == 1)) { #if VC_MUSIC ++++++ minicom-2.8-replace-sigrelse.patch ++++++ --- /var/tmp/diff_new_pack.rOHoIY/_old 2023-10-22 21:02:12.138037356 +0200 +++ /var/tmp/diff_new_pack.rOHoIY/_new 2023-10-22 21:02:12.142037501 +0200 @@ -1,33 +1,17 @@ -diff -Nur minicom-2.8/src/minicom.c new/src/minicom.c ---- minicom-2.8/src/minicom.c 2021-01-01 18:45:55.000000000 +0100 -+++ new/src/minicom.c 2022-05-23 15:26:20.715784798 +0200 -@@ -1544,7 +1544,10 @@ - #endif +Index: minicom-2.9/src/minicom.c +=================================================================== +--- minicom-2.9.orig/src/minicom.c ++++ minicom-2.9/src/minicom.c +@@ -106,6 +106,11 @@ static void hangsig(int sig) + if (capfp) + fclose(capfp); - /* On some Linux systems SIGALRM is masked by default. Unmask it */ -- sigrelse(SIGALRM); + sigset_t ss; + sigemptyset(&ss); + sigaddset(&ss, SIGALRM); + sigprocmask(SIG_UNBLOCK, &ss, NULL); - - keyboard(KINSTALL, 0); - -diff -Nur minicom-2.8/src/script.c new/src/script.c ---- minicom-2.8/src/script.c 2021-01-01 18:45:55.000000000 +0100 -+++ new/src/script.c 2022-05-23 15:26:56.547959973 +0200 -@@ -1092,8 +1092,11 @@ - #if 0 /* Shouldn't need this.. */ - signal(SIGHUP, SIG_IGN); - #endif -- /* On some Linux systems SIGALRM is masked by default. Unmask it */ -- sigrelse(SIGALRM); -+ /* On some Linux systems SIGALRM is masked by default. Unmask it */ -+ sigset_t ss; -+ sigemptyset(&ss); -+ sigaddset(&ss, SIGALRM); -+ sigprocmask(SIG_UNBLOCK, &ss, NULL); - - /* initialize locale support */ - setlocale(LC_ALL, ""); ++ + keyboard(KUNINSTALL, 0); + hangup(); + modemreset(); ++++++ minicom-2.8.tar.bz2 -> minicom-2.9.tar.bz2 ++++++ ++++ 65760 lines of diff (skipped) ++++++ openSUSE-defaults.patch ++++++ --- /var/tmp/diff_new_pack.rOHoIY/_old 2023-10-22 21:02:12.634055392 +0200 +++ /var/tmp/diff_new_pack.rOHoIY/_new 2023-10-22 21:02:12.638055537 +0200 @@ -1,7 +1,8 @@ -diff -Nur minicom-2.8/src/rwconf.c new/src/rwconf.c ---- minicom-2.8/src/rwconf.c 2021-01-01 18:45:55.000000000 +0100 -+++ new/src/rwconf.c 2022-05-23 15:15:30.440605764 +0200 -@@ -80,8 +80,8 @@ +Index: minicom-2.9/src/rwconf.c +=================================================================== +--- minicom-2.9.orig/src/rwconf.c ++++ minicom-2.9/src/rwconf.c +@@ -80,8 +80,8 @@ struct pars mpars[MPARS_MAX + 1] = { { "", 0, "pname12" }, { "sz -vv -b", 0, "pprog1" }, { "sb -vv", 0, "pprog2" }, @@ -12,13 +13,4 @@ { "rb -vv", 0, "pprog5" }, { "rx -vv", 0, "pprog6" }, { "kermit -i -l %l -b %b -s", 0, "pprog7" }, -@@ -135,7 +135,7 @@ - { "BS", 0, "backspace" }, - { N_("enabled"), 0, "statusline" }, - { N_("Yes"), 0, "hasdcd" }, -- { N_("Yes"), 0, "rtscts" }, -+ { N_("No"), 0, "rtscts" }, - { N_("No"), 0, "xonxoff" }, - { "D", 0, "zauto" }, -