Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package csound for openSUSE:Factory checked in at 2024-08-01 22:04:29 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/csound (Old) and /work/SRC/openSUSE:Factory/.csound.new.7232 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "csound" Thu Aug 1 22:04:29 2024 rev:40 rq:1190775 version:6.18.1 Changes: -------- --- /work/SRC/openSUSE:Factory/csound/csound.changes 2024-04-02 16:40:20.068636424 +0200 +++ /work/SRC/openSUSE:Factory/.csound.new.7232/csound.changes 2024-08-01 22:04:56.849748734 +0200 @@ -1,0 +2,5 @@ +Tue Jul 30 12:10:38 UTC 2024 - Marcus Meissner <meissner@suse.com> + +- csound-gcc14.patch: fixed gcc14 build issues + +------------------------------------------------------------------- New: ---- csound-gcc14.patch BETA DEBUG BEGIN: New: - csound-gcc14.patch: fixed gcc14 build issues BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ csound.spec ++++++ --- /var/tmp/diff_new_pack.NbcwiO/_old 2024-08-01 22:04:57.557777936 +0200 +++ /var/tmp/diff_new_pack.NbcwiO/_new 2024-08-01 22:04:57.557777936 +0200 @@ -1,7 +1,7 @@ # # spec file for package csound # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 SUSE LLC # Copyright (c) 2024 Andreas Stieger <Andreas.Stieger@gmx.de> # # All modifications and additions to the file contributed by third parties @@ -44,6 +44,7 @@ Patch4: csound-6.08-xdg-open.patch Patch5: csound-rename-sndinfo.patch Patch6: csound-rename-extract.patch +Patch7: csound-gcc14.patch BuildRequires: alsa-devel BuildRequires: bison BuildRequires: cmake ++++++ csound-gcc14.patch ++++++ Index: csound-6.18.1/Opcodes/OSC.c =================================================================== --- csound-6.18.1.orig/Opcodes/OSC.c +++ csound-6.18.1/Opcodes/OSC.c @@ -548,7 +548,7 @@ static int32_t OSC_handler(const char *p case 'b': { int32_t len = - lo_blobsize((lo_blob*)argv[i]); + lo_blobsize((lo_blob)argv[i]); m->args[i].blob = csound->Malloc(csound,len); memcpy(m->args[i].blob, argv[i], len); @@ -787,7 +787,7 @@ static int32_t OSC_list_init(CSOUND *cso csound->UnlockMutex(p->port->mutex_); p->c.method = lo_server_thread_add_method(p->port->thread, p->c.saved_path, p->c.saved_types, - OSC_handler, p->port); + (lo_method_handler)OSC_handler, p->port); csound->RegisterDeinitCallback(csound, p, (int32_t (*)(CSOUND *, void *)) OSC_listdeinit); return OK; @@ -1067,7 +1067,7 @@ static int32_t OSC_alist_init(CSOUND *cs csound->UnlockMutex(p->port->mutex_); p->c.method = lo_server_thread_add_method(p->port->thread, p->c.saved_path, p->c.saved_types, - OSC_ahandler, p->port); + (lo_method_handler)OSC_ahandler, p->port); csound->RegisterDeinitCallback(csound, p, (int32_t (*)(CSOUND *, void *)) OSC_listadeinit); return OK;