forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kde-misc/kio-gdrive: 22.04.1 version bump
Signed-off-by: Andreas Sturmlechner <[email protected]>
- Loading branch information
Showing
2 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST kio-gdrive-21.12.3.tar.xz 71128 BLAKE2B 31139ab720a06bdb65057b41ea56c96234965e1c0f325ae37bfa506ca5db0ac56ad81496890afda1423c77905d25168ddef8d1d0cddf3c58ebab635cf60ce28a SHA512 cb2cbc10ff14aa00c1a5b64ada1dfce6bdc7070f27b39613b6ec1d9f147a5d73356329f72c6db4eca783537550e78610b257d549f013e7ad122fec917b2165c0 | ||
DIST kio-gdrive-22.04.0.tar.xz 72000 BLAKE2B 1c57a1ea198f4a7fc831c5d8a1c19b66f98a3414a2e79345e946904037feb54a2bd357b88dadffed9e601462f49f2f6a63c4f4e55a73669a34dd9cf281c85557 SHA512 1d1dfedd33d13c9613d6ce195c80d44e95cd7096a7f5c2892b85dc06b7ea6b1112f868290a7b126782400c7749a4084ed40c0abd55e0c931da7ef102acd3eec9 | ||
DIST kio-gdrive-22.04.1.tar.xz 72044 BLAKE2B 69bbbcfdcd1a4913e2baa3bc62d6b9d779c9db7a5743deaf6a4078c8bbb4a57ccb8ecd454093fc1d795932c2c05945aded3129402cafb95b095545b0af1378ac SHA512 e67c7a7d517947fb0f1f54a6f3e4a4ee5fa5a7713936b0615272127edd553f89210ecbd74b564962966f3c5047ee1581d1d2ee6078584cb6bde58033a8c57470 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# Copyright 1999-2022 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
ECM_HANDBOOK="forceoptional" | ||
ECM_TEST="optional" | ||
KDE_GEAR="true" | ||
KDE_ORG_CATEGORY="network" | ||
KFMIN=5.92.0 | ||
QTMIN=5.15.3 | ||
inherit ecm kde.org | ||
|
||
DESCRIPTION="KIO Slave for Google Drive service" | ||
HOMEPAGE="https://apps.kde.org/kio_gdrive/" | ||
|
||
LICENSE="GPL-2+" | ||
SLOT="5" | ||
KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" | ||
IUSE="+kaccounts +share" | ||
|
||
REQUIRED_USE="share? ( kaccounts )" | ||
|
||
COMMON_DEPEND=" | ||
>=dev-qt/qtgui-${QTMIN}:5 | ||
>=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.08.3:5 ) | ||
!kaccounts? ( dev-libs/qtkeychain:=[qt5(+)] ) | ||
share? ( >=kde-frameworks/purpose-${KFMIN}:5 ) | ||
" | ||
DEPEND="${COMMON_DEPEND} | ||
>=dev-qt/qtnetwork-${QTMIN}:5 | ||
" | ||
RDEPEND="${COMMON_DEPEND} | ||
kaccounts? ( >=kde-apps/kaccounts-providers-20.08.3:5 ) | ||
" | ||
BDEPEND="dev-util/intltool" | ||
|
||
DOCS=( README.md ) | ||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
$(cmake_use_find_package kaccounts KAccounts) | ||
$(cmake_use_find_package share KF5Purpose) | ||
) | ||
ecm_src_configure | ||
} |