Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package amanda for openSUSE:Factory checked 
in at 2024-07-26 16:15:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/amanda (Old)
 and      /work/SRC/openSUSE:Factory/.amanda.new.1882 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "amanda"

Fri Jul 26 16:15:40 2024 rev:12 rq:1189651 version:3.5.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/amanda/amanda.changes    2024-02-20 
21:15:54.437415380 +0100
+++ /work/SRC/openSUSE:Factory/.amanda.new.1882/amanda.changes  2024-07-26 
16:15:57.102796468 +0200
@@ -1,0 +2,5 @@
+Thu Jul 25 08:37:48 UTC 2024 - Marcus Meissner <[email protected]>
+
+- amanda-fix-proto.patch: fix build with gcc14
+
+-------------------------------------------------------------------

New:
----
  amanda-fix-proto.patch

BETA DEBUG BEGIN:
  New:
- amanda-fix-proto.patch: fix build with gcc14
BETA DEBUG END:

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

Other differences:
------------------
++++++ amanda.spec ++++++
--- /var/tmp/diff_new_pack.gVP1ir/_old  2024-07-26 16:15:58.666859409 +0200
+++ /var/tmp/diff_new_pack.gVP1ir/_new  2024-07-26 16:15:58.670859571 +0200
@@ -34,6 +34,7 @@
 Patch4:         amanda-3.3.2-returnvalues.patch
 Patch6:         amanda-3.5-no_return_in_nonvoid_fnc.patch
 Patch7:         amanda-libnsl.patch
+Patch8:         amanda-fix-proto.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  bison
@@ -92,6 +93,7 @@
 %patch -P 4 -p1
 %patch -P 6 -p1
 %patch -P 7 -p1
+%patch -P 8 -p1
 
 %build
 ./autogen

++++++ amanda-fix-proto.patch ++++++
Index: amanda-tag-community-3.5.4/client-src/runtar.c
===================================================================
--- amanda-tag-community-3.5.4.orig/client-src/runtar.c
+++ amanda-tag-community-3.5.4/client-src/runtar.c
@@ -54,7 +54,7 @@ main(
 {
 #ifdef GNUTAR
     int i;
-    char **j;
+    const char **j;
     char *e;
     char *dbf;
     char *cmdline;
@@ -255,7 +255,7 @@ check_whitelist(
     gchar* option)
 {
     bool result = TRUE;
-    char** i;
+    const char** i;
 
     for(i=whitelisted_args; *i; i++) {
         if (g_str_has_prefix(option, *i)) {

Reply via email to