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 31607158020 for ; Fri, 28 Oct 2022 18:48:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0139EE088B; Fri, 28 Oct 2022 18:48:06 +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 D4BA0E088B for ; Fri, 28 Oct 2022 18:48:05 +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 B1823340FC0 for ; Fri, 28 Oct 2022 18:48:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 88D10627 for ; Fri, 28 Oct 2022 18:47:57 +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: <1666982647.b3f7153b98097876421773ec8139b89512598f0b.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: b3f7153b98097876421773ec8139b89512598f0b X-VCS-Branch: master Date: Fri, 28 Oct 2022 18:47:57 +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: 1977176d-fac7-4472-855e-17749dddbbef X-Archives-Hash: 8750d3209380f2f0c235ebaf3f9a8d9c commit: b3f7153b98097876421773ec8139b89512598f0b Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Oct 28 18:44:07 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Oct 28 18:44:07 2022 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=b3f7153b kde.org.eclass: With KDE_ORG_COMMIT, fetch from mirror://gentoo first Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/kde.org.eclass | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/eclass/kde.org.eclass b/eclass/kde.org.eclass index efc6f0a3ea..a39e205d0e 100644 --- a/eclass/kde.org.eclass +++ b/eclass/kde.org.eclass @@ -167,9 +167,11 @@ case ${KDE_BUILD_TYPE} in ;; *) if [[ -n ${KDE_ORG_COMMIT} ]]; then - SRC_URI="https://invent.kde.org/${KDE_ORG_CATEGORY}/${KDE_ORG_NAME}/-/" + _KDE_ORG_TARFILE="${KDE_ORG_NAME}-${PV}-${KDE_ORG_COMMIT:0:8}.tar.gz" + SRC_URI="mirror://gentoo/${_KDE_ORG_TARFILE}" + SRC_URI+=" https://invent.kde.org/${KDE_ORG_CATEGORY}/${KDE_ORG_NAME}/-/" SRC_URI+="archive/${KDE_ORG_COMMIT}/${KDE_ORG_NAME}-${KDE_ORG_COMMIT}.tar.gz" - SRC_URI+=" -> ${KDE_ORG_NAME}-${PV}-${KDE_ORG_COMMIT:0:8}.tar.gz" + SRC_URI+=" -> ${_KDE_ORG_TARFILE}" fi [[ ${KDE_ORG_UNRELEASED} == true ]] && RESTRICT+=" fetch" debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SRC_URI is ${SRC_URI}"