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 AE95B1581D3 for ; Tue, 28 May 2024 19:34:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 99BB2E2A02; Tue, 28 May 2024 19:34:38 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7FA81E2A02 for ; Tue, 28 May 2024 19:34:38 +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 C3A6234068A for ; Tue, 28 May 2024 19:34:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 360971BDF for ; Tue, 28 May 2024 19:34:36 +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: <1716924862.66f2e5903d0dc56cc4cc4a25be33060c4adabf2d.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: 66f2e5903d0dc56cc4cc4a25be33060c4adabf2d X-VCS-Branch: master Date: Tue, 28 May 2024 19:34:36 +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: a03f6e57-b79f-4085-98b1-c12c30b32e33 X-Archives-Hash: d28579d9f093f41ed91dae7b0efff72c commit: 66f2e5903d0dc56cc4cc4a25be33060c4adabf2d Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue May 28 19:32:46 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue May 28 19:34:22 2024 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=66f2e590 qt5-build.eclass: qtbase: Bump _QT5_GENTOOPATCHSET_REV=6 for 5.15.14 Patch dropped (upstreamed) since _QT5_GENTOOPATCHSET_REV=5: Match deadcode elimination with cpu feature check 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 8f4e6a0a..88720e39 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.11) - _QT5_GENTOOPATCHSET_REV=4 + 5.15.13) + _QT5_GENTOOPATCHSET_REV=5 ;; *) - _QT5_GENTOOPATCHSET_REV=5 + _QT5_GENTOOPATCHSET_REV=6 ;; esac SRC_URI+=" https://dev.gentoo.org/~asturm/distfiles/qtbase-5.15-gentoo-patchset-${_QT5_GENTOOPATCHSET_REV}.tar.xz"