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 BA302138334 for ; Wed, 26 Dec 2018 19:04:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A1832E09F4; Wed, 26 Dec 2018 19:04:07 +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 7F846E09F4 for ; Wed, 26 Dec 2018 19:04:07 +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 A11D3335C31 for ; Wed, 26 Dec 2018 19:04:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CE6CA44B for ; Wed, 26 Dec 2018 19:04:03 +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: <1545850954.6f1281b6e9c4b44395071f6fa6a74b146dde9321.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-apps/kdepim-runtime/ X-VCS-Repository: proj/kde X-VCS-Files: kde-apps/kdepim-runtime/kdepim-runtime-9999.ebuild X-VCS-Directories: kde-apps/kdepim-runtime/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 6f1281b6e9c4b44395071f6fa6a74b146dde9321 X-VCS-Branch: master Date: Wed, 26 Dec 2018 19:04:03 +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: 1d2348c8-88ab-4c54-9da0-8a7dd67e1434 X-Archives-Hash: b0ae44fc3a4f44452a24f539137e544b commit: 6f1281b6e9c4b44395071f6fa6a74b146dde9321 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Dec 26 19:02:34 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Dec 26 19:02:34 2018 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=6f1281b6 kde-apps/kdepim-runtime: Drop USE oauth, no longer optional Upstream commit 813e0ba075600a10546b76ae8a5494b10f254fbd Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-apps/kdepim-runtime/kdepim-runtime-9999.ebuild | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/kde-apps/kdepim-runtime/kdepim-runtime-9999.ebuild b/kde-apps/kdepim-runtime/kdepim-runtime-9999.ebuild index a098bb9c0e..5bbef5d7c4 100644 --- a/kde-apps/kdepim-runtime/kdepim-runtime-9999.ebuild +++ b/kde-apps/kdepim-runtime/kdepim-runtime-9999.ebuild @@ -11,7 +11,7 @@ inherit kde5 DESCRIPTION="Runtime plugin collection to extend the functionality of KDE PIM" LICENSE="GPL-2+ LGPL-2.1+" KEYWORDS="" -IUSE="+oauth" +IUSE="" # TODO kolab COMMON_DEPEND=" @@ -55,13 +55,13 @@ COMMON_DEPEND=" $(add_qt_dep qtdbus) $(add_qt_dep qtgui) $(add_qt_dep qtnetwork) + $(add_qt_dep qtnetworkauth) $(add_qt_dep qtspeech) $(add_qt_dep qtwebengine 'widgets') $(add_qt_dep qtwidgets) $(add_qt_dep qtxml) dev-libs/cyrus-sasl:2 dev-libs/libical:= - oauth? ( $(add_qt_dep qtnetworkauth) ) " DEPEND="${COMMON_DEPEND} $(add_qt_dep qtxmlpatterns) @@ -74,11 +74,3 @@ RDEPEND="${COMMON_DEPEND} " RESTRICT+=" test" - -src_configure() { - local mycmakeargs=( - $(cmake-utils_use_find_package oauth Qt5NetworkAuth) - ) - - kde5_src_configure -}