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 568EA1382C5 for ; Tue, 6 Mar 2018 21:18:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4232AE09E1; Tue, 6 Mar 2018 21:18:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 2067AE09E1 for ; Tue, 6 Mar 2018 21:18:36 +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 B0ED9335C2E for ; Tue, 6 Mar 2018 21:18:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 09145231 for ; Tue, 6 Mar 2018 21:18:33 +0000 (UTC) From: "Davide Pesavento" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Davide Pesavento" Message-ID: <1520371044.0809c22f07d3be0ea658cb5228aa8ec5d46d253d.pesa@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: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: 0809c22f07d3be0ea658cb5228aa8ec5d46d253d X-VCS-Branch: master Date: Tue, 6 Mar 2018 21:18:33 +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-Archives-Salt: c9754f7c-5db6-4168-ac5b-1a88e263281a X-Archives-Hash: 1c49037f4949bc1f11260c894b6d98ad commit: 0809c22f07d3be0ea658cb5228aa8ec5d46d253d Author: Davide Pesavento gentoo org> AuthorDate: Tue Mar 6 21:17:24 2018 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Tue Mar 6 21:17:24 2018 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=0809c22f qt5-build.eclass: remove gcc version check Everything older than gcc-5.4.0 has been masked for a while eclass/qt5-build.eclass | 9 --------- 1 file changed, 9 deletions(-) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index e3c50178..8bea23d4 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -146,15 +146,6 @@ EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_install sr # @DESCRIPTION: # Unpacks the sources. qt5-build_src_unpack() { - if tc-is-gcc; then - local min_gcc4_minor_version=7 - if [[ $(gcc-major-version) -lt 4 ]] || \ - [[ $(gcc-major-version) -eq 4 && $(gcc-minor-version) -lt ${min_gcc4_minor_version} ]]; then - eerror "GCC version 4.${min_gcc4_minor_version} or later is required to build this package" - die "GCC 4.${min_gcc4_minor_version} or later required" - fi - fi - # bug 307861 if [[ ${PN} == qtwebengine || ${PN} == qtwebkit ]]; then eshopts_push -s extglob