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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 830D8158008 for ; Tue, 13 Jun 2023 07:12:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C763FE08C3; Tue, 13 Jun 2023 07:12:37 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 AFDAFE08C3 for ; Tue, 13 Jun 2023 07:12:37 +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 C300B335CB7 for ; Tue, 13 Jun 2023 07:12:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 06DA01D for ; Tue, 13 Jun 2023 07:12:35 +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: <1686640287.31433838eaf10631f74a41f8785c3dbaa6d2fd03.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: 31433838eaf10631f74a41f8785c3dbaa6d2fd03 X-VCS-Branch: master Date: Tue, 13 Jun 2023 07:12:35 +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: 563f53d0-135f-4810-b9d5-d6ce7ee96601 X-Archives-Hash: 643ce4fa81e6affa77739e9c55f2b91a commit: 31433838eaf10631f74a41f8785c3dbaa6d2fd03 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Jun 13 07:11:27 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Jun 13 07:11:27 2023 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=31433838 kde.org.eclass: Fix Qt5PatchCollection matching to 5.15.*.9999 Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/kde.org.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/kde.org.eclass b/eclass/kde.org.eclass index 88040026ec..c972c12ab8 100644 --- a/eclass/kde.org.eclass +++ b/eclass/kde.org.eclass @@ -161,7 +161,7 @@ case ${KDE_BUILD_TYPE} in EGIT_MIRROR=${EGIT_MIRROR:=https://invent.kde.org/${KDE_ORG_CATEGORY}} EGIT_REPO_URI="${EGIT_MIRROR}/${EGIT_REPONAME:=$KDE_ORG_NAME}.git" - if [[ ${PV} == 5.??.?.9999 && ${CATEGORY} == dev-qt ]]; then + if [[ ${PV} == 5.15.*.9999 && ${CATEGORY} == dev-qt ]]; then EGIT_BRANCH="kde/$(ver_cut 1-2)" fi ;;