Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libargtable2 for openSUSE:Factory 
checked in at 2025-01-29 16:18:27
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libargtable2 (Old)
 and      /work/SRC/openSUSE:Factory/.libargtable2.new.2316 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libargtable2"

Wed Jan 29 16:18:27 2025 rev:4 rq:1241174 version:2.13

Changes:
--------
--- /work/SRC/openSUSE:Factory/libargtable2/libargtable2.changes        
2024-03-07 22:03:03.656189863 +0100
+++ /work/SRC/openSUSE:Factory/.libargtable2.new.2316/libargtable2.changes      
2025-01-29 16:19:05.437147949 +0100
@@ -1,0 +2,6 @@
+Mon Dec 23 14:27:33 UTC 2024 - Ana Guerrero <ana.guerr...@suse.com>
+
+-  Fix multiple implicit function declarations. Add patch
+   implicit-declaration.patch
+
+-------------------------------------------------------------------

New:
----
  implicit-declaration.patch

BETA DEBUG BEGIN:
  New:-  Fix multiple implicit function declarations. Add patch
   implicit-declaration.patch
BETA DEBUG END:

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

Other differences:
------------------
++++++ libargtable2.spec ++++++
--- /var/tmp/diff_new_pack.XsAk1j/_old  2025-01-29 16:19:05.881166362 +0100
+++ /var/tmp/diff_new_pack.XsAk1j/_new  2025-01-29 16:19:05.881166362 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libargtable2
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -25,11 +25,12 @@
 Version:        2.13
 Release:        0
 Summary:        ANSI C Command line parser library
-License:        LGPL-2.0+
+License:        LGPL-2.0-or-later
 Group:          Development/Libraries/C and C++
-Url:            http://argtable.sourceforge.net/
+URL:            http://argtable.sourceforge.net/
 Source0:        
http://downloads.sourceforge.net/%{name1}/%{version}/%{name2}-%{oversion}.tar.gz
 Patch0:         %{name}-Makefile.in.patch
+Patch1:         implicit-declaration.patch
 BuildRequires:  autoconf
 BuildRequires:  fdupes
 BuildRequires:  gcc

++++++ implicit-declaration.patch ++++++
Description: fix multiple implicit function declarations.
Author: Étienne Mollier <emoll...@debian.org>
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066377
Forwarded: no
Last-Update: 2024-03-25
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- src/arg_int.c
+++ src/arg_int.c
@@ -29,6 +29,7 @@
 /* #endif */
 
 #include "argtable2.h"
+#include <ctype.h>
 #include <limits.h>
 
 /* local error codes */
--- tests/fntests.c
+++ tests/fntests.c
@@ -1,5 +1,6 @@
 #include "../src/argtable2.h"
 #include <assert.h>
+#include <string.h>
 
 /* for memory leak debugging */
 #ifdef DMALLOC
--- tests/test_file.c
+++ tests/test_file.c
@@ -21,6 +21,7 @@
 
 #include "../src/argtable2.h"
 #include <stdlib.h>
+#include <string.h>
 
 /* for memory leak debugging */
 #ifdef DMALLOC

Reply via email to