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 12E2815800A for ; Sat, 17 Jun 2023 20:34:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 25F05E0877; Sat, 17 Jun 2023 20:34:43 +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 06B4DE086A for ; Sat, 17 Jun 2023 20:34:43 +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 C92E6340BC1 for ; Sat, 17 Jun 2023 20:34:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 116E4A66 for ; Sat, 17 Jun 2023 20:34:40 +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: <1687034048.df307a4cda55eaa63949f6d8354babb7a93bda6d.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/ecm.eclass X-VCS-Directories: eclass/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: df307a4cda55eaa63949f6d8354babb7a93bda6d X-VCS-Branch: master Date: Sat, 17 Jun 2023 20:34:40 +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: 3ae73686-6aa6-48c3-a976-75469cc7b3c2 X-Archives-Hash: 56d94eb6ccc65fc57d0c7b82c88c63eb commit: df307a4cda55eaa63949f6d8354babb7a93bda6d Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Jun 17 20:33:30 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Jun 17 20:34:08 2023 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=df307a4c ecm.eclass: Add Qt 5.15.10 to ECM_QTHELP Portage bug workaround Bug: https://bugs.gentoo.org/908715 Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/ecm.eclass | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/eclass/ecm.eclass b/eclass/ecm.eclass index 59c6fac220..c0d46ce0e0 100644 --- a/eclass/ecm.eclass +++ b/eclass/ecm.eclass @@ -247,13 +247,22 @@ case ${ECM_QTHELP} in if [[ ${_KFSLOT} == 6 ]]; then BDEPEND+=" dev-qt/qttools:${_KFSLOT}[assistant]" else - BDEPEND+=" doc? ( - =dev-qt/qtcore-5.15.9*:5 - =dev-qt/qtgui-5.15.9*:5 - =dev-qt/qthelp-5.15.9*:5 - =dev-qt/qtsql-5.15.9*:5 - =dev-qt/qtwidgets-5.15.9*:5 - )" + BDEPEND+=" doc? ( || ( + ( + =dev-qt/qtcore-5.15.10*:5 + =dev-qt/qtgui-5.15.10*:5 + =dev-qt/qthelp-5.15.10*:5 + =dev-qt/qtsql-5.15.10*:5 + =dev-qt/qtwidgets-5.15.10*:5 + ) + ( + =dev-qt/qtcore-5.15.9*:5 + =dev-qt/qtgui-5.15.9*:5 + =dev-qt/qthelp-5.15.9*:5 + =dev-qt/qtsql-5.15.9*:5 + =dev-qt/qtwidgets-5.15.9*:5 + ) + ) )" fi ;; false) ;;