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 4F2FB1580D3 for ; Wed, 29 Nov 2023 20:27:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5E9822BC019; Wed, 29 Nov 2023 20:27:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 4B0F32BC019 for ; Wed, 29 Nov 2023 20:27:44 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5E964335CEE for ; Wed, 29 Nov 2023 20:27:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C3F6513F3 for ; Wed, 29 Nov 2023 20:27:41 +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: <1701289640.fcf516962acde10c69640181257600254f3dd752.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/plasma.kde.org.eclass X-VCS-Directories: eclass/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: fcf516962acde10c69640181257600254f3dd752 X-VCS-Branch: master Date: Wed, 29 Nov 2023 20:27:41 +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: 5833decb-8eb7-47f7-8ab7-002835effbf2 X-Archives-Hash: 0b6b4a705afa09e22d4d53011cac482e commit: fcf516962acde10c69640181257600254f3dd752 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Nov 29 20:26:28 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Nov 29 20:27:20 2023 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=fcf51696 plasma.kde.org.eclass: Support versioning scheme of Plasma 6 Betas Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/plasma.kde.org.eclass | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/eclass/plasma.kde.org.eclass b/eclass/plasma.kde.org.eclass index 8326a7b5ed..8a91155fc7 100644 --- a/eclass/plasma.kde.org.eclass +++ b/eclass/plasma.kde.org.eclass @@ -67,6 +67,10 @@ elif [[ -z ${KDE_ORG_COMMIT} ]]; then _KDE_SRC_URI+="unstable/plasma/$(ver_cut 1-3)/" RESTRICT+=" mirror" ;; + 5.9?.0* ) + _KDE_SRC_URI+="unstable/plasma/$(ver_cut 1-3)/" + RESTRICT+=" mirror" + ;; *) _KDE_SRC_URI+="stable/plasma/$(ver_cut 1-3)/" ;; esac