Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package lrslib for openSUSE:Factory checked in at 2026-02-03 21:35:47 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/lrslib (Old) and /work/SRC/openSUSE:Factory/.lrslib.new.1995 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "lrslib" Tue Feb 3 21:35:47 2026 rev:11 rq:1330808 version:7.3a Changes: -------- --- /work/SRC/openSUSE:Factory/lrslib/lrslib.changes 2025-10-02 19:22:02.747091154 +0200 +++ /work/SRC/openSUSE:Factory/.lrslib.new.1995/lrslib.changes 2026-02-03 21:36:37.509537257 +0100 @@ -1,0 +2,7 @@ +Tue Feb 3 15:43:29 UTC 2026 - Jan Engelhardt <[email protected]> + +- Update to release 7.3a + * Compiler fixes for e.g. gcc15 +- Delete lrs-compile.diff (merged) + +------------------------------------------------------------------- Old: ---- lrs-compile.diff lrslib-073.tar.gz New: ---- lrslib-073a.tar.gz ----------(Old B)---------- Old: * Compiler fixes for e.g. gcc15 - Delete lrs-compile.diff (merged) ----------(Old E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ lrslib.spec ++++++ --- /var/tmp/diff_new_pack.LoIk6f/_old 2026-02-03 21:36:38.317571216 +0100 +++ /var/tmp/diff_new_pack.LoIk6f/_new 2026-02-03 21:36:38.321571385 +0100 @@ -1,7 +1,7 @@ # # spec file for package lrslib # -# Copyright (c) 2025 SUSE LLC +# Copyright (c) 2026 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -16,11 +16,10 @@ # -%define dullver 073 -%define dullver2 073 +%define dullver 073a %define lname liblrs1 Name: lrslib -Version: 7.3 +Version: 7.3a Release: 0 Summary: Reverse Search Vertex Enumeration program License: GPL-2.0-or-later @@ -28,7 +27,6 @@ URL: http://cgm.cs.mcgill.ca/~avis/C/lrs.html Source: http://cgm.cs.mcgill.ca/~avis/C/lrslib/archive/%name-%dullver.tar.gz Patch1: lrs-128.diff -Patch2: lrs-compile.diff Patch3: lrs-types.diff BuildRequires: gcc-c++ BuildRequires: gmp-devel ++++++ _scmsync.obsinfo ++++++ --- /var/tmp/diff_new_pack.LoIk6f/_old 2026-02-03 21:36:38.353572729 +0100 +++ /var/tmp/diff_new_pack.LoIk6f/_new 2026-02-03 21:36:38.357572897 +0100 @@ -1,5 +1,5 @@ -mtime: 1759357637 -commit: 51a040b78923c8f2227f14b188b9e67f5cd1c318aaa702820a10f0dfc806928b +mtime: 1770137420 +commit: b43b7dec91ee3e16d08b9c617a15d6f39e4232c40f0a314a2115aa7fd0cec4a1 url: https://src.opensuse.org/jengelh/lrslib revision: master ++++++ build.specials.obscpio ++++++ ++++++ build.specials.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/.gitignore new/.gitignore --- old/.gitignore 1970-01-01 01:00:00.000000000 +0100 +++ new/.gitignore 2026-02-03 17:50:29.000000000 +0100 @@ -0,0 +1 @@ +.osc ++++++ lrslib-073.tar.gz -> lrslib-073a.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lrslib-073/README new/lrslib-073a/README --- old/lrslib-073/README 2024-05-30 05:09:37.000000000 +0200 +++ new/lrslib-073a/README 2025-10-14 06:58:20.000000000 +0200 @@ -4,9 +4,14 @@ http://cgm.cs.mcgill.ca/~avis/C/lrs.html ----------------------------------------------------------------------------- -Version 7.3 +Version 7.3a manual: http://cgm.cs.mcgill.ca/~avis/C/lrslib/USERGUIDE73.html +2025.10.10 +Minor patch to fix errors when compiling with gcc 15. + +Version 7.3 + 2024.1.31 New features: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lrslib-073/lrslib.c new/lrslib-073a/lrslib.c --- old/lrslib-073/lrslib.c 2024-05-30 05:07:49.000000000 +0200 +++ new/lrslib-073a/lrslib.c 2025-10-10 08:44:11.000000000 +0200 @@ -84,10 +84,10 @@ /* signals handling */ /*******************************/ #ifndef SIGNALS -static void checkpoint (); -static void die_gracefully (); +static void checkpoint (int); +static void die_gracefully (int); static void setup_signals (void); -static void timecheck (); +static void timecheck (int); #endif /*******************************/ @@ -6368,7 +6368,7 @@ } static void -timecheck () +timecheck (int sig) { lrs_dump_state (); errcheck ("signal", signal (SIGALRM, timecheck)); @@ -6376,14 +6376,14 @@ } static void -checkpoint () +checkpoint (int sig) { lrs_dump_state (); errcheck ("signal", signal (SIGUSR1, checkpoint)); } static void -die_gracefully () +die_gracefully (int sig) { lrs_dump_state ();
