Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package resample for openSUSE:Factory checked in at 2024-12-03 20:47:34 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/resample (Old) and /work/SRC/openSUSE:Factory/.resample.new.28523 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "resample" Tue Dec 3 20:47:34 2024 rev:20 rq:1227972 version:1.8.1 Changes: -------- --- /work/SRC/openSUSE:Factory/resample/resample.changes 2024-02-23 16:47:56.933035845 +0100 +++ /work/SRC/openSUSE:Factory/.resample.new.28523/resample.changes 2024-12-03 20:48:58.163461125 +0100 @@ -1,0 +2,6 @@ +Tue Dec 3 08:15:36 UTC 2024 - Angel Yankov <[email protected]> + +- Fix compiling with gcc14 + * Add resample-compile-gcc14.patch + +------------------------------------------------------------------- New: ---- resample-compile-gcc14.patch BETA DEBUG BEGIN: New:- Fix compiling with gcc14 * Add resample-compile-gcc14.patch BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ resample.spec ++++++ --- /var/tmp/diff_new_pack.bF2reL/_old 2024-12-03 20:48:58.691483260 +0100 +++ /var/tmp/diff_new_pack.bF2reL/_new 2024-12-03 20:48:58.695483427 +0100 @@ -1,7 +1,7 @@ # # spec file for package resample # -# Copyright (c) 2015 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/ # @@ -20,12 +20,13 @@ Version: 1.8.1 Release: 0 Summary: Sampling-rate conversion program -License: LGPL-2.1+ +License: LGPL-2.1-or-later Group: Productivity/Multimedia/Video/Editors and Convertors -Url: http://www-ccrma.stanford.edu/~jos/resample +URL: http://www-ccrma.stanford.edu/~jos/resample #Url2: https://ccrma.stanford.edu/~jos/resample/Free_Resampling_Software.html Source: http://ccrma.stanford.edu/~jos/gz/%name-%version.tar.gz Patch0: resample-filename-length-fix.diff +Patch1: resample-compile-gcc14.patch BuildRequires: gcc BuildRequires: make BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -40,7 +41,10 @@ %build %configure -make %{?_smp_mflags} +%make_build + +%check +%make_build check %install %make_install @@ -48,7 +52,8 @@ %files %defattr(-,root,root) -%doc README INSTALL AUTHORS COPYING ChangeLog NEWS +%doc README INSTALL AUTHORS ChangeLog NEWS +%license COPYING %_bindir/* %_mandir/man?/* ++++++ resample-compile-gcc14.patch ++++++ Index: resample-1.8.1/src/sndlibextra.c =================================================================== --- resample-1.8.1.orig/src/sndlibextra.c +++ resample-1.8.1/src/sndlibextra.c @@ -6,6 +6,7 @@ - John Gibson ([email protected]) */ +#include <stdlib.h> #include <assert.h> #include <string.h> #include "sndlibextra.h"
