Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/qt:master commit in: eclass/
Date: Wed, 14 Jul 2021 13:24:10
Message-Id: 1626268160.5660a1787f797e35d75ff1dc486b398629cf4a80.asturm@gentoo
1 commit: 5660a1787f797e35d75ff1dc486b398629cf4a80
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 17 19:02:16 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 14 13:09:20 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=5660a178
7
8 qt5-build.eclass: Drop obsolete conditional for dev-qt/qtwebengine
9
10 dev-qt/qtwebengine conditional code already moved into ebuild.
11
12 Package-Manager: Portage-3.0.18, Repoman-3.0.3
13 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
14
15 eclass/qt5-build.eclass | 13 -------------
16 1 file changed, 13 deletions(-)
17
18 diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass
19 index 0b2b5518..a2fb90b5 100644
20 --- a/eclass/qt5-build.eclass
21 +++ b/eclass/qt5-build.eclass
22 @@ -127,19 +127,6 @@ EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_install sr
23 # @DESCRIPTION:
24 # Unpacks the sources.
25 qt5-build_src_unpack() {
26 - # bug 307861
27 - if [[ ${PN} == qtwebengine ]]; then
28 - eshopts_push -s extglob
29 - if is-flagq '-g?(gdb)?([1-9])'; then
30 - ewarn
31 - ewarn "You have enabled debug info (probably have -g or -ggdb in your CFLAGS/CXXFLAGS)."
32 - ewarn "You may experience really long compilation times and/or increased memory usage."
33 - ewarn "If compilation fails, please try removing -g/-ggdb before reporting a bug."
34 - ewarn
35 - fi
36 - eshopts_pop
37 - fi
38 -
39 case ${QT5_BUILD_TYPE} in
40 live) git-r3_src_unpack ;&
41 release) default ;;