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 C9B19139345 for ; Wed, 14 Jul 2021 13:24:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D00A2E09E5; Wed, 14 Jul 2021 13:24:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 B904AE09E5 for ; Wed, 14 Jul 2021 13:24:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 3C634342BAB for ; Wed, 14 Jul 2021 13:24:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 73A4A798 for ; Wed, 14 Jul 2021 13:24:06 +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: <1626268160.5660a1787f797e35d75ff1dc486b398629cf4a80.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: 5660a1787f797e35d75ff1dc486b398629cf4a80 X-VCS-Branch: master Date: Wed, 14 Jul 2021 13:24:06 +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: d6100417-700e-474e-ae1b-75d41889f956 X-Archives-Hash: 9433101e9784910ba3f0bd612a5e021e commit: 5660a1787f797e35d75ff1dc486b398629cf4a80 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Apr 17 19:02:16 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Jul 14 13:09:20 2021 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=5660a178 qt5-build.eclass: Drop obsolete conditional for dev-qt/qtwebengine dev-qt/qtwebengine conditional code already moved into ebuild. Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/qt5-build.eclass | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 0b2b5518..a2fb90b5 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -127,19 +127,6 @@ EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_install sr # @DESCRIPTION: # Unpacks the sources. qt5-build_src_unpack() { - # bug 307861 - if [[ ${PN} == qtwebengine ]]; then - eshopts_push -s extglob - if is-flagq '-g?(gdb)?([1-9])'; then - ewarn - ewarn "You have enabled debug info (probably have -g or -ggdb in your CFLAGS/CXXFLAGS)." - ewarn "You may experience really long compilation times and/or increased memory usage." - ewarn "If compilation fails, please try removing -g/-ggdb before reporting a bug." - ewarn - fi - eshopts_pop - fi - case ${QT5_BUILD_TYPE} in live) git-r3_src_unpack ;& release) default ;;