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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 637DD13835A for ; Fri, 23 Apr 2021 20:27:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AA075E0848; Fri, 23 Apr 2021 20:27:08 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5DF1DE0845 for ; Fri, 23 Apr 2021 20:27:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2714F341374 for ; Fri, 23 Apr 2021 20:27:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BC0816F4 for ; Fri, 23 Apr 2021 20:27:04 +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: <1619209608.99e1e156836a66a4da9788ec9c1a4f6514cdc66a.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: 99e1e156836a66a4da9788ec9c1a4f6514cdc66a X-VCS-Branch: master Date: Fri, 23 Apr 2021 20:27:04 +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: c36328a5-910c-4af6-9736-58c03158a8ef X-Archives-Hash: b0690d092e99d69b71ba008c63ddf012 commit: 99e1e156836a66a4da9788ec9c1a4f6514cdc66a Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Apr 17 18:47:26 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Apr 23 20:26:48 2021 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=99e1e156 kde.org.eclass: Support Qt5PatchCollection stable branch Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/kde.org.eclass | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/eclass/kde.org.eclass b/eclass/kde.org.eclass index 596322f4b1..651ef680d4 100644 --- a/eclass/kde.org.eclass +++ b/eclass/kde.org.eclass @@ -52,6 +52,7 @@ declare -A KDE_ORG_CATEGORIES=( [app-office]=office [app-text]=office [dev-libs]=libraries + [dev-qt]=qt/qt [dev-util]=sdk [games-board]=games [games-kids]=education @@ -249,6 +250,10 @@ _kde.org_calculate_live_repo() { # (anongit) with anything else you might want to use. EGIT_MIRROR=${EGIT_MIRROR:=https://invent.kde.org/${KDE_ORG_CATEGORY}} + if [[ ${PV} == ?.??.9999 && ${CATEGORY} = dev-qt ]]; then + EGIT_BRANCH="kde/$(ver_cut 1-2)" + fi + if [[ ${PV} == ??.??.49.9999 && ${KDE_GEAR} = true ]]; then EGIT_BRANCH="release/$(ver_cut 1-2)" fi