Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package csound for openSUSE:Factory checked in at 2025-08-20 14:40:38 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/csound (Old) and /work/SRC/openSUSE:Factory/.csound.new.29662 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "csound" Wed Aug 20 14:40:38 2025 rev:41 rq:1300453 version:6.18.1 Changes: -------- --- /work/SRC/openSUSE:Factory/csound/csound.changes 2024-08-01 22:04:56.849748734 +0200 +++ /work/SRC/openSUSE:Factory/.csound.new.29662/csound.changes 2025-08-20 14:40:44.749162938 +0200 @@ -1,0 +2,5 @@ +Tue Aug 19 11:20:11 UTC 2025 - Edgar Aichinger <edog...@aon.at> + +- add csound-opadr.patch (fixes Factory/TW/Slowroll builds) + +------------------------------------------------------------------- New: ---- csound-opadr.patch ----------(New B)---------- New: - add csound-opadr.patch (fixes Factory/TW/Slowroll builds) ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ csound.spec ++++++ --- /var/tmp/diff_new_pack.obGVdE/_old 2025-08-20 14:40:45.481193376 +0200 +++ /var/tmp/diff_new_pack.obGVdE/_new 2025-08-20 14:40:45.485193542 +0200 @@ -1,7 +1,7 @@ # # spec file for package csound # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2025 SUSE LLC and contributors # Copyright (c) 2024 Andreas Stieger <andreas.stie...@gmx.de> # # All modifications and additions to the file contributed by third parties @@ -45,6 +45,7 @@ Patch5: csound-rename-sndinfo.patch Patch6: csound-rename-extract.patch Patch7: csound-gcc14.patch +Patch8: csound-opadr.patch BuildRequires: alsa-devel BuildRequires: bison BuildRequires: cmake ++++++ csound-opadr.patch ++++++ diff -up csound-6.18.1/include/plugin.h.orig csound-6.18.1/include/plugin.h --- csound-6.18.1/include/plugin.h.orig 2022-11-23 20:53:55.000000000 +0100 +++ csound-6.18.1/include/plugin.h 2025-08-19 12:59:50.211218300 +0200 @@ -1002,7 +1002,7 @@ template <std::size_t N> struct InPlug : /** check if this opcode runs at perf time */ bool is_perf() { - return this->opaddr ? true : false; + return this->opadr ? true : false; } };