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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2A909138334 for ; Mon, 16 Dec 2019 15:06:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 30AAAE08EF; Mon, 16 Dec 2019 15:06:52 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1540BE08EF for ; Mon, 16 Dec 2019 15:06:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6D1C534D87B for ; Mon, 16 Dec 2019 15:06:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AB7C7778 for ; Mon, 16 Dec 2019 15:06:46 +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: <1576499803.89e672cff170482048437ce34e869c75138b6c17.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: 89e672cff170482048437ce34e869c75138b6c17 X-VCS-Branch: master Date: Mon, 16 Dec 2019 15:06:46 +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: 043f42d8-99e0-4756-ae2b-680108c812fb X-Archives-Hash: 268f120e4ce2a1e7df6236e653f74141 commit: 89e672cff170482048437ce34e869c75138b6c17 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Dec 16 06:27:46 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Dec 16 12:36:43 2019 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=89e672cf qt5-build.eclass: Disable zstd for Qt5 >=5.13.2 RCC compression Closes: https://bugs.gentoo.org/699248 Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/qt5-build.eclass | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 6529b4fa..95eb6174 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -643,6 +643,9 @@ qt5_base_configure() { # enable in respective modules to avoid poisoning QT.global_private.enabled_features -no-gui -no-widgets + # QTBUG-76521, default will change to zstd in Qt6 + $([[ ${QT5_MINOR_VERSION} -ge 13 ]] && echo -no-zstd) + # module-specific options "${myconf[@]}" )