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 8E9BA158008 for ; Tue, 13 Jun 2023 07:13:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D0619E08C3; Tue, 13 Jun 2023 07:13:57 +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 B5A4DE08C3 for ; Tue, 13 Jun 2023 07:13:57 +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 70C28335CB7 for ; Tue, 13 Jun 2023 07:13:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E6AD61D for ; Tue, 13 Jun 2023 07:13:54 +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: <1686640425.d707b75e63eaf529e2188f316ae32aaba5b001bc.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/kde.org.eclass X-VCS-Directories: eclass/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: d707b75e63eaf529e2188f316ae32aaba5b001bc X-VCS-Branch: master Date: Tue, 13 Jun 2023 07:13:54 +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: 8474663b-42d1-48aa-bc58-79498081ae9c X-Archives-Hash: c9911cb97eed4606df3a7bd90b9dbf00 commit: d707b75e63eaf529e2188f316ae32aaba5b001bc Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Jun 13 07:11:27 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Jun 13 07:13:45 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d707b75e 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 88040026ecae..c972c12ab8a5 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 ;;