From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 08F90158042 for ; Fri, 8 Nov 2024 14:40:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 69F13E08B0; Fri, 8 Nov 2024 14:40:14 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4FDC6E08B0 for ; Fri, 8 Nov 2024 14:40:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 913DF342FA3 for ; Fri, 8 Nov 2024 14:40:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6A6AE22D7 for ; Fri, 8 Nov 2024 14:40:10 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1731076751.04570282b38d683759baba899dfb4a675215bba9.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-frameworks/purpose-kaccounts-services/ X-VCS-Repository: proj/kde X-VCS-Files: kde-frameworks/purpose-kaccounts-services/purpose-kaccounts-services-6.8.0.ebuild X-VCS-Directories: kde-frameworks/purpose-kaccounts-services/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 04570282b38d683759baba899dfb4a675215bba9 X-VCS-Branch: master Date: Fri, 8 Nov 2024 14:40:10 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: bca1ccb8-8487-4377-b1ba-d45b61542152 X-Archives-Hash: 066cfe0763bd4b35ac5bcd14e4806f02 commit: 04570282b38d683759baba899dfb4a675215bba9 Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Nov 8 14:39:11 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Nov 8 14:39:11 2024 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=04570282 kde-frameworks/purpose-kaccounts-services: drop 6.8.0 Signed-off-by: Andreas Sturmlechner gentoo.org> .../purpose-kaccounts-services-6.8.0.ebuild | 56 ---------------------- 1 file changed, 56 deletions(-) diff --git a/kde-frameworks/purpose-kaccounts-services/purpose-kaccounts-services-6.8.0.ebuild b/kde-frameworks/purpose-kaccounts-services/purpose-kaccounts-services-6.8.0.ebuild deleted file mode 100644 index 488d5a17d7..0000000000 --- a/kde-frameworks/purpose-kaccounts-services/purpose-kaccounts-services-6.8.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 - -# this is purely for service file creation -ECM_I18N="false" -ECM_HANDBOOK="false" -KDE_ORG_NAME="${PN/-kaccounts-services/}" -KF5_BDEPEND=( "kde-apps/kaccounts-integration:6[qt5]" ) -KF6_BDEPEND=( "kde-apps/kaccounts-integration:6" ) -KFMIN=5.115.0 -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=" - !> 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}/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 -}