Browse Source

Update dragonfly-reverb to 3.2.7, drop patches applied upstream

Signed-off-by: falkTX <falktx@falktx.com>
master
falkTX 2 years ago
parent
commit
c3aa21b513
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
5 changed files with 14 additions and 128 deletions
  1. +6
    -0
      sources/plugins/dragonfly-reverb/debian/changelog
  2. +8
    -18
      sources/plugins/dragonfly-reverb/debian/install
  3. +0
    -13
      sources/plugins/dragonfly-reverb/debian/patches/01_fix-make-clean.patch
  4. +0
    -95
      sources/plugins/dragonfly-reverb/debian/patches/02_build-tweaks.patch
  5. +0
    -2
      sources/plugins/dragonfly-reverb/debian/patches/series

+ 6
- 0
sources/plugins/dragonfly-reverb/debian/changelog View File

@@ -1,3 +1,9 @@
dragonfly-reverb (6:3.2.7-1kxstudio1) focal; urgency=medium

* Update

-- falkTX <falktx@falktx.com> Tue, 04 Oct 2022 15:07:12 +0100

dragonfly-reverb (6:3.2.6-1kxstudio2) focal; urgency=medium

* Setup package conflicts vs Ubuntu repo stuff


+ 8
- 18
sources/plugins/dragonfly-reverb/debian/install View File

@@ -1,19 +1,9 @@
bin/DragonflyEarlyReflections usr/bin/
bin/DragonflyEarlyReflections-vst.so usr/lib/vst/
bin/DragonflyEarlyReflections.lv2 usr/lib/lv2/
bin/DragonflyEarlyReflections.vst3 usr/lib/vst3/
bin/DragonflyEarlyReflections usr/bin/
bin/DragonflyHallReverb usr/bin/
bin/DragonflyPlateReverb usr/bin/
bin/DragonflyRoomReverb usr/bin/

bin/DragonflyHallReverb usr/bin/
bin/DragonflyHallReverb-vst.so usr/lib/vst/
bin/DragonflyHallReverb.lv2 usr/lib/lv2/
bin/DragonflyHallReverb.vst3 usr/lib/vst3/

bin/DragonflyPlateReverb usr/bin/
bin/DragonflyPlateReverb-vst.so usr/lib/vst/
bin/DragonflyPlateReverb.lv2 usr/lib/lv2/
bin/DragonflyPlateReverb.vst3 usr/lib/vst3/

