Script 'mail_helper' called by obssrc
Hello community,

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

Package is "octave-forge-database"

Sat Apr 22 22:04:12 2023 rev:10 rq:1082200 version:2.4.4

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/octave-forge-database/octave-forge-database.changes  
    2022-10-27 13:55:06.232852610 +0200
+++ 
/work/SRC/openSUSE:Factory/.octave-forge-database.new.1533/octave-forge-database.changes
    2023-04-22 22:04:31.042671745 +0200
@@ -1,0 +2,7 @@
+Wed Apr 19 08:28:31 UTC 2023 - Atri Bhattacharya <badshah...@gmail.com>
+
+- Add database-drop-error_state.patch -- Drop error_state usage
+  for octave >= 8 compatibility
+  (https://savannah.gnu.org/bugs/index.php?61567).
+
+-------------------------------------------------------------------

New:
----
  database-drop-error_state.patch

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

Other differences:
------------------
++++++ octave-forge-database.spec ++++++
--- /var/tmp/diff_new_pack.7ZTN9q/_old  2023-04-22 22:04:31.562674854 +0200
+++ /var/tmp/diff_new_pack.7ZTN9q/_new  2023-04-22 22:04:31.566674878 +0200
@@ -1,7 +1,7 @@
 #
 # spec file
 #
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -29,6 +29,8 @@
 Patch0:         add_missing_iostream_include.patch
 # PATCH-FIX-OPENSUSE -- boo#1120035, pg_config is no longer in the 
postgresql-devel package, use pkg-config instead
 Patch1:         0001-Use-pkg-config-instead-of-pg_config.patch
+# PATCH-FIX-UPSTREAM database-drop-error_state.patch badshah...@gmail.com -- 
Drop error_state for octave >= 8 compatibility 
(https://savannah.gnu.org/bugs/index.php?61567)
+Patch2:         database-drop-error_state.patch
 BuildRequires:  gcc-c++
 BuildRequires:  hdf5-devel
 BuildRequires:  octave-devel >= 4.0.0
@@ -44,8 +46,7 @@
 %prep
 %setup -q -c %{name}-%{version}
 pushd %{octpkg}-%{version}
-%patch0 -p1
-%patch1 -p1
+%autopatch -p1
 popd
 %octave_pkg_src
 

++++++ database-drop-error_state.patch ++++++
# HG changeset patch
# User Markus Mützel <markus.muet...@gmx.de>
# Date 1637944272 -3600
#      Fri Nov 26 17:31:12 2021 +0100
# Node ID cf50442de36069a599dfdd96505aff08eb23baf6
# Parent  8ce48d0bb822adcbf40aa5ff6b759c3a898a7934
Fix compilation with Octave 8 (bug #61567).

* src/error-helpers.h: Use wrapper function.

diff -r 8ce48d0bb822 -r cf50442de360 src/error-helpers.h
--- a/src/error-helpers.h       Thu Mar 25 10:59:09 2021 +0100
+++ b/src/error-helpers.h       Fri Nov 26 17:31:12 2021 +0100
@@ -64,7 +64,7 @@
       } \
     catch (OCTAVE__EXECUTION_EXCEPTION& e) \
       { \
-        verror (e, __VA_ARGS__); \
+        c_verror (e, __VA_ARGS__); \
       }
 #endif
 

Reply via email to