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 A1D16138350 for ; Sat, 8 Feb 2020 20:02:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 586C1E083B; Sat, 8 Feb 2020 20:02:21 +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 39160E083B for ; Sat, 8 Feb 2020 20:02:21 +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 22B0A34E82B for ; Sat, 8 Feb 2020 20:02:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4E8EC12B for ; Sat, 8 Feb 2020 20:02:18 +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: <1581192110.526c53741d3f25dcb9e15a4dffe5545ec0b724fb.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-apps/pim-sieve-editor/ X-VCS-Repository: proj/kde X-VCS-Files: kde-apps/pim-sieve-editor/metadata.xml kde-apps/pim-sieve-editor/pim-sieve-editor-9999.ebuild X-VCS-Directories: kde-apps/pim-sieve-editor/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 526c53741d3f25dcb9e15a4dffe5545ec0b724fb X-VCS-Branch: master Date: Sat, 8 Feb 2020 20:02:18 +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: ab89b75a-42c0-40e3-9fe7-25d40efff4be X-Archives-Hash: d21aec16ddc05eb0810d8c74595b7aaa commit: 526c53741d3f25dcb9e15a4dffe5545ec0b724fb Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Feb 8 19:26:33 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Feb 8 20:01:50 2020 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=526c5374 kde-apps/pim-sieve-editor: Add USE feedback Upstream commit 63350abc9bb145da1ec2c32eae453346e7329248 Package-Manager: Portage-2.3.87, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-apps/pim-sieve-editor/metadata.xml | 3 +++ kde-apps/pim-sieve-editor/pim-sieve-editor-9999.ebuild | 11 ++++++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/kde-apps/pim-sieve-editor/metadata.xml b/kde-apps/pim-sieve-editor/metadata.xml index 2fdbf33d96..6bb4132173 100644 --- a/kde-apps/pim-sieve-editor/metadata.xml +++ b/kde-apps/pim-sieve-editor/metadata.xml @@ -5,4 +5,7 @@ kde@gentoo.org Gentoo KDE Project + + Send anonymized usage information to KDE so they can better understand our users + diff --git a/kde-apps/pim-sieve-editor/pim-sieve-editor-9999.ebuild b/kde-apps/pim-sieve-editor/pim-sieve-editor-9999.ebuild index 61477d9daa..ca423043d6 100644 --- a/kde-apps/pim-sieve-editor/pim-sieve-editor-9999.ebuild +++ b/kde-apps/pim-sieve-editor/pim-sieve-editor-9999.ebuild @@ -16,7 +16,7 @@ DESCRIPTION="Assistant for editing IMAP Sieve filters" LICENSE="GPL-2+ handbook? ( FDL-1.2+ )" SLOT="5" KEYWORDS="" -IUSE="" +IUSE="feedback" DEPEND=" >=dev-qt/qtgui-${QTMIN}:5 @@ -42,5 +42,14 @@ DEPEND=" >=kde-frameworks/kwallet-${KFMIN}:5 >=kde-frameworks/kwidgetsaddons-${KFMIN}:5 >=kde-frameworks/kxmlgui-${KFMIN}:5 + feedback? ( dev-libs/kuserfeedback:5 ) " RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + $(cmake_use_find_package feedback KUserFeedback) + ) + + ecm_src_configure +}