summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2024-08-24 16:20:27 +0100
committerSam James <sam@gentoo.org>2024-08-24 16:20:27 +0100
commit07139748371f15a6332663f18f6001176c2b8c9e (patch)
treeed185f0408b80d8bbb64f30f5d122e0bc8294e62
parent3a33bdcbea3abc44271fba83863da3e677a276b2 (diff)
downloadkde-07139748371f15a6332663f18f6001176c2b8c9e.tar.gz
kde-07139748371f15a6332663f18f6001176c2b8c9e.tar.bz2
kde-07139748371f15a6332663f18f6001176c2b8c9e.zip
kde-misc/kio-gdrive-common: drop 24.08.0
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r--kde-misc/kio-gdrive-common/Manifest1
-rw-r--r--kde-misc/kio-gdrive-common/kio-gdrive-common-24.08.0.ebuild56
2 files changed, 0 insertions, 57 deletions
diff --git a/kde-misc/kio-gdrive-common/Manifest b/kde-misc/kio-gdrive-common/Manifest
deleted file mode 100644
index eaad7b7ae4d..00000000000
--- a/kde-misc/kio-gdrive-common/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST kio-gdrive-24.08.0.tar.xz 80816 BLAKE2B 0feb10270cee5c64a221c8cb664c0a385dbb18c7be649cc1f530fbb45b75f89581300cdac2d4cc1711fda64f74bede9562046f65508f5c910afb1d4332422663 SHA512 cd1176c22742e642d795be6c72734b23aefcb5fe82bb41a9da8e43de08421055ba29241e63eafe6b927024db1c7b9b1ae1ab441ac385106b069ce2b99e28c588
diff --git a/kde-misc/kio-gdrive-common/kio-gdrive-common-24.08.0.ebuild b/kde-misc/kio-gdrive-common/kio-gdrive-common-24.08.0.ebuild
deleted file mode 100644
index 732c572a03e..00000000000
--- a/kde-misc/kio-gdrive-common/kio-gdrive-common-24.08.0.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2024 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/}"
-KF5_BDEPEND=( "kde-apps/kaccounts-integration:5" )
-KF6_BDEPEND=( "kde-apps/kaccounts-integration:6" )
-KFMIN=5.115.0
-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
-"
-
-ECM_INSTALL_FILES=(
- desktop/gdrive-network.desktop:\${KDE_INSTALL_DATADIR}/remoteview
- desktop/org.kde.kio_gdrive.metainfo.xml:\${KDE_INSTALL_METAINFODIR}
-)
-
-ecm-common-check_deps() {
- return $(has_version -b "kde-apps/kaccounts-integration:6")
-}
-
-ecm-common_inject_heredoc() {
- cat >> CMakeLists.txt <<- _EOF_ || die
- if(KFSLOT STREQUAL "6")
- find_package(KAccounts6 REQUIRED)
- else()
- find_package(KAccounts REQUIRED)
- endif()
-
- 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
-}