kde-frameworks/ksecretd-services: drop 6.19.0

Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Andreas Sturmlechner 2025-11-18 21:36:42 +01:00
parent d429e7ebc9
commit 2389ba930e
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.19.0.tar.xz 364584 BLAKE2B d0fd0193d6020d71b039fbcd283e76e66a13e22f90dfb6ee83bc3c0643e16d819f4587316b00b280fb51b5c464b56de20e3fdde8adc121438554e988f0c2a8e0 SHA512 e5e5487d7d8d92833ab3f1ad2c9ece40a87ec938037fbdeb8511ca3514ac5077b54b4a24843b13a99aca4953528455b1a63a72881715178710b8c3783d5e96e5
DIST kwallet-6.20.0.tar.xz 364444 BLAKE2B 48da4d34f248dc5d4279118e68111705957ce2e15491d2f6bd041db88e5ef0ba4f8d34eb3700b8648aec6179889756ca678844a390aef43030bcffba6f3d2ebc SHA512 71ccab5411a808f605c289df77cb09ce771104f3dfc17507d6216051fd3175d616fdf38a3ba1ea925317442c64874dd8c21fb8cb49414043dfacb4237ab9211f

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
}