summaryrefslogtreecommitdiff
path: root/audio/jack/files/patch-python311
diff options
context:
space:
mode:
Diffstat (limited to 'audio/jack/files/patch-python311')
-rw-r--r--audio/jack/files/patch-python31119
1 files changed, 0 insertions, 19 deletions
diff --git a/audio/jack/files/patch-python311 b/audio/jack/files/patch-python311
deleted file mode 100644
index 6900f5048660..000000000000
--- a/audio/jack/files/patch-python311
+++ /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
---- waflib/ConfigSet.py
-+++ 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):
---- waflib/Context.py
-+++ 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: