Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package global for openSUSE:Factory checked 
in at 2026-03-31 15:22:42
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/global (Old)
 and      /work/SRC/openSUSE:Factory/.global.new.1999 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "global"

Tue Mar 31 15:22:42 2026 rev:66 rq:1343744 version:6.6.14

Changes:
--------
--- /work/SRC/openSUSE:Factory/global/global.changes    2024-07-11 
20:30:10.946270318 +0200
+++ /work/SRC/openSUSE:Factory/.global.new.1999/global.changes  2026-03-31 
15:23:48.232106226 +0200
@@ -1,0 +2,7 @@
+Sun Mar 29 17:46:14 UTC 2026 - Andreas Stieger <[email protected]>
+
+- update to 6.6.14:
+  * gtags: Added support for 'record' (java).
+- global-6.6.14-libdb-dbpanic-function-pointers.patch from Fedora
+
+-------------------------------------------------------------------

Old:
----
  global-6.6.13.tar.gz
  global-6.6.13.tar.gz.sig

New:
----
  global-6.6.14-libdb-dbpanic-function-pointers.patch
  global-6.6.14.tar.gz
  global-6.6.14.tar.gz.sig

----------(New B)----------
  New:  * gtags: Added support for 'record' (java).
- global-6.6.14-libdb-dbpanic-function-pointers.patch from Fedora
----------(New E)----------

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

Other differences:
------------------
++++++ global.spec ++++++
--- /var/tmp/diff_new_pack.WmIXS3/_old  2026-03-31 15:23:49.400154886 +0200
+++ /var/tmp/diff_new_pack.WmIXS3/_new  2026-03-31 15:23:49.404155052 +0200
@@ -2,7 +2,7 @@
 # spec file for package global
 #
 # Copyright (c) 2024 SUSE LLC
-# Copyright (c) 2024 Andreas Stieger <[email protected]>
+# Copyright (c) 2026 Andreas Stieger <[email protected]>
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 
 Name:           global
-Version:        6.6.13
+Version:        6.6.14
 Release:        0
 Summary:        Common source code tag system
 License:        GPL-3.0-only
@@ -30,6 +30,7 @@
 Patch0:         global-5.7.diff
 # PATCH-FIX-UPSTREAM fix_paths.patch bnc#977967
 Patch1:         fix_paths.patch
+Patch2:         global-6.6.14-libdb-dbpanic-function-pointers.patch
 BuildRequires:  autoconf >= 2.71
 BuildRequires:  automake
 BuildRequires:  emacs-nox

++++++ global-6.6.14-libdb-dbpanic-function-pointers.patch ++++++
diff --git a/libdb/db.c b/libdb/db.c
index d6734a1..5c9eb4e 100644
--- a/libdb/db.c
+++ b/libdb/db.c
@@ -75,7 +75,37 @@ dbopen(const char *fname, int flags, int mode, DBTYPE type, 
const void *openinfo
 }
 
 static int
-__dberr(void)
+__dberr_del(const DB *, const DBT *, u_int)
+{
+       return (RET_ERROR);
+}
+
+static int
+__dberr_fd(const DB *)
+{
+       return (RET_ERROR);
+}
+
+static int
+__dberr_get(const DB *, const DBT *, DBT *, u_int)
+{
+       return (RET_ERROR);
+}
+
+static int
+__dberr_put(const DB *, DBT *, const DBT *, u_int)
+{
+       return (RET_ERROR);
+}
+
+static int
+__dberr_seq(const DB *, DBT *, DBT *, u_int)
+{
+       return (RET_ERROR);
+}
+
+static int
+__dberr_sync(const DB *, u_int)
 {
        return (RET_ERROR);
 }
@@ -89,10 +119,10 @@ void
 __dbpanic(DB *dbp)
 {
        /* The only thing that can succeed is a close. */
-       dbp->del = (int (*)())__dberr;
-       dbp->fd = (int (*)())__dberr;
-       dbp->get = (int (*)())__dberr;
-       dbp->put = (int (*)())__dberr;
-       dbp->seq = (int (*)())__dberr;
-       dbp->sync = (int (*)())__dberr;
+       dbp->del = __dberr_del;
+       dbp->fd = __dberr_fd;
+       dbp->get = __dberr_get;
+       dbp->put = __dberr_put;
+       dbp->seq = __dberr_seq;
+       dbp->sync = __dberr_sync;
 }

++++++ global-6.6.13.tar.gz -> global-6.6.14.tar.gz ++++++
++++ 13870 lines of diff (skipped)

Reply via email to