bin/DragonflyRoomReverb usr/bin/
bin/DragonflyRoomReverb-vst.so usr/lib/vst/
bin/DragonflyRoomReverb.lv2 usr/lib/lv2/
bin/DragonflyRoomReverb.vst3 usr/lib/vst3/
bin/*.clap usr/lib/clap/
bin/*.lv2 usr/lib/lv2/
bin/*-vst.so usr/lib/vst/
bin/*.vst3 usr/lib/vst3/

+ 0
- 13
sources/plugins/dragonfly-reverb/debian/patches/01_fix-make-clean.patch View File

@@ -1,13 +0,0 @@
--- dragonfly-reverb-3.2.6.orig/Makefile
+++ dragonfly-reverb-3.2.6/Makefile
@@ -45,6 +45,10 @@ clean:
$(MAKE) clean -C plugins/dragonfly-plate-reverb
$(MAKE) clean -C plugins/dragonfly-early-reflections
rm -rf bin build
+ rm -f common/*.d common/*.o
+ rm -f common/freeverb/*.d common/freeverb/*.o
+ rm -f common/kiss_fft/*.d common/kiss_fft/*.o
+ rm -f dpf/utils/lv2_ttl_generator.d
# --------------------------------------------------------------

+ 0
- 95
sources/plugins/dragonfly-reverb/debian/patches/02_build-tweaks.patch View File

@@ -1,95 +0,0 @@
--- dragonfly-reverb-3.2.6.orig/Makefile
+++ dragonfly-reverb-3.2.6/Makefile
@@ -17,7 +17,7 @@ CAN_GENERATE_TTL = true
endif
dgl:
- $(MAKE) -C dpf/dgl
+ $(MAKE) -C dpf/dgl FILE_BROWSER_DISABLED=true
plugins: dgl
$(MAKE) all -C plugins/dragonfly-hall-reverb
--- dragonfly-reverb-3.2.6.orig/plugins/dragonfly-early-reflections/DistrhoPluginInfo.h
+++ dragonfly-reverb-3.2.6/plugins/dragonfly-early-reflections/DistrhoPluginInfo.h
@@ -20,7 +20,6 @@
#ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED
#define DISTRHO_PLUGIN_INFO_H_INCLUDED
-#define DISTRHO_PLUGIN_BRAND "Dragonfly"
#define DISTRHO_PLUGIN_NAME "Dragonfly Early Reflections"
#define DISTRHO_PLUGIN_URI "urn:dragonfly:early"
--- dragonfly-reverb-3.2.6.orig/plugins/dragonfly-early-reflections/Makefile
+++ dragonfly-reverb-3.2.6/plugins/dragonfly-early-reflections/Makefile
@@ -51,6 +51,8 @@ FILES_UI = $(FILES_COMMON) \
# --------------------------------------------------------------
# Do some magic
+FILE_BROWSER_DISABLED = true
+SKIP_RTAUDIO_FALLBACK = true
include ../../dpf/Makefile.plugins.mk
# --------------------------------------------------------------
--- dragonfly-reverb-3.2.6.orig/plugins/dragonfly-hall-reverb/DistrhoPluginInfo.h
+++ dragonfly-reverb-3.2.6/plugins/dragonfly-hall-reverb/DistrhoPluginInfo.h
@@ -21,7 +21,6 @@
#ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED
#define DISTRHO_PLUGIN_INFO_H_INCLUDED
-#define DISTRHO_PLUGIN_BRAND "Dragonfly"
#define DISTRHO_PLUGIN_NAME "Dragonfly Hall Reverb"
#define DISTRHO_PLUGIN_URI "https://github.com/michaelwillis/dragonfly-reverb"
--- dragonfly-reverb-3.2.6.orig/plugins/dragonfly-hall-reverb/Makefile
+++ dragonfly-reverb-3.2.6/plugins/dragonfly-hall-reverb/Makefile
@@ -51,6 +51,8 @@ FILES_UI = $(FILES_COMMON) \
# --------------------------------------------------------------
# Do some magic
+FILE_BROWSER_DISABLED = true
+SKIP_RTAUDIO_FALLBACK = true
include ../../dpf/Makefile.plugins.mk
# --------------------------------------------------------------
--- dragonfly-reverb-3.2.6.orig/plugins/dragonfly-plate-reverb/DistrhoPluginInfo.h
+++ dragonfly-reverb-3.2.6/plugins/dragonfly-plate-reverb/DistrhoPluginInfo.h
@@ -20,7 +20,6 @@
#ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED
#define DISTRHO_PLUGIN_INFO_H_INCLUDED
-#define DISTRHO_PLUGIN_BRAND "Dragonfly"
#define DISTRHO_PLUGIN_NAME "Dragonfly Plate Reverb"
#define DISTRHO_PLUGIN_URI "urn:dragonfly:plate"
--- dragonfly-reverb-3.2.6.orig/plugins/dragonfly-plate-reverb/Makefile
+++ dragonfly-reverb-3.2.6/plugins/dragonfly-plate-reverb/Makefile
@@ -51,6 +51,8 @@ FILES_UI = $(FILES_COMMON) \
# --------------------------------------------------------------
# Do some magic
+FILE_BROWSER_DISABLED = true
+SKIP_RTAUDIO_FALLBACK = true
include ../../dpf/Makefile.plugins.mk
# --------------------------------------------------------------
--- dragonfly-reverb-3.2.6.orig/plugins/dragonfly-room-reverb/DistrhoPluginInfo.h
+++ dragonfly-reverb-3.2.6/plugins/dragonfly-room-reverb/DistrhoPluginInfo.h
@@ -20,7 +20,6 @@
#ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED
#define DISTRHO_PLUGIN_INFO_H_INCLUDED
-#define DISTRHO_PLUGIN_BRAND "Dragonfly"
#define DISTRHO_PLUGIN_NAME "Dragonfly Room Reverb"
#define DISTRHO_PLUGIN_URI "urn:dragonfly:room"
--- dragonfly-reverb-3.2.6.orig/plugins/dragonfly-room-reverb/Makefile
+++ dragonfly-reverb-3.2.6/plugins/dragonfly-room-reverb/Makefile
@@ -51,6 +51,8 @@ FILES_UI = $(FILES_COMMON) \
# --------------------------------------------------------------
# Do some magic
+FILE_BROWSER_DISABLED = true
+SKIP_RTAUDIO_FALLBACK = true
include ../../dpf/Makefile.plugins.mk
# --------------------------------------------------------------

+ 0
- 2
sources/plugins/dragonfly-reverb/debian/patches/series View File

@@ -1,2 +0,0 @@
01_fix-make-clean.patch
02_build-tweaks.patch

Loading…
Cancel
Save