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 8BA56158091 for ; Wed, 8 Jun 2022 13:33:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8B5F9E077C; Wed, 8 Jun 2022 13:33:39 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 6A92CE077C for ; Wed, 8 Jun 2022 13:33:39 +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 556733410F5 for ; Wed, 8 Jun 2022 13:33:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9E09D4F6 for ; Wed, 8 Jun 2022 13:33:36 +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: <1654694001.b51187f38365d3a658c10b84e9c65d8bfbe67bff.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/kde.org.eclass X-VCS-Directories: eclass/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: b51187f38365d3a658c10b84e9c65d8bfbe67bff X-VCS-Branch: master Date: Wed, 8 Jun 2022 13:33:36 +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: aa00fdec-3bf5-4ba9-a857-a78ed1c038b5 X-Archives-Hash: 8c2ff3af581f8c9a998a61beeb5ec237 commit: b51187f38365d3a658c10b84e9c65d8bfbe67bff Author: Ulrich Müller gentoo org> AuthorDate: Mon May 9 13:49:23 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Jun 8 13:13:21 2022 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=b51187f3 kde.org.eclass: Don't indent eclass documentation Signed-off-by: Ulrich Müller gentoo.org> Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/kde.org.eclass | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/eclass/kde.org.eclass b/eclass/kde.org.eclass index 4a424dd2b0..7eb6013d6d 100644 --- a/eclass/kde.org.eclass +++ b/eclass/kde.org.eclass @@ -137,6 +137,16 @@ esac # a proper error message via pkg_nofetch. KDE_UNRELEASED=( kde-apps-22.04.2 ) +# @ECLASS_VARIABLE: EGIT_MIRROR +# @DESCRIPTION: +# This variable allows easy overriding of default kde mirror service +# (anongit) with anything else you might want to use. + +# @ECLASS_VARIABLE: EGIT_REPONAME +# @DESCRIPTION: +# This variable allows overriding of default repository name. +# Specify only if this differs from PN and KDE_ORG_NAME. + HOMEPAGE="https://kde.org/" case ${CATEGORY} in @@ -248,10 +258,6 @@ _kde.org_calculate_live_repo() { SRC_URI="" - # @ECLASS_VARIABLE: EGIT_MIRROR - # @DESCRIPTION: - # This variable allows easy overriding of default kde mirror service - # (anongit) with anything else you might want to use. EGIT_MIRROR=${EGIT_MIRROR:=https://invent.kde.org/${KDE_ORG_CATEGORY}} if [[ ${PV} == 5.??(.?)*.9999 && ${CATEGORY} == dev-qt ]]; then @@ -266,10 +272,6 @@ _kde.org_calculate_live_repo() { EGIT_BRANCH="Plasma/$(ver_cut 1-2)" fi - # @ECLASS_VARIABLE: EGIT_REPONAME - # @DESCRIPTION: - # This variable allows overriding of default repository - # name. Specify only if this differs from PN and KDE_ORG_NAME. EGIT_REPO_URI="${EGIT_MIRROR}/${EGIT_REPONAME:=$KDE_ORG_NAME}.git" }