summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorOSAMC2023-01-30 07:28:58 +0000
committerFlorian Hülsmann2023-01-30 07:28:58 +0000
commitd25e7d40368bf9347a921b441b7f0c1260b4e16b (patch)
tree8a514f9e4d2f2b32e55a949f4d2369ada56cd237
parent7b30c9b9e2db7004c201444920123a5a5cfe40b7 (diff)
downloadaur-d25e7d40368bf9347a921b441b7f0c1260b4e16b.tar.gz
uhhyou-plugins: update to v0.52.0 (#195)
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD13
2 files changed, 7 insertions, 12 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 11b1cc87ff26..22e4d21c1250 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = uhhyou-plugins
pkgdesc = A collection of synthesizer and effect VST3 plugins
- pkgver = 0.51.1
+ pkgver = 0.52.0
pkgrel = 1
url = https://ryukau.github.io/VSTPlugins/
arch = aarch64
@@ -20,10 +20,10 @@ pkgbase = uhhyou-plugins
makedepends = xcb-util-keysyms
depends = xcb-util-cursor
optdepends = vst3-host: for running VST3 plugins
- source = uhhyou-plugins-0.51.1.tar.gz::https://github.com/ryukau/VSTPlugins/archive/refs/tags/UhhyouPlugins0.51.1.tar.gz
+ source = uhhyou-plugins-0.52.0.tar.gz::https://github.com/ryukau/VSTPlugins/archive/refs/tags/UhhyouPlugins0.52.0.tar.gz
source = pocketfft-53e9dd4.tar.gz::https://gitlab.mpcdf.mpg.de/mtr/pocketfft/-/archive/53e9dd4/pocketfft-53e9dd4.tar.gz
source = vcl-4c90584.tar.gz::https://github.com/vectorclass/version2/archive/4c90584.tar.gz
- sha256sums = cb01d55572ec251d516690198d60a393a65742062cbf676f7928c0580913ae01
+ sha256sums = fadd875be8059b9caefd5316b534fbd8df73a0b49062953855cdfc3c750fd9dc
sha256sums = 0f2b09e14b1497c9a1283c5b64a6682fd43daa6ba7ca17eb3dbcc9b0ec46204f
sha256sums = d2a36ccedf4585b33fdba6cb38000aaa022c5b5306efeff2ad58cca52999c827
diff --git a/PKGBUILD b/PKGBUILD
index 389e90b47d59..4e643f920f67 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
_name=VSTPlugins-UhhyouPlugins
pkgname=uhhyou-plugins
-pkgver=0.51.1
+pkgver=0.52.0
pkgrel=1
pkgdesc='A collection of synthesizer and effect VST3 plugins'
arch=(aarch64 x86_64)
@@ -20,7 +20,7 @@ source=(
"pocketfft-$_pocketfft_ref.tar.gz::https://gitlab.mpcdf.mpg.de/mtr/pocketfft/-/archive/$_pocketfft_ref/pocketfft-$_pocketfft_ref.tar.gz"
"vcl-$_vcl_ref.tar.gz::https://github.com/vectorclass/version2/archive/$_vcl_ref.tar.gz"
)
-sha256sums=('cb01d55572ec251d516690198d60a393a65742062cbf676f7928c0580913ae01'
+sha256sums=('fadd875be8059b9caefd5316b534fbd8df73a0b49062953855cdfc3c750fd9dc'
'0f2b09e14b1497c9a1283c5b64a6682fd43daa6ba7ca17eb3dbcc9b0ec46204f'
'd2a36ccedf4585b33fdba6cb38000aaa022c5b5306efeff2ad58cca52999c827')
@@ -49,13 +49,8 @@ build() {
check() {
for _plugin in build/VST3/Release/*.vst3; do
- if [[ $_plugin =~ ClangSynth || $_plugin =~ L4Reverb || $_plugin =~ LightPadSynth ||
- $_plugin =~ PitchShiftDelay ]]; then
- # these plugins seem to use a lot of memory during validation so let's only test basics
- build/bin/Release/validator -suite "General Tests" $_plugin
- else
- build/bin/Release/validator $_plugin
- fi
+ # many plugins seem to use a lot of memory during validation so let's only test basics
+ build/bin/Release/validator -suite "General Tests" $_plugin
done
}