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 DC7B415ACFB for ; Thu, 13 Apr 2023 19:48:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1704AE07AE; Thu, 13 Apr 2023 19:48:51 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 0306AE07AE for ; Thu, 13 Apr 2023 19:48:50 +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 390E0340CEA for ; Thu, 13 Apr 2023 19:48:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8D350108 for ; Thu, 13 Apr 2023 19:48:48 +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: <1681415150.aafc8807b0afe5d6a3d0bdc8bde104ee4079378a.asturm@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: eclass/ X-VCS-Repository: proj/qt X-VCS-Files: eclass/qt5-build.eclass X-VCS-Directories: eclass/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: aafc8807b0afe5d6a3d0bdc8bde104ee4079378a X-VCS-Branch: master Date: Thu, 13 Apr 2023 19:48:48 +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: 277282e0-0bbf-48b2-87de-a35b4b765cb1 X-Archives-Hash: 861cdcd7edd78abf06943c657198e0e3 commit: aafc8807b0afe5d6a3d0bdc8bde104ee4079378a Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Apr 13 19:45:50 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Apr 13 19:45:50 2023 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=aafc8807 qt5-build.eclass: Set _QT5_GENTOOPATCHSET_REV=4 for >=Qt5Base-5.15.9 Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/qt5-build.eclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 25499b0c..f4f4d925 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -126,11 +126,11 @@ fi if [[ ${QT5_MODULE} == qtbase ]]; then case ${PV} in - 5.15.7) - _QT5_GENTOOPATCHSET_REV=2 + 5.15.8) + _QT5_GENTOOPATCHSET_REV=3 ;; *) - _QT5_GENTOOPATCHSET_REV=3 + _QT5_GENTOOPATCHSET_REV=4 ;; esac SRC_URI+=" https://dev.gentoo.org/~asturm/distfiles/qtbase-5.15-gentoo-patchset-${_QT5_GENTOOPATCHSET_REV}.tar.xz"