Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package asco for openSUSE:Factory checked in at 2024-11-07 16:29:27 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/asco (Old) and /work/SRC/openSUSE:Factory/.asco.new.2020 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "asco" Thu Nov 7 16:29:27 2024 rev:6 rq:1222463 version:0.4.11 Changes: -------- --- /work/SRC/openSUSE:Factory/asco/asco.changes 2023-06-04 16:42:57.246255267 +0200 +++ /work/SRC/openSUSE:Factory/.asco.new.2020/asco.changes 2024-11-07 16:30:16.444853954 +0100 @@ -1,0 +2,6 @@ +Thu Nov 7 12:55:30 UTC 2024 - Wojciech Kazubski <[email protected]> + +- Add a patch asco-add-missing-headers.patch to fix build with + gcc-14 + +------------------------------------------------------------------- New: ---- asco-add-missing-headers.patch BETA DEBUG BEGIN: New: - Add a patch asco-add-missing-headers.patch to fix build with gcc-14 BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ asco.spec ++++++ --- /var/tmp/diff_new_pack.FwGgxx/_old 2024-11-07 16:30:16.904873091 +0100 +++ /var/tmp/diff_new_pack.FwGgxx/_new 2024-11-07 16:30:16.904873091 +0100 @@ -1,7 +1,7 @@ # # spec file for package asco # -# Copyright (c) 2023 SUSE LLC +# 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 @@ -26,6 +26,8 @@ Source0: http://downloads.sourceforge.net/asco/ASCO-%{version}.tar.gz # PATCH-FIX-OPENSUSE asco_unbuffered.patch -- patch from QUCS team Patch0: asco_unbuffered.patch +# PATCH-FIX-OPENSUSE asco-add-missing-header.patch -- fix build for Tumbleweed +Patch1: asco-add-missing-headers.patch BuildRequires: autoconf BuildRequires: automake BuildRequires: gcc-c++ @@ -65,6 +67,8 @@ %make_install install -Dm 644 doc/ASCO.pdf %{buildroot}/%{_docdir}/%{name}/ASCO.pdf +%check + %files %license LICENSE %doc ChangeLog README ++++++ asco-add-missing-headers.patch ++++++ diff -up ASCO-0.4.11/auxfunc_alter.c.aaaa ASCO-0.4.11/auxfunc_alter.c --- ASCO-0.4.11/auxfunc_alter.c.aaaa 2022-01-19 11:57:57.494391114 +0100 +++ ASCO-0.4.11/auxfunc_alter.c 2024-11-07 13:47:06.988935197 +0100 @@ -8,6 +8,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <unistd.h> #ifdef __MINGW32__ #include <winsock2.h> #endif diff -up ASCO-0.4.11/examples/rosen/bin/de36.c.aaaa ASCO-0.4.11/examples/rosen/bin/de36.c --- ASCO-0.4.11/examples/rosen/bin/de36.c.aaaa 2024-11-07 13:48:32.643498508 +0100 +++ ASCO-0.4.11/examples/rosen/bin/de36.c 2024-11-07 13:48:58.407199640 +0100 @@ -168,7 +168,7 @@ double rnd_uni(long *idum) -main(int argc, char *argv[]) +int main(int argc, char *argv[]) /**C*F**************************************************************** ** ** ** SRC-FUNCTION :main() ** diff -up ASCO-0.4.11/tools/alter/auxfunc_alter.c.aaaa ASCO-0.4.11/tools/alter/auxfunc_alter.c --- ASCO-0.4.11/tools/alter/auxfunc_alter.c.aaaa 2022-01-19 11:57:57.394389489 +0100 +++ ASCO-0.4.11/tools/alter/auxfunc_alter.c 2024-11-07 13:47:06.988935197 +0100 @@ -8,6 +8,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <unistd.h> #ifdef __MINGW32__ #include <winsock2.h> #endif diff -up ASCO-0.4.11/tools/postp/auxfunc_measurefromlis.h.aaaa ASCO-0.4.11/tools/postp/auxfunc_measurefromlis.h --- ASCO-0.4.11/tools/postp/auxfunc_measurefromlis.h.aaaa 2010-01-12 11:45:21.000000000 +0100 +++ ASCO-0.4.11/tools/postp/auxfunc_measurefromlis.h 2024-11-07 13:47:06.988935197 +0100 @@ -51,7 +51,7 @@ int ProcessMeasureVar(char *measure_var_ /* void PrintOneLine(char *lkk1,double *stats_,int num_measures,FILE **fSummary); */ /* void WriteToFile(int num_measures,char *laux_,int first,statistics *stats,FILE **fSummary); */ void DoMath(int num_measures); -/* int DetectsTransistorColumns(char *lelement, int index[]); */ +int DetectsTransistorColumns(char *lelement, int index[]); /* int IsItATransistor(char *line, int mem, int i, char *nextline); */ diff -up ASCO-0.4.11/tools/postp/auxfunc_updatelis.c.aaaa ASCO-0.4.11/tools/postp/auxfunc_updatelis.c --- ASCO-0.4.11/tools/postp/auxfunc_updatelis.c.aaaa 2022-01-19 11:57:57.426390009 +0100 +++ ASCO-0.4.11/tools/postp/auxfunc_updatelis.c 2024-11-07 13:47:06.988935197 +0100 @@ -11,6 +11,7 @@ #include <math.h> #include "auxfunc_updatelis.h" +#include "auxfunc_measurefromlis.h" #include "auxfunc.h"
