diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2022-10-01 21:33:31 +0000 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2022-10-01 21:33:31 +0000 |
commit | cc01308841a3b9dd7d1f45ac9d28766864a67996 (patch) | |
tree | ebd377c1eaee419c0a7be6c3daec1e2f19c74ff6 | |
parent | e2b35d714732ea5fda50b45e26397bb57467ed81 (diff) | |
download | ports-cc01308841a3b9dd7d1f45ac9d28766864a67996.tar.gz ports-cc01308841a3b9dd7d1f45ac9d28766864a67996.zip |
audio/carla: Update 2.5.0 -> 2.5.1
Reported by: hps@
-rw-r--r-- | audio/carla/Makefile | 5 | ||||
-rw-r--r-- | audio/carla/distinfo | 8 | ||||
-rw-r--r-- | audio/carla/files/patch-source_modules_ysfx_sources_ysfx__utils__fts.cpp | 13 |
3 files changed, 4 insertions, 22 deletions
diff --git a/audio/carla/Makefile b/audio/carla/Makefile index b8f21318a7c0..328e9ebb1411 100644 --- a/audio/carla/Makefile +++ b/audio/carla/Makefile @@ -1,11 +1,8 @@ PORTNAME= Carla DISTVERSIONPREFIX= v -DISTVERSION= 2.5.0 +DISTVERSION= 2.5.1 CATEGORIES= audio -PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ -PATCHFILES= 5aba957f3cf0fb4dcef4d2add679603e6c048fb4.diff:-p1 - MAINTAINER= yuri@FreeBSD.org COMMENT= Audio plugin host for Jack and PulseAudio WWW= https://kx.studio/Applications:Carla diff --git a/audio/carla/distinfo b/audio/carla/distinfo index 67cfdc2f7a76..c755525d456e 100644 --- a/audio/carla/distinfo +++ b/audio/carla/distinfo @@ -1,5 +1,3 @@ -TIMESTAMP = 1658075318 -SHA256 (falkTX-Carla-v2.5.0_GH0.tar.gz) = f1077caa97b52fedc0d567f7f0e561b466031b5b34b760cd68efe836e19d408d -SIZE (falkTX-Carla-v2.5.0_GH0.tar.gz) = 11533773 -SHA256 (5aba957f3cf0fb4dcef4d2add679603e6c048fb4.diff) = 1709d27634fc68794b72a200905e1cb6b2dd35aa0df16a9fd3fe7926cfb7d91a -SIZE (5aba957f3cf0fb4dcef4d2add679603e6c048fb4.diff) = 432 +TIMESTAMP = 1664658145 +SHA256 (falkTX-Carla-v2.5.1_GH0.tar.gz) = c47eea999b2880bde035fbc30d7b42b49234a81327127048a56967ec884dfdba +SIZE (falkTX-Carla-v2.5.1_GH0.tar.gz) = 11531860 diff --git a/audio/carla/files/patch-source_modules_ysfx_sources_ysfx__utils__fts.cpp b/audio/carla/files/patch-source_modules_ysfx_sources_ysfx__utils__fts.cpp deleted file mode 100644 index ece3249b2fa1..000000000000 --- a/audio/carla/files/patch-source_modules_ysfx_sources_ysfx__utils__fts.cpp +++ /dev/null @@ -1,13 +0,0 @@ -- workaround for https://github.com/jpcima/ysfx/issues/61 - ---- source/modules/ysfx/sources/ysfx_utils_fts.cpp.orig 2022-07-17 16:50:07 UTC -+++ source/modules/ysfx/sources/ysfx_utils_fts.cpp -@@ -36,7 +36,7 @@ void visit_directories(const char *rootpath, bool (*vi - #ifndef __EMSCRIPTEN__ - char *argv[] = {(char *)rootpath, nullptr}; - -- auto compar = [](const FTSENT **a, const FTSENT **b) -> int { -+ auto compar = [](const FTSENT * const *a, const FTSENT * const *b) -> int { - return strcmp((*a)->fts_name, (*b)->fts_name); - }; - |