Browse Source

Update abgate

Signed-off-by: falkTX <falktx@falktx.com>
pull/19/head
falkTX 3 years ago
parent
commit
7b9e907385
4 changed files with 35 additions and 26 deletions
  1. +7
    -4
      patches/abGate/01_no-desktop-ui.patch
  2. +0
    -21
      patches/abGate/03_fix-ttl-typos.patch
  3. +27
    -0
      patches/abGate/03_fix-wrong-conversion.patch
  4. +1
    -1
      plugins/abgate.json

+ 7
- 4
patches/abGate/01_no-desktop-ui.patch View File

@@ -1,13 +1,16 @@
diff --git a/Makefile b/Makefile diff --git a/Makefile b/Makefile
index 442ad68..598b593 100644
index 0eaca77..fea6344 100644
--- a/Makefile --- a/Makefile
+++ b/Makefile +++ b/Makefile
@@ -6,7 +6,7 @@ INSTALL_DIR ?= $(DESTDIR)$(PREFIX)/lib/lv2
@@ -5,9 +5,9 @@ PREFIX ?= /usr
INSTALL_DIR ?= $(DESTDIR)$(PREFIX)/lib/lv2
CXXFLAGS ?= -g -O3 CXXFLAGS ?= -g -O3
CXX ?= g++ CXX ?= g++
-TARGET ?= gate_gui.so abGateQt/libabGateQt.so gate.so
+TARGET ?= gate.so
-$(BUNDLE): manifest.ttl gate.ttl gate.so gate_gui.so bypass_on.png bypass_off.png knob.png background.png abGateQt/libabGateQt.so
+$(BUNDLE): manifest.ttl gate.ttl gate.so
-$(BUNDLE): manifest.ttl gate.ttl bypass_on.png bypass_off.png knob.png background.png $(TARGET)
+$(BUNDLE): manifest.ttl gate.ttl $(TARGET)
rm -rf $(BUNDLE) rm -rf $(BUNDLE)
mkdir $(BUNDLE) mkdir $(BUNDLE)
cp $^ $(BUNDLE) cp $^ $(BUNDLE)


+ 0
- 21
patches/abGate/03_fix-ttl-typos.patch View File

@@ -1,21 +0,0 @@
diff --git a/gate.ttl b/gate.ttl
index dad79df..ced3a54 100644
--- a/gate.ttl
+++ b/gate.ttl
@@ -1,7 +1,7 @@
@prefix lv2: <http://lv2plug.in/ns/lv2core#>.
@prefix doap: <http://usefulinc.com/ns/doap#>.
@prefix ui: <http://lv2plug.in/ns/extensions/ui#>.
-@prefix units: <http://lv2plug.in/ns/extension/units#>.
+@prefix units: <http://lv2plug.in/ns/extensions/units#>.
@prefix pprops: <http://lv2plug.in/ns/ext/port-props#>.
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@@ -11,7 +11,6 @@
lv2:binary <gate.so>;
doap:name "abGate";
- doap:creator "Antanas Bruzas";
doap:developer [
foaf:name "Antanas Bruzas";

+ 27
- 0
patches/abGate/03_fix-wrong-conversion.patch View File

@@ -0,0 +1,27 @@
From c8f19294b1566b48faf61678fc2c842fd8ca9410 Mon Sep 17 00:00:00 2001
From: falkTX <falktx@falktx.com>
Date: Wed, 4 Aug 2021 10:19:01 +0100
Subject: [PATCH] Fix wrong dB to seconds conversion Likely due to copy&paste 1
step too much

Signed-off-by: falkTX <falktx@falktx.com>
---
gate.ttl | 5 -----
1 file changed, 5 deletions(-)

diff --git a/gate.ttl b/gate.ttl
index e1ca44a..4a89196 100644
--- a/gate.ttl
+++ b/gate.ttl
@@ -75,11 +75,6 @@
lv2:default -70;
lv2:portProperty pprops:hasStrictBounds;
units:unit units:db;
- units:conversion [
- units:to units:s;
- units:factor 0.001;
- ];
-
],
[

+ 1
- 1
plugins/abgate.json View File

@@ -1,7 +1,7 @@
{ {
"name": "abGate", "name": "abGate",
"lv2bundles": ["abGate.lv2"], "lv2bundles": ["abGate.lv2"],
"version": "45b4762ef163b3880a840b1d90afacfa3e2c691f",
"version": "c416c29d66c09da610dc632605adad14781ede8d",
"description": "Noise gate", "description": "Noise gate",
"dlbaseurl": "https://github.com/antanasbruzas/abGate.git", "dlbaseurl": "https://github.com/antanasbruzas/abGate.git",
"dlmethod": "git", "dlmethod": "git",


Loading…
Cancel
Save