From 6c3a3b34732e5b21d05a65f6e1f8668ccfd9c854 Mon Sep 17 00:00:00 2001 From: Ionen Wolkens Date: Sun, 28 Sep 2025 00:12:06 -0400 Subject: dev-qt/qtwebengine: drop 6.9.1-r1 Signed-off-by: Ionen Wolkens --- .../files/qtwebengine-6.8.3-gperf3.2.patch | 26 ---------------------- 1 file changed, 26 deletions(-) delete mode 100644 dev-qt/qtwebengine/files/qtwebengine-6.8.3-gperf3.2.patch (limited to 'dev-qt/qtwebengine/files/qtwebengine-6.8.3-gperf3.2.patch') diff --git a/dev-qt/qtwebengine/files/qtwebengine-6.8.3-gperf3.2.patch b/dev-qt/qtwebengine/files/qtwebengine-6.8.3-gperf3.2.patch deleted file mode 100644 index b44934ab59d3..000000000000 --- a/dev-qt/qtwebengine/files/qtwebengine-6.8.3-gperf3.2.patch +++ /dev/null @@ -1,26 +0,0 @@ -Patch status: fixed in >=chromium-137.0.7126.0 - -A old workaround for a gperf-3.1 issue[1] breaks building with the -now fixed gperf-3.2, backport the conditional check[2] which should -work with either. - -[1] https://savannah.gnu.org/bugs/index.php?53029 -[2] https://crrev.com/f8f21fb4aa01f75acbb12abf5ea8c263c6817141 ---- a/src/3rdparty/chromium/third_party/blink/renderer/build/scripts/gperf.py -+++ b/src/3rdparty/chromium/third_party/blink/renderer/build/scripts/gperf.py -@@ -36,8 +36,11 @@ - gperf_output = re.sub(r'\bregister ', '', gperf_output) - # -Wimplicit-fallthrough needs an explicit fallthrough statement, -- # so replace gperf's /*FALLTHROUGH*/ comment with the statement. -- # https://savannah.gnu.org/bugs/index.php?53029 -- gperf_output = gperf_output.replace('/*FALLTHROUGH*/', -- ' [[fallthrough]];') -+ # so replace gperf 3.1's /*FALLTHROUGH*/ comment with the statement. -+ # https://savannah.gnu.org/bugs/index.php?53029 (fixed in 3.2) -+ if re.search( -+ r'/\* C\+\+ code produced by gperf version 3\.[01](\.\d+)? \*/', -+ gperf_output): -+ gperf_output = gperf_output.replace('/*FALLTHROUGH*/', -+ ' [[fallthrough]];') - # -Wpointer-to-int-cast warns about casting pointers to smaller ints - # Replace {(int)(long)&(foo), bar} with -- cgit v1.2.3