summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIonen Wolkens <ionen@gentoo.org>2023-03-09 13:06:02 -0500
committerIonen Wolkens <ionen@gentoo.org>2023-03-09 15:12:43 -0500
commitf6d977c80de58261c57e631f14785155208078b3 (patch)
treee994ee569b7ea4d5168c3202c9280e34b421c208 /media-sound/jack2/files/jack2-1.9.21-python3.11.patch
parentgames-roguelike/hengband: drop 1.6.2-r1 (diff)
downloadgentoo-f6d977c80de58261c57e631f14785155208078b3.tar.gz
gentoo-f6d977c80de58261c57e631f14785155208078b3.tar.bz2
gentoo-f6d977c80de58261c57e631f14785155208078b3.zip
media-sound/jack2: drop 1.9.21-r1
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'media-sound/jack2/files/jack2-1.9.21-python3.11.patch')
-rw-r--r--media-sound/jack2/files/jack2-1.9.21-python3.11.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/media-sound/jack2/files/jack2-1.9.21-python3.11.patch b/media-sound/jack2/files/jack2-1.9.21-python3.11.patch
deleted file mode 100644
index f4aafcf16aed..000000000000
--- a/media-sound/jack2/files/jack2-1.9.21-python3.11.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-'U' is default and deprecated since python-3.3, becomes a failure in 3.11.
-
-Just a quick fix (rather than bump waf) while waiting for upstream's
-plans to migrate to meson:
-https://github.com/jackaudio/jack2/issues/898
---- a/waflib/ConfigSet.py
-+++ b/waflib/ConfigSet.py
-@@ -314,3 +314,3 @@
- tbl = self.table
-- code = Utils.readf(filename, m='rU')
-+ code = Utils.readf(filename, m='r')
- for m in re_imp.finditer(code):
---- a/waflib/Context.py
-+++ b/waflib/Context.py
-@@ -664,3 +664,3 @@
- try:
-- code = Utils.readf(path, m='rU', encoding=encoding)
-+ code = Utils.readf(path, m='r', encoding=encoding)
- except EnvironmentError: