From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A0467158041 for ; Tue, 12 Mar 2024 20:32:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B7A21E29D9; Tue, 12 Mar 2024 20:32:33 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9C70BE29D8 for ; Tue, 12 Mar 2024 20:32:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C0D7833BE26 for ; Tue, 12 Mar 2024 20:32:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 131E5FCB for ; Tue, 12 Mar 2024 20:32:31 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1710275478.9876575e6970983a1830fddff5eae0da6c232d23.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtwayland/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-qt/qtwayland/qtwayland-6.6.9999.ebuild dev-qt/qtwayland/qtwayland-6.7.9999.ebuild dev-qt/qtwayland/qtwayland-6.9999.ebuild X-VCS-Directories: dev-qt/qtwayland/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 9876575e6970983a1830fddff5eae0da6c232d23 X-VCS-Branch: master Date: Tue, 12 Mar 2024 20:32:31 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a3c7b96d-f7a3-4f91-af52-4678f52bf928 X-Archives-Hash: 036fb56018376452bf44100459766cfa commit: 9876575e6970983a1830fddff5eae0da6c232d23 Author: Ionen Wolkens gentoo org> AuthorDate: Tue Mar 12 20:25:15 2024 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Tue Mar 12 20:31:18 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9876575e dev-qt/qtwayland: match accessibility IUSE with qtbase:6 Makes use of QT_CONFIG(accessibility) which can result in undefined symbols if was enabled on qtbase then flipped off. Like opengl/vulkan, this flag is typically enabled either globally or not at all and should hopefully not cause conflicts for most users. Technically needed in non-live but given the low impact will wait rather than let this trigger rebuilds (esp. given one of the similarly affected package is qtwebengine). Signed-off-by: Ionen Wolkens gentoo.org> dev-qt/qtwayland/qtwayland-6.6.9999.ebuild | 4 ++-- dev-qt/qtwayland/qtwayland-6.7.9999.ebuild | 4 ++-- dev-qt/qtwayland/qtwayland-6.9999.ebuild | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dev-qt/qtwayland/qtwayland-6.6.9999.ebuild b/dev-qt/qtwayland/qtwayland-6.6.9999.ebuild index 03045fcde32a..3e85bb4f71bc 100644 --- a/dev-qt/qtwayland/qtwayland-6.6.9999.ebuild +++ b/dev-qt/qtwayland/qtwayland-6.6.9999.ebuild @@ -11,11 +11,11 @@ if [[ ${QT6_BUILD_TYPE} == release ]]; then KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" fi -IUSE="compositor qml vulkan" +IUSE="accessibility compositor qml vulkan" RDEPEND=" dev-libs/wayland - ~dev-qt/qtbase-${PV}:6[gui,opengl,vulkan=] + ~dev-qt/qtbase-${PV}:6[accessibility=,gui,opengl,vulkan=] media-libs/libglvnd x11-libs/libxkbcommon compositor? ( diff --git a/dev-qt/qtwayland/qtwayland-6.7.9999.ebuild b/dev-qt/qtwayland/qtwayland-6.7.9999.ebuild index 005196d57b76..90842e7be4d0 100644 --- a/dev-qt/qtwayland/qtwayland-6.7.9999.ebuild +++ b/dev-qt/qtwayland/qtwayland-6.7.9999.ebuild @@ -11,11 +11,11 @@ if [[ ${QT6_BUILD_TYPE} == release ]]; then KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" fi -IUSE="compositor qml vulkan" +IUSE="accessibility compositor qml vulkan" RDEPEND=" dev-libs/wayland - ~dev-qt/qtbase-${PV}:6[gui,opengl,vulkan=,wayland] + ~dev-qt/qtbase-${PV}:6[accessibility=,gui,opengl,vulkan=,wayland] media-libs/libglvnd x11-libs/libxkbcommon compositor? ( diff --git a/dev-qt/qtwayland/qtwayland-6.9999.ebuild b/dev-qt/qtwayland/qtwayland-6.9999.ebuild index 005196d57b76..90842e7be4d0 100644 --- a/dev-qt/qtwayland/qtwayland-6.9999.ebuild +++ b/dev-qt/qtwayland/qtwayland-6.9999.ebuild @@ -11,11 +11,11 @@ if [[ ${QT6_BUILD_TYPE} == release ]]; then KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86" fi -IUSE="compositor qml vulkan" +IUSE="accessibility compositor qml vulkan" RDEPEND=" dev-libs/wayland - ~dev-qt/qtbase-${PV}:6[gui,opengl,vulkan=,wayland] + ~dev-qt/qtbase-${PV}:6[accessibility=,gui,opengl,vulkan=,wayland] media-libs/libglvnd x11-libs/libxkbcommon compositor? (