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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 38AD7158083 for ; Sat, 14 Sep 2024 03:24:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 83060E29CD; Sat, 14 Sep 2024 03:24:51 +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 6B585E29CD for ; Sat, 14 Sep 2024 03:24:51 +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 21727340441 for ; Sat, 14 Sep 2024 03:24:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0F5BF2801 for ; Sat, 14 Sep 2024 03:24:47 +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: <1726250392.0455a64d546af003882118d8337b438ba40d3bbc.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.6.0.ebuild X-VCS-Directories: kde-frameworks/purpose-kaccounts-services/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 0455a64d546af003882118d8337b438ba40d3bbc X-VCS-Branch: master Date: Sat, 14 Sep 2024 03:24:47 +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: c4d1ceb7-d0a5-4678-9b9b-816e6ac8d6d8 X-Archives-Hash: f3517e6ab06500f7a130f633499cd562 commit: 0455a64d546af003882118d8337b438ba40d3bbc Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Sep 13 17:59:52 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Sep 13 17:59:52 2024 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=0455a64d kde-frameworks/purpose-kaccounts-services: drop 6.6.0 Signed-off-by: Andreas Sturmlechner gentoo.org> .../purpose-kaccounts-services-6.6.0.ebuild | 56 ---------------------- 1 file changed, 56 deletions(-) diff --git a/kde-frameworks/purpose-kaccounts-services/purpose-kaccounts-services-6.6.0.ebuild b/kde-frameworks/purpose-kaccounts-services/purpose-kaccounts-services-6.6.0.ebuild deleted file mode 100644 index 488d5a17d7..0000000000 --- a/kde-frameworks/purpose-kaccounts-services/purpose-kaccounts-services-6.6.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 -}