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 9B83315838C for ; Mon, 29 Jan 2024 14:38:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A1BA92BC015; Mon, 29 Jan 2024 14:38:44 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 81F3F2BC015 for ; Mon, 29 Jan 2024 14:38:44 +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 8BB24343431 for ; Mon, 29 Jan 2024 14:38:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D6E531082 for ; Mon, 29 Jan 2024 14:38:41 +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: <1706539035.6fe8d42bebd439f4c0754a5ad28d34bbd35113e1.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtmultimedia/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-qt/qtmultimedia/metadata.xml dev-qt/qtmultimedia/qtmultimedia-6.6.9999.ebuild dev-qt/qtmultimedia/qtmultimedia-6.7.9999.ebuild dev-qt/qtmultimedia/qtmultimedia-6.9999.ebuild X-VCS-Directories: dev-qt/qtmultimedia/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 6fe8d42bebd439f4c0754a5ad28d34bbd35113e1 X-VCS-Branch: master Date: Mon, 29 Jan 2024 14:38:41 +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: bb9b7ead-b92f-4187-91e0-a1b90c2f2442 X-Archives-Hash: ca9acc48c39bef4e78c153064ac4f940 commit: 6fe8d42bebd439f4c0754a5ad28d34bbd35113e1 Author: Ionen Wolkens gentoo org> AuthorDate: Mon Jan 29 02:56:22 2024 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Mon Jan 29 14:37:15 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fe8d42b dev-qt/qtmultimedia: match [eglfs=] with qtbase in live (qt6) Spotted the (new) need for this looking at differences between 6.6.1 and upcoming 6.6.2. Fortunately very few users should be using eglfs so it hopefully won't disrupt too much (albeit some may have enabled because wayland REQUIRED_USE formerly requested it even though it was not needed). Signed-off-by: Ionen Wolkens gentoo.org> dev-qt/qtmultimedia/metadata.xml | 1 + dev-qt/qtmultimedia/qtmultimedia-6.6.9999.ebuild | 5 +++-- dev-qt/qtmultimedia/qtmultimedia-6.7.9999.ebuild | 5 +++-- dev-qt/qtmultimedia/qtmultimedia-6.9999.ebuild | 5 +++-- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/dev-qt/qtmultimedia/metadata.xml b/dev-qt/qtmultimedia/metadata.xml index 49778c48acf6..28f9bdbd0ddf 100644 --- a/dev-qt/qtmultimedia/metadata.xml +++ b/dev-qt/qtmultimedia/metadata.xml @@ -6,6 +6,7 @@ Gentoo Qt Project + Enable screen capture support with Qt's EGL Full Screen/Single Surface platform plugin Enable audio support via media-libs/gstreamer Build QML/QtQuick bindings and imports Build the QtMultimediaWidgets module diff --git a/dev-qt/qtmultimedia/qtmultimedia-6.6.9999.ebuild b/dev-qt/qtmultimedia/qtmultimedia-6.6.9999.ebuild index c4294e51cffe..bde425d4bb66 100644 --- a/dev-qt/qtmultimedia/qtmultimedia-6.6.9999.ebuild +++ b/dev-qt/qtmultimedia/qtmultimedia-6.6.9999.ebuild @@ -11,16 +11,17 @@ if [[ ${QT6_BUILD_TYPE} == release ]]; then KEYWORDS="~amd64" fi -IUSE="+X alsa +ffmpeg gstreamer opengl pulseaudio qml v4l vaapi vulkan" +IUSE="+X alsa eglfs +ffmpeg gstreamer opengl pulseaudio qml v4l vaapi vulkan" # tst_qmediaplayerbackend hard requires qml, review in case becomes optional REQUIRED_USE=" || ( ffmpeg gstreamer ) + eglfs? ( ffmpeg opengl ) vaapi? ( ffmpeg opengl ) test? ( qml ) " RDEPEND=" - ~dev-qt/qtbase-${PV}:6[gui,network,opengl=,vulkan=,widgets] + ~dev-qt/qtbase-${PV}:6[eglfs=,gui,network,opengl=,vulkan=,widgets] alsa? ( media-libs/alsa-lib ) ffmpeg? ( ~dev-qt/qtbase-${PV}:6[X=] diff --git a/dev-qt/qtmultimedia/qtmultimedia-6.7.9999.ebuild b/dev-qt/qtmultimedia/qtmultimedia-6.7.9999.ebuild index c4294e51cffe..bde425d4bb66 100644 --- a/dev-qt/qtmultimedia/qtmultimedia-6.7.9999.ebuild +++ b/dev-qt/qtmultimedia/qtmultimedia-6.7.9999.ebuild @@ -11,16 +11,17 @@ if [[ ${QT6_BUILD_TYPE} == release ]]; then KEYWORDS="~amd64" fi -IUSE="+X alsa +ffmpeg gstreamer opengl pulseaudio qml v4l vaapi vulkan" +IUSE="+X alsa eglfs +ffmpeg gstreamer opengl pulseaudio qml v4l vaapi vulkan" # tst_qmediaplayerbackend hard requires qml, review in case becomes optional REQUIRED_USE=" || ( ffmpeg gstreamer ) + eglfs? ( ffmpeg opengl ) vaapi? ( ffmpeg opengl ) test? ( qml ) " RDEPEND=" - ~dev-qt/qtbase-${PV}:6[gui,network,opengl=,vulkan=,widgets] + ~dev-qt/qtbase-${PV}:6[eglfs=,gui,network,opengl=,vulkan=,widgets] alsa? ( media-libs/alsa-lib ) ffmpeg? ( ~dev-qt/qtbase-${PV}:6[X=] diff --git a/dev-qt/qtmultimedia/qtmultimedia-6.9999.ebuild b/dev-qt/qtmultimedia/qtmultimedia-6.9999.ebuild index c4294e51cffe..bde425d4bb66 100644 --- a/dev-qt/qtmultimedia/qtmultimedia-6.9999.ebuild +++ b/dev-qt/qtmultimedia/qtmultimedia-6.9999.ebuild @@ -11,16 +11,17 @@ if [[ ${QT6_BUILD_TYPE} == release ]]; then KEYWORDS="~amd64" fi -IUSE="+X alsa +ffmpeg gstreamer opengl pulseaudio qml v4l vaapi vulkan" +IUSE="+X alsa eglfs +ffmpeg gstreamer opengl pulseaudio qml v4l vaapi vulkan" # tst_qmediaplayerbackend hard requires qml, review in case becomes optional REQUIRED_USE=" || ( ffmpeg gstreamer ) + eglfs? ( ffmpeg opengl ) vaapi? ( ffmpeg opengl ) test? ( qml ) " RDEPEND=" - ~dev-qt/qtbase-${PV}:6[gui,network,opengl=,vulkan=,widgets] + ~dev-qt/qtbase-${PV}:6[eglfs=,gui,network,opengl=,vulkan=,widgets] alsa? ( media-libs/alsa-lib ) ffmpeg? ( ~dev-qt/qtbase-${PV}:6[X=]