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: 23.08.1 version bump
Signed-off-by: Andreas Sturmlechner <[email protected]>
- Loading branch information
Showing
2 changed files
with
48 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-23.04.3.tar.xz 79188 BLAKE2B 327eb6993854ea1bd626a389be74f426425de131f7c30259eff4381ba614a28dd7f3d150d2c5572c96cfa2d68e5ec94d0129e35268356c61c7c069ab7ad7ce45 SHA512 a5934f5d338e63643434babe60b561a19c106169fe060bd5c9301208fcef9e14a8e83695aaaf8c359e366b0f76163cfcabff4b59776ca7766b11fe46126fe41e | ||
DIST kio-gdrive-23.08.0.tar.xz 79416 BLAKE2B bd2d1c444b193725dc03411fb2b8b7aa77d2578cfbad36d4811163c008d120763687757af98debc8c861e7bd05dd483477a402baaef502b264c00d8ca0d92ba3 SHA512 c5ef3a8fb78cb60ddce97fdf77326433b2e8555f2d4cd4db56dafea213b9c0050ff8ac3409807427c0c876348d36e7f4405049ead1e8a68067ef3cf8a199660b | ||
DIST kio-gdrive-23.08.1.tar.xz 79424 BLAKE2B 3788106f49d26e0edf89562d5ad5f042412b67b4232aa58c045b330a53f8d5d38681fc056583fabeedd89e57a4566ff026cd4a48f0361dfb09646222a3c874d7 SHA512 93ce01d9727863765aa9d800802c39363ca678312a2104854b375bfbd987b81f560ed494d5c0c23707f74e97a1b0ee0544fa3fd6f9882dd2284a98b41deb3f24 |
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,47 @@ | ||
# Copyright 1999-2023 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
ECM_HANDBOOK="forceoptional" | ||
ECM_TEST="optional" | ||
KDE_ORG_CATEGORY="network" | ||
KFMIN=5.106.0 | ||
QTMIN=5.15.9 | ||
inherit ecm gear.kde.org | ||
|
||
DESCRIPTION="KIO worker for Google Drive service" | ||
HOMEPAGE="https://apps.kde.org/kio_gdrive/" | ||
|
||
LICENSE="GPL-2+" | ||
SLOT="5" | ||
KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" | ||
IUSE="+share" | ||
|
||
COMMON_DEPEND=" | ||
>=dev-qt/qtgui-${QTMIN}:5 | ||
>=dev-qt/qtwidgets-${QTMIN}:5 | ||
>=kde-apps/kaccounts-integration-20.08.3: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 | ||
share? ( >=kde-frameworks/purpose-${KFMIN}:5 ) | ||
" | ||
DEPEND="${COMMON_DEPEND} | ||
>=dev-qt/qtnetwork-${QTMIN}:5 | ||
" | ||
RDEPEND="${COMMON_DEPEND} | ||
>=kde-apps/kaccounts-providers-20.08.3:5 | ||
" | ||
BDEPEND="dev-util/intltool" | ||
|
||
DOCS=( README.md ) | ||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
$(cmake_use_find_package share KF5Purpose) | ||
) | ||
ecm_src_configure | ||
} |