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 B7B7D158020 for ; Sun, 27 Nov 2022 12:02:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A1511E07FE; Sun, 27 Nov 2022 12:02:01 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 83B44E07FE for ; Sun, 27 Nov 2022 12:02:01 +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 7D7B6340E85 for ; Sun, 27 Nov 2022 12:02:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D5A9D756 for ; Sun, 27 Nov 2022 12:01:58 +0000 (UTC) From: "Andreas Sturmlechner" 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" Message-ID: <1669550500.4bd248579143233dcae2f8d960614fe4119d0124.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kwindowsystem/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-frameworks/kwindowsystem/kwindowsystem-5.100.0-r1.ebuild kde-frameworks/kwindowsystem/kwindowsystem-5.99.0-r1.ebuild X-VCS-Directories: kde-frameworks/kwindowsystem/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 4bd248579143233dcae2f8d960614fe4119d0124 X-VCS-Branch: master Date: Sun, 27 Nov 2022 12:01:58 +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: 9a9accb1-ec8a-4413-ae6c-14b6a8cd98b5 X-Archives-Hash: b0e7cf49bdbf8dd56d99cc59b2ce8592 commit: 4bd248579143233dcae2f8d960614fe4119d0124 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Nov 27 11:54:43 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Nov 27 12:01:40 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bd24857 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 gentoo.org> .../kwindowsystem/kwindowsystem-5.100.0-r1.ebuild | 44 ++++++++++++++++++++++ .../kwindowsystem/kwindowsystem-5.99.0-r1.ebuild | 44 ++++++++++++++++++++++ 2 files changed, 88 insertions(+) diff --git a/kde-frameworks/kwindowsystem/kwindowsystem-5.100.0-r1.ebuild b/kde-frameworks/kwindowsystem/kwindowsystem-5.100.0-r1.ebuild new file mode 100644 index 000000000000..49367c79de79 --- /dev/null +++ b/kde-frameworks/kwindowsystem/kwindowsystem-5.100.0-r1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +QTMIN=5.15.5 +VIRTUALX_REQUIRED="test" +inherit ecm frameworks.kde.org + +DESCRIPTION="Framework providing access to properties and features of the window manager" + +LICENSE="|| ( LGPL-2.1 LGPL-3 ) MIT" +KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" +IUSE="wayland X" + +RESTRICT="test" + +RDEPEND=" + >=dev-qt/qtgui-${QTMIN}:5 + X? ( + >=dev-qt/qtx11extras-${QTMIN}:5 + x11-libs/libX11 + x11-libs/libXfixes + x11-libs/libxcb + x11-libs/xcb-util-keysyms + ) +" +DEPEND="${RDEPEND} + X? ( x11-base/xorg-proto ) + test? ( >=dev-qt/qtwidgets-${QTMIN}:5 ) +" +BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5" +PDEPEND="wayland? ( kde-plasma/kwayland-integration:5 )" + +DOCS=( docs/README.kstartupinfo ) + +src_configure() { + local mycmakeargs=( + -DKWINDOWSYSTEM_NO_WIDGETS=ON + $(cmake_use_find_package X X11) + ) + + ecm_src_configure +} diff --git a/kde-frameworks/kwindowsystem/kwindowsystem-5.99.0-r1.ebuild b/kde-frameworks/kwindowsystem/kwindowsystem-5.99.0-r1.ebuild new file mode 100644 index 000000000000..0006cc7dcf06 --- /dev/null +++ b/kde-frameworks/kwindowsystem/kwindowsystem-5.99.0-r1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +QTMIN=5.15.5 +VIRTUALX_REQUIRED="test" +inherit ecm frameworks.kde.org + +DESCRIPTION="Framework providing access to properties and features of the window manager" + +LICENSE="|| ( LGPL-2.1 LGPL-3 ) MIT" +KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" +IUSE="wayland X" + +RESTRICT="test" + +RDEPEND=" + >=dev-qt/qtgui-${QTMIN}:5 + X? ( + >=dev-qt/qtx11extras-${QTMIN}:5 + x11-libs/libX11 + x11-libs/libXfixes + x11-libs/libxcb + x11-libs/xcb-util-keysyms + ) +" +DEPEND="${RDEPEND} + X? ( x11-base/xorg-proto ) + 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 ) + +src_configure() { + local mycmakeargs=( + -DKWINDOWSYSTEM_NO_WIDGETS=ON + $(cmake_use_find_package X X11) + ) + + ecm_src_configure +}