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 BA3D5158088 for ; Sat, 15 Jan 2022 15:06:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5E8152BC032; Sat, 15 Jan 2022 15:06:19 +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 2ED732BC032 for ; Sat, 15 Jan 2022 15:06:19 +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 D7338342D95 for ; Sat, 15 Jan 2022 15:06:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 46EE4291 for ; Sat, 15 Jan 2022 15:06:16 +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: <1642256996.8903801dbd75c4bae7e4ea51754de1f1d03975f9.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-plasma/kinfocenter/ X-VCS-Repository: proj/kde X-VCS-Files: kde-plasma/kinfocenter/kinfocenter-9999.ebuild X-VCS-Directories: kde-plasma/kinfocenter/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 8903801dbd75c4bae7e4ea51754de1f1d03975f9 X-VCS-Branch: master Date: Sat, 15 Jan 2022 15:06:16 +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: 32f3c837-8c33-4156-a051-31bf0ed96954 X-Archives-Hash: 48ef513bb4dfeba0c9dfc197a5837a83 commit: 8903801dbd75c4bae7e4ea51754de1f1d03975f9 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Jan 15 14:27:52 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Jan 15 14:29:56 2022 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=8903801d kde-plasma/kinfocenter: Drop IUSE=wayland, add new optfeature Upstream commit dd6b643df7a2ff78f19d796eba2990f09484865f Bug: https://bugs.gentoo.org/830645 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-plasma/kinfocenter/kinfocenter-9999.ebuild | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/kde-plasma/kinfocenter/kinfocenter-9999.ebuild b/kde-plasma/kinfocenter/kinfocenter-9999.ebuild index 6c81794e0e..7ae4e2bd12 100644 --- a/kde-plasma/kinfocenter/kinfocenter-9999.ebuild +++ b/kde-plasma/kinfocenter/kinfocenter-9999.ebuild @@ -16,9 +16,9 @@ SRC_URI+=" https://www.gentoo.org/assets/img/logo/gentoo-3d-small.png -> glogo-s LICENSE="GPL-2" # TODO: CHECK SLOT="5" KEYWORDS="" -IUSE="gles2-only ieee1394 +opengl +pci usb wayland +X" +IUSE="gles2-only ieee1394 +opengl +pci usb +X" -REQUIRED_USE="opengl? ( X ) wayland? ( || ( opengl gles2-only ) )" +REQUIRED_USE="opengl? ( X )" DEPEND=" >=dev-qt/qtdbus-${QTMIN}:5 @@ -45,10 +45,6 @@ DEPEND=" ) pci? ( sys-apps/pciutils ) usb? ( virtual/libusb:1 ) - wayland? ( - >=kde-frameworks/kwayland-${KFMIN}:5 - media-libs/mesa[egl(+)] - ) X? ( x11-libs/libX11 ) " RDEPEND="${DEPEND} @@ -63,8 +59,6 @@ src_configure() { $(cmake_use_find_package ieee1394 RAW1394) $(cmake_use_find_package pci PCIUTILS) $(cmake_use_find_package usb USB1) - $(cmake_use_find_package wayland EGL) - $(cmake_use_find_package wayland KF5Wayland) $(cmake_use_find_package X X11) ) @@ -95,5 +89,6 @@ pkg_postinst() { optfeature "Vulkan graphics API information module" dev-util/vulkan-tools optfeature "advanced CPU information module" sys-apps/util-linux fi + optfeature "Wayland information module" app-misc/wayland-utils ecm_pkg_postinst }