summaryrefslogtreecommitdiff
path: root/media-sound/guitarix/files
diff options
context:
space:
mode:
Diffstat (limited to 'media-sound/guitarix/files')
-rw-r--r--media-sound/guitarix/files/guitarix-0.41.0-nostrip.patch38
-rw-r--r--media-sound/guitarix/files/guitarix-0.44.1-fix-flto.patch16
-rw-r--r--media-sound/guitarix/files/guitarix-0.44.1-gcc-13.patch25
-rw-r--r--media-sound/guitarix/files/guitarix-0.44.1-py3.11.patch20
-rw-r--r--media-sound/guitarix/files/guitarix-0.44.1-zita-resampler-1.10.patch29
5 files changed, 0 insertions, 128 deletions
diff --git a/media-sound/guitarix/files/guitarix-0.41.0-nostrip.patch b/media-sound/guitarix/files/guitarix-0.41.0-nostrip.patch
deleted file mode 100644
index 74ac61950671..000000000000
--- a/media-sound/guitarix/files/guitarix-0.41.0-nostrip.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From f630c226e4d6f342f78a82f6dd6df4fe3e3f3e01 Mon Sep 17 00:00:00 2001
-From: Alexander Tsoy <alexander@tsoy.me>
-Date: Fri, 5 Jun 2020 17:21:10 +0300
-Subject: [PATCH] Do not strip lv2 plugins
-
---- a/waftools/lv2.py
-+++ b/waftools/lv2.py
-@@ -40,7 +40,7 @@ def lv2_add_common(tg, target, install_path, defines=None, linkflags=None, cxxfl
- @Configure.conf
- def lv2(bld, *k, **kw):
- lv2_base, dst = get_lv2_base(bld, kw)
-- tg = bld.shlib(features='strip', *k, **kw)
-+ tg = bld.shlib(*k, **kw)
- cxxflags = []
- if not bld.env['OPT'] and bld.env['SSE2']:
- cxxflags = [ "-msse2", "-mfpmath=sse"]
-@@ -57,7 +57,7 @@ def lv2_gui(bld, *k, **kw):
- if not bld.env['LV2GUI']:
- return None
- lv2_base, dst = get_lv2_base(bld, kw)
-- tg = bld.shlib(features='strip', *k, **kw)
-+ tg = bld.shlib(*k, **kw)
- lv2_add_common(tg, lv2_base+'_gui', dst, ["LV2_GUI"], ['-fvisibility=hidden','-Wl,-z,relro,-z,now','-Wl,--exclude-libs,ALL'])
- return tg
-
---- a/wscript
-+++ b/wscript
-@@ -375,7 +375,6 @@ def configure(conf):
- conf.env['DESKAPPS_DIR'] = os.path.normpath(os.path.join(conf.env['SHAREDIR'], 'applications'))
- conf.env['BIN_NAME'] = APPNAME
- if opt.lv2:
-- conf.gxload('strip')
- conf.gxload('lv2')
- conf.env['LADSPA'] = opt.ladspa
- conf.env['NEW_LADSPA'] = opt.new_ladspa
---
-2.26.2
-
diff --git a/media-sound/guitarix/files/guitarix-0.44.1-fix-flto.patch b/media-sound/guitarix/files/guitarix-0.44.1-fix-flto.patch
deleted file mode 100644
index 695c89c4de7a..000000000000
--- a/media-sound/guitarix/files/guitarix-0.44.1-fix-flto.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-From ecea56a6fa388cfcf29aaff3817ddc0e3518637f Mon Sep 17 00:00:00 2001
-From: brummer10 <brummer-@web.de>
-Date: Sat, 9 Mar 2024 09:12:36 +0100
-Subject: [PATCH] Fix issue #149 build system: LTO detection fails if
- -flto=auto or similar is used
-
---- a/waftools/cpu_optimization.py
-+++ b/waftools/cpu_optimization.py
-@@ -168,6 +168,6 @@ def configure(conf):
- conf.env['OPT'] = False
- cpu_model = append_optimization_flags(conf, cxxflags)
-
-- if '-flto' in cxxflags:
-+ if any(x.startswith('-flto') for x in cxxflags):
- cxxflags.append ("-ffat-lto-objects")
-
diff --git a/media-sound/guitarix/files/guitarix-0.44.1-gcc-13.patch b/media-sound/guitarix/files/guitarix-0.44.1-gcc-13.patch
deleted file mode 100644
index 6f581521de33..000000000000
--- a/media-sound/guitarix/files/guitarix-0.44.1-gcc-13.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From b52736180b6966f24398f8a5ad179a58173473ec Mon Sep 17 00:00:00 2001
-From: Thomas W Rodgers <rodgert@twrodgers.com>
-Date: Tue, 31 Jan 2023 12:00:58 -0800
-Subject: [PATCH] Do not depend on <cstdint> via transitive inclusion
-
-Guitarix fails to compile with the upcoming version of GCC (GCC13) due
-to a change that removes the transitive inclusion of <cstdint> from
-other standard headers.
-
-See also -
- https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/message/HLHKK7P5RB3BLQ5CV4STJGUYBFPC2VTB/
---- a/src/LV2/DSP/gx_common.h
-+++ b/src/LV2/DSP/gx_common.h
-@@ -22,7 +22,7 @@
- #ifndef SRC_HEADERS_GX_COMMON_H_
- #define SRC_HEADERS_GX_COMMON_H_
-
--
-+#include <cstdint>
- #include <cstdlib>
- #include <cmath>
- #include <iostream>
---
-2.39.3
-
diff --git a/media-sound/guitarix/files/guitarix-0.44.1-py3.11.patch b/media-sound/guitarix/files/guitarix-0.44.1-py3.11.patch
deleted file mode 100644
index f419c2ed7ce7..000000000000
--- a/media-sound/guitarix/files/guitarix-0.44.1-py3.11.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-From 39d7c21c4173eb0f121b1bbff439d9cf43331a00 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Hubert=20Figui=C3=A8re?= <hub@figuiere.net>
-Date: Wed, 11 Jan 2023 18:55:36 -0500
-Subject: [PATCH] waf: python 3.11 removed the 'U' open mode
-
-Python3 deprecated it already by making this the default behaviour.
---- a/wscript
-+++ b/wscript
-@@ -537,7 +537,7 @@ def sub_file(task):
- dst_fname = task.outputs[0].abspath()
- lst = task.generator.sub_list
-
-- with open(src_fname, 'rU') as f:
-+ with open(src_fname, 'r') as f:
- txt = f.read()
- for (key, val) in lst:
- re_pat = re.compile(key, re.M)
---
-2.39.2
-
diff --git a/media-sound/guitarix/files/guitarix-0.44.1-zita-resampler-1.10.patch b/media-sound/guitarix/files/guitarix-0.44.1-zita-resampler-1.10.patch
deleted file mode 100644
index fe13dc9f0464..000000000000
--- a/media-sound/guitarix/files/guitarix-0.44.1-zita-resampler-1.10.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 4c15aea1425ef19a5d68387e60abfab830fed20b Mon Sep 17 00:00:00 2001
-From: Alexander Tsoy <alexander@tsoy.me>
-Date: Thu, 15 Jun 2023 22:05:29 +0300
-Subject: [PATCH] Fix major version detection of zita-resampler >=1.10
-
-https://github.com/brummer10/guitarix/pull/129
-
-Fixes #122
---- a/waftools/zita-resampler.py
-+++ b/waftools/zita-resampler.py
-@@ -18,10 +18,11 @@ def configure(conf):
- code="""
- #include <zita-resampler/resampler.h>
- #include <zita-resampler/resampler-table.h>
-- #if ZITA_RESAMPLER_MAJOR_VERSION != %d
-- #error
-- #endif
-- int main(){ return 0; }
-+ int main() {
-+ int maj = zita_resampler_major_version();
-+ if (maj == %d) { return 0; };
-+ return 1;
-+ }
- """ % expected_zita_resampler_version
- conf.check_cxx(
- fragment=code,
---
-2.39.3
-