summaryrefslogtreecommitdiff
path: root/dev-qt/qtwebengine/files
diff options
context:
space:
mode:
authorIonen Wolkens <ionen@gentoo.org>2024-12-27 17:54:14 -0500
committerIonen Wolkens <ionen@gentoo.org>2025-01-06 17:48:49 -0500
commit3c5d6e6dcb05865a41a742e42b86bceb740d268b (patch)
treee2edb7590395f65bc6e2063d3865f9a536698255 /dev-qt/qtwebengine/files
parent6c0962be33897299de096735b41df7fc61f577e0 (diff)
downloadgentoo-3c5d6e6dcb05865a41a742e42b86bceb740d268b.tar.gz
gentoo-3c5d6e6dcb05865a41a742e42b86bceb740d268b.tar.bz2
gentoo-3c5d6e6dcb05865a41a742e42b86bceb740d268b.zip
dev-qt/qtwebengine: drop 6.7.2, 6.7.3
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'dev-qt/qtwebengine/files')
-rw-r--r--dev-qt/qtwebengine/files/qtwebengine-6.7.2-musl-cstdint.patch12
-rw-r--r--dev-qt/qtwebengine/files/qtwebengine-6.7.3-missing-gn-deps-blink.patch38
-rw-r--r--dev-qt/qtwebengine/files/qtwebengine-6.7.3-missing-gn-deps.patch48
3 files changed, 0 insertions, 98 deletions
diff --git a/dev-qt/qtwebengine/files/qtwebengine-6.7.2-musl-cstdint.patch b/dev-qt/qtwebengine/files/qtwebengine-6.7.2-musl-cstdint.patch
deleted file mode 100644
index c654e68fa2fc..000000000000
--- a/dev-qt/qtwebengine/files/qtwebengine-6.7.2-musl-cstdint.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-https://bugs.gentoo.org/939519
-
-Just one more of these, should be merged with the cstdint patch
-in patchset next update & ideally upstreamed eventually.
---- a/src/3rdparty/chromium/third_party/blink/public/common/page_state/page_state.h
-+++ b/src/3rdparty/chromium/third_party/blink/public/common/page_state/page_state.h
-@@ -6,4 +6,5 @@
- #define THIRD_PARTY_BLINK_PUBLIC_COMMON_PAGE_STATE_PAGE_STATE_H_
-
-+#include <cstdint>
- #include <string>
- #include <vector>
diff --git a/dev-qt/qtwebengine/files/qtwebengine-6.7.3-missing-gn-deps-blink.patch b/dev-qt/qtwebengine/files/qtwebengine-6.7.3-missing-gn-deps-blink.patch
deleted file mode 100644
index 87f19dcceef4..000000000000
--- a/dev-qt/qtwebengine/files/qtwebengine-6.7.3-missing-gn-deps-blink.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-Patch status: fixed in >=chromium-120.0.6088.0 / Qt6.8.0
-
-Backport from [1] for [2] to fix a race condition.
-
-[1] https://crrev.com/ac2ad9c9f01bf255fd123785bd37d3b0ec44e410
-[2] https://bugs.gentoo.org/942142
---- a/src/3rdparty/chromium/third_party/blink/public/BUILD.gn
-+++ b/src/3rdparty/chromium/third_party/blink/public/BUILD.gn
-@@ -437,4 +437,5 @@
- "//third_party/blink/public/common",
- "//third_party/blink/public/common:headers",
-+ "//third_party/blink/renderer/platform:make_platform_generated",
- "//ui/accessibility:ax_base",
- "//ui/base/dragdrop/mojom:mojom_shared",
---- a/src/3rdparty/chromium/third_party/blink/renderer/platform/BUILD.gn
-+++ b/src/3rdparty/chromium/third_party/blink/renderer/platform/BUILD.gn
-@@ -142,5 +142,8 @@
- group("make_platform_generated") {
- visibility = [] # Allow re-assignment of list.
-- visibility = [ "//third_party/blink/renderer/*" ]
-+ visibility = [
-+ "//third_party/blink/public:blink_headers",
-+ "//third_party/blink/renderer/*",
-+ ]
- public_deps = [
- ":bindings_buildflags",
-@@ -151,4 +154,5 @@
- ":runtime_feature_state_override_context",
- "//third_party/blink/public/common:buildflags",
-+ "//third_party/blink/renderer/platform/heap:blink_heap_buildflags",
- "//third_party/blink/renderer/platform/network:make_generated",
- ]
-@@ -197,5 +201,4 @@
- "//third_party/blink/public/mojom:mojom_platform_blink",
- "//third_party/blink/public/mojom:web_bluetooth_mojo_bindings_blink",
-- "//third_party/blink/renderer/platform/heap:blink_heap_buildflags",
- "//third_party/blink/renderer/platform/network:make_generated",
- "//third_party/blink/renderer/platform/wtf",
diff --git a/dev-qt/qtwebengine/files/qtwebengine-6.7.3-missing-gn-deps.patch b/dev-qt/qtwebengine/files/qtwebengine-6.7.3-missing-gn-deps.patch
deleted file mode 100644
index 032a0fd617d8..000000000000
--- a/dev-qt/qtwebengine/files/qtwebengine-6.7.3-missing-gn-deps.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-Patch status: needs upstreaming
-
-Add missing dependencies for rare race conditions, these are all
-related to Qt-speific changes as far as I can see while normal
-chromium has the right dependencies.
-
-https://bugs.gentoo.org/942142
---- a/src/3rdparty/chromium/components/autofill/core/browser/BUILD.gn
-+++ b/src/3rdparty/chromium/components/autofill/core/browser/BUILD.gn
-@@ -768,4 +768,5 @@
- deps = []
- deps = [
-+ ":buildflags",
- "//base",
- "//base:i18n",
---- a/src/3rdparty/chromium/components/history/core/browser/BUILD.gn
-+++ b/src/3rdparty/chromium/components/history/core/browser/BUILD.gn
-@@ -184,4 +184,8 @@
- "//components/sync",
- ]
-+
-+ deps += [
-+ "//components/signin/public/base:signin_buildflags",
-+ ]
- }
-
---- a/src/3rdparty/chromium/qtwebengine/browser/extensions/api/BUILD.gn
-+++ b/src/3rdparty/chromium/qtwebengine/browser/extensions/api/BUILD.gn
-@@ -29,4 +29,5 @@
-
- deps = [
-+ "//build/config/chromebox_for_meetings:buildflags",
- "//chrome/common:buildflags",
- "//content/public/browser",
-@@ -46,4 +47,5 @@
- deps = [
- "//content/public/browser",
-+ "//qtwebengine/common/extensions/api:api",
- ]
- }
---- a/src/core/ozone/BUILD.gn
-+++ b/src/core/ozone/BUILD.gn
-@@ -22,4 +22,5 @@
- deps = [
- "//base",
-+ "//media/gpu:buildflags",
- "//ui/base:buildflags",
- "//ui/ozone:ozone_base",