mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
kde-frameworks/purpose-kaccounts-services: 6.12.0 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
DIST purpose-6.10.0.tar.xz 188940 BLAKE2B a51200beca1dad78b164f276b1b4333455cc8af8f805fb9be4873789879e1f3edd2cbb69614ca4b192e036fa1bd4746bd7f4114e12cc1751e0877e4914dd6b6f SHA512 b6d847e4715a5779c10da92179db9d0a858c62582b729bcc25fc1d2e9796cfa634d4cb1cf49283c3d0364f96f97fc3420895ab4aad526920d65fcf2518e4b39f
|
||||
DIST purpose-6.11.0.tar.xz 188056 BLAKE2B 5bf26165cd60da956e9a5fcb95ba4cf3fc0362376f77ac3799bcabe9d0835a862178d642e068194f55354c439bf6fd1c4341847e6ffdc147fca0560c3fd947e0 SHA512 9f4780fb49b7895d145586eac7179e11790d1ef7029e83d9bb00f809ba60238c470174e9d7dbf8b5f443b79aac5d1b78e452135fb66eded6d0d67a6aad0356d4
|
||||
DIST purpose-6.12.0.tar.xz 187336 BLAKE2B b7edc6655bd2b514e29ed2b6e501dcd62cf44e39a2ba9d0735bcd7b24e069007d6b4418b01674ada10708b772e5d000ed13186ed403641eec516de1be9d716cf SHA512 cf8a539724540be136dc4625ac6d01ccfb3e60045af5ebbb9e9e0d3ca81ef1ade89b46b53881f8e8fd826d99188586a1079fba0aa82c0b3cc7a056955a92a875
|
||||
|
||||
@@ -0,0 +1,45 @@
|
||||
# Copyright 1999-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="${PN/-kaccounts-services/}"
|
||||
inherit ecm-common frameworks.kde.org
|
||||
|
||||
DESCRIPTION="KAccounts generated service files for nextcloud and google services"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm64"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="
|
||||
!<kde-frameworks/purpose-5.116.0-r2:5
|
||||
!<kde-frameworks/purpose-6.5.0-r1:6
|
||||
"
|
||||
BDEPEND="kde-apps/kaccounts-integration:6"
|
||||
|
||||
ecm-common_inject_heredoc() {
|
||||
cat >> CMakeLists.txt <<- _EOF_ || die
|
||||
find_package(KAccounts6 REQUIRED)
|
||||
kaccounts_add_service(\${CMAKE_CURRENT_SOURCE_DIR}/src/plugins/nextcloud/nextcloud-upload.service.in)
|
||||
kaccounts_add_service(\${CMAKE_CURRENT_SOURCE_DIR}/src/plugins/youtube/google-youtube.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=2
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user