kde-frameworks/ksecretd-services: drop 6.18.0

Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Andreas Sturmlechner 2025-12-12 20:20:38 +01:00
parent efaf8892cf
commit ada7219b8e
No known key found for this signature in database
GPG Key ID: AE591BBC73E4DD5E
2 changed files with 0 additions and 63 deletions

View File

@ -1,3 +1,2 @@
DIST kwallet-6.18.0.tar.xz 364524 BLAKE2B 6156c804f1bc7025f7fe9f35f15f693a611765404224e9c9be1d13cb667c4dbf041f02916b5a3b76657175ec28bfe74ed0984d8064543f38044c7e04518cba36 SHA512 3a5a57a5f9a0dea3d1ef7944868b4e784a1eb11943f4dc2fc7246ca5f9eed7351eaa4760bbfe96c118d64b905c6ec3efe7822fbc05fe144e5ae433e06af2a550
DIST kwallet-6.20.0.tar.xz 364444 BLAKE2B 48da4d34f248dc5d4279118e68111705957ce2e15491d2f6bd041db88e5ef0ba4f8d34eb3700b8648aec6179889756ca678844a390aef43030bcffba6f3d2ebc SHA512 71ccab5411a808f605c289df77cb09ce771104f3dfc17507d6216051fd3175d616fdf38a3ba1ea925317442c64874dd8c21fb8cb49414043dfacb4237ab9211f
DIST kwallet-6.21.0.tar.xz 363952 BLAKE2B 8805bd2566b4b5fcfc0d62d647efc9d7580c05a0f9e9875756a7ea156b8dbbd465e5cb80ba64ba694437c33d840f7b7e84ff7cf9c910ba41ca27a1c7b2213e75 SHA512 08ffe2eebfd894f9a1941f29ea005494582115743c93a278349d852d62f26870ff8d78af35341bf2301bb46cdf83120faa0ce5cf37d278d05740802883dcbffa

View File

@ -1,62 +0,0 @@
# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
# this is purely for service file creation
ECM_I18N="false"
ECM_HANDBOOK="false"
KDE_ORG_NAME="kwallet"
inherit ecm-common frameworks.kde.org
DESCRIPTION="D-Bus service files for ksecretd kwallet runtime component"
LICENSE="LGPL-2+"
SLOT="6"
KEYWORDS="amd64 arm64 ~loong ppc64 ~riscv ~x86"
IUSE="systemd"
RDEPEND="!<kde-frameworks/kwallet-runtime-6.18.0-r1:6"
ecm-common_inject_heredoc() {
my_configure_file(){
echo "configure_file(src/runtime/ksecretd/${1}.in \${CMAKE_CURRENT_BINARY_DIR}/${1})"
}
cat >> CMakeLists.txt <<- _EOF_ || die
option(WITH_SYSTEMD "Install service file for portal DBus service" ON) # KDE-bug #509680
$(my_configure_file org.kde.secretservicecompat.service)
if(WITH_SYSTEMD)
$(my_configure_file org.freedesktop.impl.portal.desktop.kwallet.service)
endif()
install(FILES
\${CMAKE_CURRENT_BINARY_DIR}/org.kde.secretservicecompat.service
DESTINATION \${KDE_INSTALL_DBUSSERVICEDIR}
)
if(WITH_SYSTEMD)
install(FILES
\${CMAKE_CURRENT_BINARY_DIR}/org.freedesktop.impl.portal.desktop.kwallet.service
DESTINATION \${KDE_INSTALL_DBUSSERVICEDIR}
)
endif()
_EOF_
}
src_prepare() {
ecm-common_src_prepare
# Safety measure in case new services are added in the future
local known_num_of_services=2
local found_num_of_services=$(find src/runtime/ksecretd -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
}
src_configure() {
local mycmakeargs=( -DWITH_SYSTEMD=$(usex systemd) )
ecm-common_src_configure
}