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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CE3B91382C5 for ; Sun, 20 Jun 2021 18:50:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 13D5DE081A; Sun, 20 Jun 2021 18:50:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EFB6BE081A for ; Sun, 20 Jun 2021 18:50:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 988C2335C3D for ; Sun, 20 Jun 2021 18:50:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 321A479A for ; Sun, 20 Jun 2021 18:50:29 +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: <1624215013.33908553ca65a3a48f73a6ecfd9e59c87f6d300b.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-plasma/plasma-desktop/ X-VCS-Repository: proj/kde X-VCS-Files: kde-plasma/plasma-desktop/plasma-desktop-9999.ebuild X-VCS-Directories: kde-plasma/plasma-desktop/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 33908553ca65a3a48f73a6ecfd9e59c87f6d300b X-VCS-Branch: master Date: Sun, 20 Jun 2021 18:50:29 +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: f2cd967c-88ea-4acd-98aa-c9531258a251 X-Archives-Hash: 6166aaf2b98178e2dedb395af303dd72 commit: 33908553ca65a3a48f73a6ecfd9e59c87f6d300b Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jun 20 17:51:28 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jun 20 18:50:13 2021 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=33908553 kde-plasma/plasma-desktop: Add IUSE=telemetry Upstream commit 839ff9f5f71e57b4e1f5f8758bd058c0fbefad49 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-plasma/plasma-desktop/plasma-desktop-9999.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/kde-plasma/plasma-desktop/plasma-desktop-9999.ebuild b/kde-plasma/plasma-desktop/plasma-desktop-9999.ebuild index 3a424efdc6..46bf52dae1 100644 --- a/kde-plasma/plasma-desktop/plasma-desktop-9999.ebuild +++ b/kde-plasma/plasma-desktop/plasma-desktop-9999.ebuild @@ -18,7 +18,7 @@ SRC_URI+=" https://dev.gentoo.org/~asturm/distfiles/${XORGHDRS}.tar.xz" LICENSE="GPL-2" # TODO: CHECK SLOT="5" KEYWORDS="" -IUSE="emoji ibus +kaccounts +policykit scim +semantic-desktop" +IUSE="emoji ibus +kaccounts +policykit scim +semantic-desktop telemetry" COMMON_DEPEND=" >=dev-qt/qtconcurrent-${QTMIN}:5 @@ -98,6 +98,7 @@ COMMON_DEPEND=" policykit? ( >=kde-frameworks/kwallet-${KFMIN}:5 ) scim? ( app-i18n/scim ) semantic-desktop? ( >=kde-frameworks/baloo-${KFMIN}:5 ) + telemetry? ( dev-libs/kuserfeedback:5 ) " DEPEND="${COMMON_DEPEND} dev-libs/boost @@ -155,6 +156,7 @@ src_configure() { $(cmake_use_find_package kaccounts AccountsQt5) $(cmake_use_find_package kaccounts KAccounts) $(cmake_use_find_package semantic-desktop KF5Baloo) + $(cmake_use_find_package telemetry KUserFeedback) ) if ! use emoji && ! use ibus; then mycmakeargs+=( -DCMAKE_DISABLE_FIND_PACKAGE_GLIB2=ON )