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 5C89E158083 for ; Wed, 25 Sep 2024 04:51:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9335DE2B31; Wed, 25 Sep 2024 04:51:26 +0000 (UTC) Received: from smtp.gentoo.org (dev.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 760D4E2B31 for ; Wed, 25 Sep 2024 04:51:26 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A609334316A for ; Wed, 25 Sep 2024 04:51:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1318F16EF for ; Wed, 25 Sep 2024 04:51:24 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1727239863.b427795a254820cc188cad8c88d47eaf7078c7f4.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/plasma-mobile.kde.org.eclass X-VCS-Directories: eclass/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: b427795a254820cc188cad8c88d47eaf7078c7f4 X-VCS-Branch: master Date: Wed, 25 Sep 2024 04:51:24 +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: 0c0e5e30-3916-43f9-b612-c59afe471013 X-Archives-Hash: 2d1d5dee57837b84325cdce19da1d690 commit: b427795a254820cc188cad8c88d47eaf7078c7f4 Author: Ulrich Müller gentoo org> AuthorDate: Mon Aug 26 12:23:35 2024 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Wed Sep 25 04:51:03 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b427795a plasma-mobile.kde.org.eclass: Remove dead eclass Signed-off-by: Ulrich Müller gentoo.org> eclass/plasma-mobile.kde.org.eclass | 49 ------------------------------------- 1 file changed, 49 deletions(-) diff --git a/eclass/plasma-mobile.kde.org.eclass b/eclass/plasma-mobile.kde.org.eclass deleted file mode 100644 index 3349f90745bd..000000000000 --- a/eclass/plasma-mobile.kde.org.eclass +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -# @DEAD -# @ECLASS: plasma-mobile.kde.org.eclass -# @MAINTAINER: -# kde@gentoo.org -# @SUPPORTED_EAPIS: 8 -# @PROVIDES: kde.org -# @BLURB: Support eclass for KDE Plasma Mobile packages. -# @DESCRIPTION: -# This eclass extends kde.org.eclass for Plasma Mobile release group to assemble -# default SRC_URI for tarballs, set up git-r3.eclass for stable/master branch -# versions or restrict access to unreleased (packager access only) tarballs -# in Gentoo KDE overlay. -# -# This eclass unconditionally inherits kde.org.eclass and all its public -# variables and helper functions (not phase functions) may be considered as -# part of this eclass's API. - -case ${EAPI} in - 8) ;; - *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; -esac - -if [[ -z ${_PLASMA_MOBILE_KDE_ORG_ECLASS} ]]; then -_PLASMA_MOBILE_KDE_ORG_ECLASS=1 - -# @ECLASS_VARIABLE: KDE_ORG_CATEGORY -# @PRE_INHERIT -# @DESCRIPTION: -# For proper description see kde.org.eclass manpage. -: "${KDE_ORG_CATEGORY:=plasma-mobile}" - -inherit kde.org - -HOMEPAGE="https://plasma-mobile.org/" - -# @ECLASS_VARIABLE: KDE_ORG_SCHEDULE_URI -# @INTERNAL -# @DESCRIPTION: -# For proper description see kde.org.eclass manpage. -KDE_ORG_SCHEDULE_URI="https://invent.kde.org/plasma/plasma-mobile/-/wikis/Release-Schedule" - -if [[ ${KDE_BUILD_TYPE} != live && -z ${KDE_ORG_COMMIT} ]]; then - SRC_URI="mirror://kde/stable/plasma-mobile/$(ver_cut 1-2)/${KDE_ORG_NAME}-${PV}.tar.xz" -fi - -fi