From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1461111-garchives=archives.gentoo.org@lists.gentoo.org> 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 83209158020 for <garchives@archives.gentoo.org>; Sun, 27 Nov 2022 12:06:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B2E74E07FE; Sun, 27 Nov 2022 12:06:12 +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 99583E07FE for <gentoo-commits@lists.gentoo.org>; Sun, 27 Nov 2022 12:06:12 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B094A341250 for <gentoo-commits@lists.gentoo.org>; Sun, 27 Nov 2022 12:06:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 50844760 for <gentoo-commits@lists.gentoo.org>; Sun, 27 Nov 2022 12:06:10 +0000 (UTC) From: "Andreas Sturmlechner" <asturm@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" <asturm@gentoo.org> Message-ID: <1669550743.959ff56929c61ec45e1f1e7b84da66437be5c894.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-frameworks/kwindowsystem/ X-VCS-Repository: proj/kde X-VCS-Files: kde-frameworks/kwindowsystem/kwindowsystem-9999.ebuild X-VCS-Directories: kde-frameworks/kwindowsystem/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 959ff56929c61ec45e1f1e7b84da66437be5c894 X-VCS-Branch: master Date: Sun, 27 Nov 2022 12:06:10 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: bb603a42-9424-48d1-8d9e-c6fd5985970a X-Archives-Hash: 50d4ba72b5376e31cfb6523250e1f1e1 commit: 959ff56929c61ec45e1f1e7b84da66437be5c894 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Sun Nov 27 11:54:43 2022 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Sun Nov 27 12:05:43 2022 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=959ff569 kde-frameworks/kwindowsystem: Add IUSE wayland to pull in runtime plugin All other plugins from kde-plasma/kwayland-integration went into respective Frameworks packages and only the kwindowsystem plugin remains, which makes this possible to depend on. It is necessary because kwindowsystem consumers will need the wayland runtime plugin even on non-Plasma systems. This is not exactly pretty but the same exception as dev-qt/qtgui[wayland]. Bug: https://bugs.gentoo.org/790275 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> kde-frameworks/kwindowsystem/kwindowsystem-9999.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kde-frameworks/kwindowsystem/kwindowsystem-9999.ebuild b/kde-frameworks/kwindowsystem/kwindowsystem-9999.ebuild index e81605d171..c3c41d309f 100644 --- a/kde-frameworks/kwindowsystem/kwindowsystem-9999.ebuild +++ b/kde-frameworks/kwindowsystem/kwindowsystem-9999.ebuild @@ -11,7 +11,7 @@ DESCRIPTION="Framework providing access to properties and features of the window LICENSE="|| ( LGPL-2.1 LGPL-3 ) MIT" KEYWORDS="" -IUSE="X" +IUSE="wayland X" RESTRICT="test" @@ -30,6 +30,7 @@ DEPEND="${RDEPEND} test? ( >=dev-qt/qtwidgets-${QTMIN}:5 ) " BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5" +PDEPEND="wayland? ( >=kde-plasma/kwayland-integration-5.25.5-r1:5 )" DOCS=( docs/README.kstartupinfo )