Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package octave for openSUSE:Factory checked 
in at 2023-04-30 16:07:51
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/octave (Old)
 and      /work/SRC/openSUSE:Factory/.octave.new.1533 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "octave"

Sun Apr 30 16:07:51 2023 rev:85 rq:1083693 version:8.2.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/octave/octave.changes    2023-01-06 
17:06:41.684565179 +0100
+++ /work/SRC/openSUSE:Factory/.octave.new.1533/octave.changes  2023-04-30 
16:08:01.348242849 +0200
@@ -1,0 +2,55 @@
+Tue Apr 18 04:17:35 UTC 2023 - Atri Bhattacharya <badshah...@gmail.com>
+
+- Update to version 8.2.0:
+  * fopen: Use “UTF-8” as default encoding for fopen
+    (https://savannah.gnu.org/bugs/?63930).
+  * fopen, unicode2native: Fix converting the encoding of short
+    char arrays with invalid UTF-8
+    (https://savannah.gnu.org/bugs/?63930).
+  * fopen: Try to gather complete UTF-8 surrogates when converting
+    encoding (https://savannah.gnu.org/bugs/?63930).
+  * fopen: Do not convert encoding for file streams with libc++
+    (https://savannah.gnu.org/bugs/?63930).
+  * pr-output.cc: Fix output for format native-bit
+    (https://savannah.gnu.org/bugs/?63940).
+  * Fix evaluation of & and | expressions in conditional contexts
+    (https://savannah.gnu.org/bugs/?63935).
+  * Avoid clang warning about very unlikely buffer overflow.
+  * mpoles.m: Overhaul function and use absolute tolerance for
+    zero poles (https://savannah.gnu.org/bugs/?63937).
+  * perms.m: Change "unique" output order to reverse lexicographic
+    to match non-unique order
+    (https://savannah.gnu.org/bugs/?63962).
+  * Remove trailing '\r' from curl dir list
+    (https://savannah.gnu.org/bugs/?63851).
+  * Fix display of scalar complex variables with mixed Inf/NaN and
+    floating point values (https://savannah.gnu.org/bugs/?63961).
+  * Don’t use encoding facet when writing bytes to stream
+    (https://savannah.gnu.org/bugs/?63931).
+  * GUI: Speedup loading and saving preferences dialog
+    (https://savannah.gnu.org/bugs/?63909).
+  * Build system / Tests:
+    - inpolygon.m: Fix demo code
+      (https://savannah.gnu.org/bugs/?63865).
+    - if.tst: New test for (https://savannah.gnu.org/bugs/?63935).
+    - acinclude.m4: Correct typo in #define PCRE2_CODE_UNIT_WIDTH.
+    - lu: Add self-test with complex valued input.
+    - Disable visibility flags by default
+      (https://savannah.gnu.org/bugs/?61855, bug #63916).
+    - Check whether using STL from LLVM or Apple
+      (https://savannah.gnu.org/bugs/?63930).
+  - Documentation:
+    - Improve documentation for linspace and logspace functions.
+    - Correct and improve documentation for sparse() function.
+
+-------------------------------------------------------------------
+Sun Mar 12 11:38:54 UTC 2023 - Atri Bhattacharya <badshah...@gmail.com>
+
+- Update to version 8.1.0:
+  * Long list of changes, see <https://octave.org/NEWS-8.html>.
+- API version bumped from 57 to 58.
+- Minor re-base of
+  0001-Add-explicit-ctime-include-required-for-clock.patch for
+  update (file-name change only).
+
+-------------------------------------------------------------------

Old:
----
  octave-7.3.0.tar.lz

New:
----
  octave-8.2.0.tar.lz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ octave.spec ++++++
--- /var/tmp/diff_new_pack.jDlK5Q/_old  2023-04-30 16:08:03.536256197 +0200
+++ /var/tmp/diff_new_pack.jDlK5Q/_new  2023-04-30 16:08:03.544256246 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%define apiver  v57
+%define apiver  v58
 # Required for RC builds, in this case version contains ~rc, src_ver -rc
-%define pkg_ver 7.3.0
+%define pkg_ver 8.2.0
 %define src_ver %{pkg_ver}
 
 # Use native graphics or gnuplot

++++++ 0001-Disable-signal-handler-thread-avoid-duplicate-signal.patch ++++++
--- /var/tmp/diff_new_pack.jDlK5Q/_old  2023-04-30 16:08:03.564256368 +0200
+++ /var/tmp/diff_new_pack.jDlK5Q/_new  2023-04-30 16:08:03.572256417 +0200
@@ -29,14 +29,14 @@
 Not using a dedicated signal handler thread removes a source of
 indeterminism, and also fixes https://savannah.gnu.org/bugs/?54607
 ---
- liboctave/wrappers/signal-wrappers.c | 2 +-
+ liboctave/wrappers/cxx-signal-helpers.cc | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
-Index: octave-6.1.0/liboctave/wrappers/signal-wrappers.c
+Index: octave-8.1.0/liboctave/wrappers/cxx-signal-helpers.cc
 ===================================================================
---- octave-6.1.0.orig/liboctave/wrappers/signal-wrappers.c
-+++ octave-6.1.0/liboctave/wrappers/signal-wrappers.c
-@@ -709,7 +709,7 @@ signal_watcher (void *arg)
+--- octave-8.1.0.orig/liboctave/wrappers/cxx-signal-helpers.cc
++++ octave-8.1.0/liboctave/wrappers/cxx-signal-helpers.cc
+@@ -192,7 +192,7 @@ signal_watcher (void *arg)
  void
  octave_create_interrupt_watcher_thread (octave_sig_handler *handler)
  {
@@ -44,5 +44,5 @@
 +#if 0
    pthread_t sighandler_thread_id;
  
-   if (pthread_create (&sighandler_thread_id, 0, signal_watcher, handler))
+   if (pthread_create (&sighandler_thread_id, 0, signal_watcher,
 

Reply via email to