summaryrefslogtreecommitdiff
path: root/dev-qt/qtwebengine/files
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2024-11-23 00:27:52 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2024-11-23 09:44:21 +0100
commit43a0e0b1de9180cff7419bdb0cc0670768afd2f1 (patch)
treec52ca31a3dd44d65030102982d7872a216dfe875 /dev-qt/qtwebengine/files
parent35978829ce30dd940bec44fe69a8b1449359cf3e (diff)
downloadgentoo-43a0e0b1de9180cff7419bdb0cc0670768afd2f1.tar.gz
gentoo-43a0e0b1de9180cff7419bdb0cc0670768afd2f1.tar.bz2
gentoo-43a0e0b1de9180cff7419bdb0cc0670768afd2f1.zip
dev-qt/qtwebengine: enable py3.13
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-qt/qtwebengine/files')
-rw-r--r--dev-qt/qtwebengine/files/qtwebengine-5.15.16_p20241115-py3.13-pipes.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/dev-qt/qtwebengine/files/qtwebengine-5.15.16_p20241115-py3.13-pipes.patch b/dev-qt/qtwebengine/files/qtwebengine-5.15.16_p20241115-py3.13-pipes.patch
new file mode 100644
index 000000000000..b04f6a4667bb
--- /dev/null
+++ b/dev-qt/qtwebengine/files/qtwebengine-5.15.16_p20241115-py3.13-pipes.patch
@@ -0,0 +1,21 @@
+diff --git a/src/3rdparty/chromium/build/android/gyp/util/build_utils.py b/src/3rdparty/chromium/build/android/gyp/util/build_utils.py
+index 022980517..e3f82704a 100644
+--- a/src/3rdparty/chromium/build/android/gyp/util/build_utils.py
++++ b/src/3rdparty/chromium/build/android/gyp/util/build_utils.py
+@@ -12,7 +12,6 @@ import fnmatch
+ import json
+ import logging
+ import os
+-import pipes
+ import re
+ import shutil
+ import stat
+@@ -198,7 +197,7 @@ class CalledProcessError(Exception):
+ # A user should be able to simply copy and paste the command that failed
+ # into their shell.
+ copyable_command = '( cd {}; {} )'.format(os.path.abspath(self.cwd),
+- ' '.join(map(pipes.quote, self.args)))
++ printed_cmd)
+ return 'Command failed: {}\n{}'.format(copyable_command, self.output)
+
+