kde-misc/kio-gdrive-common: drop 24.12.3

Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Andreas Sturmlechner
2025-07-05 15:40:03 +02:00
parent 6097866ada
commit 36d9e6760d
2 changed files with 0 additions and 46 deletions

View File

@@ -1,3 +1,2 @@
DIST kio-gdrive-24.12.3.tar.xz 80464 BLAKE2B 776bcef3f84a37a06c0bc056983361ab22cd9625f215550a54b5dfb4860661f19d516383eef9dce42da7d07117591ae9858f6d56e49d33fa4be05c4bce77faa6 SHA512 bf47a62d7c9e262b15d393c257ebbccc503dbd9728ff12282bc5c9feb9fd241bc71f44f27d6d79042952062f08603ef95a957a83e72cd4f71caa470fddf08d75
DIST kio-gdrive-25.04.2.tar.xz 82432 BLAKE2B 3ea8aedc0b1f097c97b43c6f2a4503e48566d1d3f2adf367c932759a016f772fdfae17a8b3573ebda5d09bf9c7efebf6c6dc9e16e0cdc14372a172079003f0d3 SHA512 279e92b48ffa79bc87429356e0f414c5727dff7ce2c110d860084c457d4eaf08ee800ab476855c63d4d6898f71351bceb3de2d442d9e1b2d19a62b849938546e
DIST kio-gdrive-25.04.3.tar.xz 82416 BLAKE2B 0531e69b0f252960f69775f808b31a35f759ba73f4dc1abac1bfd5ac3430c8965be910e4cb225d2f1ac8ec2a1d353d49bb169ed910eb907d416c62f0a2a2384d SHA512 ef0c6c927772cbe874aa213af8881efce6efe3cd9b7b83636828abe5df8a9699e1add1422f41bd40d3c60141cd45c7abb58e7c7dc1820505c29414679865dc30

View File

@@ -1,45 +0,0 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
ECM_HANDBOOK="true"
KDE_ORG_CATEGORY="network"
KDE_ORG_NAME="${PN/-common/}"
inherit ecm-common gear.kde.org
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="amd64 arm64"
RDEPEND="
!<kde-misc/kio-gdrive-23.08.5-r2:5
!<kde-misc/kio-gdrive-24.05.2-r1:6
"
BDEPEND="kde-apps/kaccounts-integration:6"
ECM_INSTALL_FILES=(
desktop/gdrive-network.desktop:\${KDE_INSTALL_DATADIR}/remoteview
desktop/org.kde.kio_gdrive.metainfo.xml:\${KDE_INSTALL_METAINFODIR}
)
ecm-common_inject_heredoc() {
cat >> CMakeLists.txt <<- _EOF_ || die
find_package(KAccounts6 REQUIRED)
kaccounts_add_service(\${CMAKE_CURRENT_SOURCE_DIR}/kaccounts/google-drive.service.in)
_EOF_
}
src_prepare() {
ecm-common_src_prepare
# Safety measure in case new services are added in the future
local known_num_of_services=1
local found_num_of_services=$(find . -iname "*service.in" | wc -l)
if [[ ${found_num_of_services} != ${known_num_of_services} ]]; then
eerror "Number of service files mismatch!"
eerror "Expected: ${known_num_of_services}"
eerror "Found: ${found_num_of_services}"
die
fi
}