summaryrefslogtreecommitdiff
path: root/media-sound/guitarix/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-06-20 13:16:21 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-06-20 13:16:21 +0100
commit332b9eb4903f99b0e65722058ce481fdc21b93d3 (patch)
treefef4ca14ec13f6bc1b3f532a6b2c19f7db4f3921 /media-sound/guitarix/files
parent7d1fc8f13082082c2539f20beadcf37089543b8e (diff)
gentoo auto-resync : 20:06:2023 - 13:16:21
Diffstat (limited to 'media-sound/guitarix/files')
-rw-r--r--media-sound/guitarix/files/guitarix-0.41.0-nostrip.patch9
-rw-r--r--media-sound/guitarix/files/guitarix-0.41.0-py3.11.patch6
-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-zita-resampler-1.10.patch6
4 files changed, 25 insertions, 21 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
index 03850a8acb03..74ac61950671 100644
--- a/media-sound/guitarix/files/guitarix-0.41.0-nostrip.patch
+++ b/media-sound/guitarix/files/guitarix-0.41.0-nostrip.patch
@@ -3,13 +3,6 @@ From: Alexander Tsoy <alexander@tsoy.me>
Date: Fri, 5 Jun 2020 17:21:10 +0300
Subject: [PATCH] Do not strip lv2 plugins
----
- waftools/lv2.py | 4 ++--
- wscript | 1 -
- 2 files changed, 2 insertions(+), 3 deletions(-)
-
-diff --git a/waftools/lv2.py b/waftools/lv2.py
-index 7397f6b7..256d52b1 100644
--- 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
@@ -30,8 +23,6 @@ index 7397f6b7..256d52b1 100644
lv2_add_common(tg, lv2_base+'_gui', dst, ["LV2_GUI"], ['-fvisibility=hidden','-Wl,-z,relro,-z,now','-Wl,--exclude-libs,ALL'])
return tg
-diff --git a/wscript b/wscript
-index 3e2114d3..0d49cd16 100644
--- a/wscript
+++ b/wscript
@@ -375,7 +375,6 @@ def configure(conf):
diff --git a/media-sound/guitarix/files/guitarix-0.41.0-py3.11.patch b/media-sound/guitarix/files/guitarix-0.41.0-py3.11.patch
index 34a8bc68c824..f419c2ed7ce7 100644
--- a/media-sound/guitarix/files/guitarix-0.41.0-py3.11.patch
+++ b/media-sound/guitarix/files/guitarix-0.41.0-py3.11.patch
@@ -4,12 +4,6 @@ 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.
----
- trunk/wscript | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/trunk/wscript b/trunk/wscript
-index 947fd3d1..3f1f5cf3 100644
--- a/wscript
+++ b/wscript
@@ -537,7 +537,7 @@ def sub_file(task):
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
new file mode 100644
index 000000000000..6f581521de33
--- /dev/null
+++ b/media-sound/guitarix/files/guitarix-0.44.1-gcc-13.patch
@@ -0,0 +1,25 @@
+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-zita-resampler-1.10.patch b/media-sound/guitarix/files/guitarix-0.44.1-zita-resampler-1.10.patch
index 1eed9bafda27..fe13dc9f0464 100644
--- 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
@@ -6,12 +6,6 @@ Subject: [PATCH] Fix major version detection of zita-resampler >=1.10
https://github.com/brummer10/guitarix/pull/129
Fixes #122
----
- waftools/zita-resampler.py | 9 +++++----
- 1 file changed, 5 insertions(+), 4 deletions(-)
-
-diff --git a/waftools/zita-resampler.py b/waftools/zita-resampler.py
-index 1cd49a2a..ba5bbc7c 100644
--- a/waftools/zita-resampler.py
+++ b/waftools/zita-resampler.py
@@ -18,10 +18,11 @@ def configure(conf):