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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3BEBA1580FD for ; Mon, 23 Dec 2024 17:33:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 89258E05AC; Mon, 23 Dec 2024 17:33:05 +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 6E76FE05AC for ; Mon, 23 Dec 2024 17:33: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 76BF5335DC5 for ; Mon, 23 Dec 2024 17:33:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D443EAF5 for ; Mon, 23 Dec 2024 17:33:02 +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: <1734975165.d4cbc3b7d2a161c264794a3f1372e07cb8228474.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/frameworks.kde.org.eclass X-VCS-Directories: eclass/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: d4cbc3b7d2a161c264794a3f1372e07cb8228474 X-VCS-Branch: master Date: Mon, 23 Dec 2024 17:33:02 +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: f1ee276f-4560-4491-96fd-e70eb8cfb970 X-Archives-Hash: 8c63e48900ec2660ac6d48ee08695379 commit: d4cbc3b7d2a161c264794a3f1372e07cb8228474 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Dec 23 17:31:58 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Dec 23 17:32:45 2024 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=d4cbc3b7 frameworks.kde.org.eclass: Restore SRC_URI Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/frameworks.kde.org.eclass | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/eclass/frameworks.kde.org.eclass b/eclass/frameworks.kde.org.eclass index a7324d411c..d14037de0a 100644 --- a/eclass/frameworks.kde.org.eclass +++ b/eclass/frameworks.kde.org.eclass @@ -65,6 +65,10 @@ KDE_ORG_SCHEDULE_URI+="/Frameworks" # @INTERNAL # @DESCRIPTION: # Helper variable to construct release group specific SRC_URI. -_KDE_SRC_URI="mirror://kde/" +_KDE_SRC_URI="mirror://kde/stable/frameworks/${KDE_CATV}/" + +if [[ ${KDE_BUILD_TYPE} != live && -z ${KDE_ORG_COMMIT} ]]; then + SRC_URI="${_KDE_SRC_URI}${KDE_ORG_TAR_PN}-${PV}.tar.xz" +fi fi