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 2CC8213997F for ; Wed, 13 Nov 2019 02:00:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4B253E0869; Wed, 13 Nov 2019 02:00:22 +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 2FD59E0869 for ; Wed, 13 Nov 2019 02:00:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 A645F34CCDD for ; Wed, 13 Nov 2019 02:00:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5FB298B1 for ; Wed, 13 Nov 2019 02:00:01 +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: <1573610365.62fbd45389fa5ad371700416d55993463d945fc3.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-apps/kaccounts-mobile/ X-VCS-Repository: proj/kde X-VCS-Files: kde-apps/kaccounts-mobile/kaccounts-mobile-9999.ebuild X-VCS-Directories: kde-apps/kaccounts-mobile/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 62fbd45389fa5ad371700416d55993463d945fc3 X-VCS-Branch: master Date: Wed, 13 Nov 2019 02:00:01 +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: 250f0030-b00e-4a3e-b262-2d1eeb26126b X-Archives-Hash: a73ee836a1ec1471fb31d3e5f7ad09e6 commit: 62fbd45389fa5ad371700416d55993463d945fc3 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Nov 13 01:48:03 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Nov 13 01:59:25 2019 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=62fbd453 kde-apps/kaccounts-mobile: Port to ecm.eclass and kde.org.eclass Package-Manager: Portage-2.3.79, Repoman-2.3.18 Signed-off-by: Andreas Sturmlechner gentoo.org> .../kaccounts-mobile/kaccounts-mobile-9999.ebuild | 30 ++++++++++++---------- 1 file changed, 17 insertions(+), 13 deletions(-) diff --git a/kde-apps/kaccounts-mobile/kaccounts-mobile-9999.ebuild b/kde-apps/kaccounts-mobile/kaccounts-mobile-9999.ebuild index 8ba6e81e95..2b36d52745 100644 --- a/kde-apps/kaccounts-mobile/kaccounts-mobile-9999.ebuild +++ b/kde-apps/kaccounts-mobile/kaccounts-mobile-9999.ebuild @@ -3,12 +3,16 @@ EAPI=7 -inherit kde5 +PVCUT=$(ver_cut 1-3) +KFMIN=5.60.0 +QTMIN=5.12.3 +inherit ecm kde.org DESCRIPTION="KDE accounts providers" HOMEPAGE="https://community.kde.org/KTp" -LICENSE="LGPL-2.1" +LICENSE="LGPL-2.1" +SLOT="5" KEYWORDS="" IUSE="google" @@ -16,20 +20,20 @@ BDEPEND=" virtual/pkgconfig " DEPEND=" - $(add_frameworks_dep kconfig) - $(add_frameworks_dep kcontacts) - $(add_frameworks_dep kcoreaddons) - $(add_frameworks_dep ki18n) - $(add_frameworks_dep kio) - $(add_qt_dep qtdeclarative) - $(add_qt_dep qtgui) - $(add_qt_dep qtnetwork) - $(add_qt_dep qtxml) + >=dev-qt/qtdeclarative-${QTMIN}:5 + >=dev-qt/qtgui-${QTMIN}:5 + >=dev-qt/qtnetwork-${QTMIN}:5 + >=dev-qt/qtxml-${QTMIN}:5 + >=kde-frameworks/kconfig-${KFMIN}:5 + >=kde-frameworks/kcontacts-${KFMIN}:5 + >=kde-frameworks/kcoreaddons-${KFMIN}:5 + >=kde-frameworks/ki18n-${KFMIN}:5 + >=kde-frameworks/kio-${KFMIN}:5 net-libs/accounts-qt net-libs/signond google? ( - $(add_kdeapps_dep libkgapi) >=dev-qt/qtwebkit-5.212.0_pre20180120:5 + >=kde-apps/libkgapi-${PVCUT}:5 ) " RDEPEND="${DEPEND}" @@ -40,5 +44,5 @@ src_configure() { $(cmake-utils_use_find_package google Qt5WebKitWidgets) ) - kde5_src_configure + ecm_src_configure }