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 26EF9138351 for ; Mon, 23 Mar 2020 23:47:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C3049E095D; Mon, 23 Mar 2020 23:47:09 +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 050BBE0956 for ; Mon, 23 Mar 2020 23:47:08 +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 F3A5F34EFA4 for ; Mon, 23 Mar 2020 23:47:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 652A0198 for ; Mon, 23 Mar 2020 23:47:05 +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: <1584999870.0c5319127a9a72b8cde0e836f750868fbc71619d.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-misc/kio-gdrive/ X-VCS-Repository: proj/kde X-VCS-Files: kde-misc/kio-gdrive/kio-gdrive-1.2.80.ebuild X-VCS-Directories: kde-misc/kio-gdrive/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 0c5319127a9a72b8cde0e836f750868fbc71619d X-VCS-Branch: master Date: Mon, 23 Mar 2020 23:47:05 +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: cf6b24a0-4c70-47b6-9224-ff826e9d11d9 X-Archives-Hash: c24a32784615dc25e54d12040e5df96e commit: 0c5319127a9a72b8cde0e836f750868fbc71619d Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Mar 23 21:44:30 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Mar 23 21:44:30 2020 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=0c531912 kde-misc/kio-gdrive: 1.2.80 (1.3.0 beta) version bump Package-Manager: Portage-2.3.93, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-misc/kio-gdrive/kio-gdrive-1.2.80.ebuild | 47 ++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/kde-misc/kio-gdrive/kio-gdrive-1.2.80.ebuild b/kde-misc/kio-gdrive/kio-gdrive-1.2.80.ebuild new file mode 100644 index 0000000000..f105e34d79 --- /dev/null +++ b/kde-misc/kio-gdrive/kio-gdrive-1.2.80.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +ECM_HANDBOOK="forceoptional" +ECM_TEST="optional" +KFMIN=5.60.0 +QTMIN=5.12.3 +inherit ecm kde.org + +DESCRIPTION="KIO Slave for Google Drive service" +HOMEPAGE="https://phabricator.kde.org/project/profile/72/" + +if [[ ${KDE_BUILD_TYPE} != live ]] ; then + SRC_URI="mirror://kde/unstable/${PN}/${PV}/src/${P}.tar.xz" + KEYWORDS="~amd64 ~arm64 ~x86" +fi + +LICENSE="GPL-2+" +SLOT="5" +IUSE="+kaccounts" + +BDEPEND="dev-util/intltool" +RDEPEND=" + >=dev-qt/qtwidgets-${QTMIN}:5 + >=kde-apps/libkgapi-19.08.0:5 + >=kde-frameworks/kcoreaddons-${KFMIN}:5 + >=kde-frameworks/ki18n-${KFMIN}:5 + >=kde-frameworks/kio-${KFMIN}:5 + >=kde-frameworks/knotifications-${KFMIN}:5 + kaccounts? ( >=kde-apps/kaccounts-integration-20.03.80:5 ) + !kaccounts? ( dev-libs/qtkeychain:=[qt5(+)] ) +" +DEPEND="${RDEPEND} + >=dev-qt/qtgui-${QTMIN}:5 + >=dev-qt/qtnetwork-${QTMIN}:5 +" + +DOCS=( README.md ) + +src_configure() { + local mycmakeargs=( + $(cmake_use_find_package kaccounts KAccounts) + ) + ecm_src_configure +}