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 7574E15808B for ; Mon, 21 Feb 2022 16:55:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7ABF6E0857; Mon, 21 Feb 2022 16:55:24 +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 49FEFE0867 for ; Mon, 21 Feb 2022 16:55:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 53E00343016 for ; Mon, 21 Feb 2022 16:55:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A84C5D0 for ; Mon, 21 Feb 2022 16:55:21 +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: <1645459900.71fdb9d0582ccc7f16ae2a66cd5c107a46cf0368.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: sys-auth/polkit-qt/ X-VCS-Repository: proj/kde X-VCS-Files: sys-auth/polkit-qt/polkit-qt-9999.ebuild X-VCS-Directories: sys-auth/polkit-qt/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 71fdb9d0582ccc7f16ae2a66cd5c107a46cf0368 X-VCS-Branch: master Date: Mon, 21 Feb 2022 16:55:21 +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: 5f9c2b47-3172-4446-ba5b-65db2a2a57a2 X-Archives-Hash: 75566b3297a0c7f060156dfe5af16afb commit: 71fdb9d0582ccc7f16ae2a66cd5c107a46cf0368 Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Nov 2 14:06:57 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Feb 21 16:11:40 2022 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=71fdb9d0 sys-auth/polkit-qt: Drop USE examples Closes: https://bugs.gentoo.org/664114 Signed-off-by: Andreas Sturmlechner gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 sys-auth/polkit-qt/polkit-qt-9999.ebuild | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/sys-auth/polkit-qt/polkit-qt-9999.ebuild b/sys-auth/polkit-qt/polkit-qt-9999.ebuild index ebf8c9d12e..e7af88ee55 100644 --- a/sys-auth/polkit-qt/polkit-qt-9999.ebuild +++ b/sys-auth/polkit-qt/polkit-qt-9999.ebuild @@ -18,7 +18,7 @@ fi LICENSE="LGPL-2" SLOT="0" -IUSE="examples" +IUSE="" RDEPEND=" dev-libs/glib:2 @@ -27,7 +27,6 @@ RDEPEND=" dev-qt/qtgui:5 dev-qt/qtwidgets:5 >=sys-auth/polkit-0.103 - examples? ( dev-qt/qtxml:5 ) " DEPEND="${RDEPEND}" @@ -35,8 +34,7 @@ DOCS=( AUTHORS README README.porting TODO ) src_configure() { local mycmakeargs=( - -DBUILD_EXAMPLES=$(usex examples) + -DBUILD_EXAMPLES=OFF ) - cmake_src_configure }