diff --git a/srcpkgs/yoshimi/patches/fix-lv2-1.18.0.patch b/srcpkgs/yoshimi/patches/fix-lv2-1.18.0.patch deleted file mode 100644 index 6e0b811ec6d..00000000000 --- a/srcpkgs/yoshimi/patches/fix-lv2-1.18.0.patch +++ /dev/null @@ -1,43 +0,0 @@ ---- src/LV2_Plugin/YoshimiLV2Plugin.h 2020-04-20 11:31:08.000000000 +0200 -+++ src/LV2_Plugin/YoshimiLV2Plugin.h 2020-12-27 09:24:22.402582559 +0100 -@@ -106,7 +106,7 @@ - virtual void registerAudioPort(int) {} - - //static methods -- static LV2_Handle instantiate (const struct _LV2_Descriptor *, double sample_rate, const char *bundle_path, const LV2_Feature *const *features); -+ static LV2_Handle instantiate (const struct LV2_Descriptor *, double sample_rate, const char *bundle_path, const LV2_Feature *const *features); - static void connect_port(LV2_Handle instance, uint32_t port, void *data_location); - static void activate(LV2_Handle instance); - static void deactivate(LV2_Handle instance); -@@ -159,7 +159,7 @@ - YoshimiLV2PluginUI(const char *, LV2UI_Write_Function, LV2UI_Controller, LV2UI_Widget *widget, const LV2_Feature *const *features); - ~YoshimiLV2PluginUI(); - bool init(); -- static LV2UI_Handle instantiate(const struct _LV2UI_Descriptor *descriptor, const char *plugin_uri, const char *bundle_path, LV2UI_Write_Function write_function, LV2UI_Controller controller, LV2UI_Widget *widget, const LV2_Feature *const *features); -+ static LV2UI_Handle instantiate(const struct LV2UI_Descriptor *descriptor, const char *plugin_uri, const char *bundle_path, LV2UI_Write_Function write_function, LV2UI_Controller controller, LV2UI_Widget *widget, const LV2_Feature *const *features); - static void cleanup(LV2UI_Handle ui); - static void static_guiClosed(void *arg); - void run(); ---- src/LV2_Plugin/YoshimiLV2Plugin.cpp 2020-04-20 11:31:08.000000000 +0200 -+++ src/LV2_Plugin/YoshimiLV2Plugin.cpp 2020-12-27 09:27:36.598189783 +0100 -@@ -378,7 +378,7 @@ - } - - --LV2_Handle YoshimiLV2Plugin::instantiate (const struct _LV2_Descriptor *desc, double sample_rate, const char *bundle_path, const LV2_Feature *const *features) -+LV2_Handle YoshimiLV2Plugin::instantiate (const struct LV2_Descriptor *desc, double sample_rate, const char *bundle_path, const LV2_Feature *const *features) - { - SynthEngine *synth = new SynthEngine(0, NULL, true); - if (synth == NULL || !synth->getRuntime().isRuntimeSetupCompleted()){ -@@ -711,9 +711,9 @@ - } - - --LV2UI_Handle YoshimiLV2PluginUI::instantiate(const _LV2UI_Descriptor *descriptor, const char *plugin_uri, const char *bundle_path, LV2UI_Write_Function write_function, LV2UI_Controller controller, LV2UI_Widget *widget, const LV2_Feature * const *features) -+LV2UI_Handle YoshimiLV2PluginUI::instantiate(const LV2UI_Descriptor *descriptor, const char *plugin_uri, const char *bundle_path, LV2UI_Write_Function write_function, LV2UI_Controller controller, LV2UI_Widget *widget, const LV2_Feature * const *features) - { -- const _LV2UI_Descriptor *desc = descriptor; -+ const LV2UI_Descriptor *desc = descriptor; - descriptor = desc; - const char *plug = plugin_uri; - plugin_uri = plug; diff --git a/srcpkgs/yoshimi/template b/srcpkgs/yoshimi/template index 5d198fee638..1c4bcb51949 100644 --- a/srcpkgs/yoshimi/template +++ b/srcpkgs/yoshimi/template @@ -1,6 +1,6 @@ # Template file for 'yoshimi' pkgname=yoshimi -version=1.7.1 +version=1.7.4 revision=1 build_wrksrc=src build_style=cmake @@ -12,7 +12,7 @@ maintainer="Andrea Brancaleoni " license="GPL-2.0-or-later" homepage="https://yoshimi.github.io/" distfiles="https://github.com/Yoshimi/$pkgname/archive/$version.tar.gz" -checksum=b75560761d7abebf7e901bd2b0dd1f55650cab2c3ff551f7e4820425ce325c28 +checksum=27a8e33bda72aafae604e14841bed6373fc9e00ff70c98f1e13215d6a8808318 case "$XBPS_TARGET_MACHINE" in *-musl) makedepends+=" argp-standalone";;