Diff qtwebengine-6.10.1 with a qtwebengine-6.9999

/usr/portage/dev-qt/qtwebengine/qtwebengine-6.9999.ebuild 2026-03-03 11:46:17.187004746 +0300
9 9

  
10 10
DESCRIPTION="Library for rendering dynamic web content in Qt6 C++ and QML applications"
11 11
SRC_URI+="
12
	https://dev.gentoo.org/~ionen/distfiles/${PN}-6.10-patchset-8.tar.xz
12
	https://dev.gentoo.org/~ionen/distfiles/${PN}-6.11-patchset-1.tar.xz
13 13
"
14 14

  
15 15
if [[ ${QT6_BUILD_TYPE} == release ]]; then
16
	KEYWORDS="amd64 arm64"
16
	KEYWORDS="~amd64 ~arm64"
17 17
fi
18 18

  
19 19
IUSE="
......
108 108

  
109 109
PATCHES+=(
110 110
	# add extras as needed here, may merge in set if carries across versions
111
	"${FILESDIR}"/${PN}-6.10.1-clang-bfd.patch
111
	"${FILESDIR}"/${PN}-6.10.2-glibc-2.43.patch
112 112
)
113 113

  
114 114
python_check_deps() {
......
208 208
		# issues (e.g. builds but some files don't play even with support)
209 209
		-DQT_FEATURE_webengine_system_ffmpeg=OFF
210 210

  
211
		# currently seems unused with our configuration, doesn't link and grep
212
		# seems(?) to imply no dlopen nor using bundled (TODO: check again)
213
		-DQT_FEATURE_webengine_system_openh264=OFF
214

  
215 211
		# use bundled re2 to avoid complications, Qt has also disabled
216 212
		# this by default in 6.7.3+ (bug #913923)
217 213
		-DQT_FEATURE_webengine_system_re2=OFF
218 214

  
215
		# currently seems unused with our configuration, doesn't link and grep
216
		# seems(?) to imply no dlopen nor using bundled (TODO: check again)
217
		-DQT_FEATURE_webengine_system_openh264=OFF
218

  
219 219
		# system_libvpx=ON is intentionally ignored with USE=vaapi which leads
220 220
		# to using system's being less tested, prefer disabling for now until
221 221
		# vaapi can use it as well
......
293 293
	local CMAKE_SKIP_TESTS=(
294 294
		# fails with *-sandbox
295 295
		tst_certificateerror
296
		tst_inspectorserver
296 297
		tst_loadsignals
297 298
		tst_qquickwebengineview
298 299
		tst_qwebengineglobalsettings
Thank you!