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 8DB67139694 for ; Sun, 23 Jul 2017 22:34:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E19C5E0E62; Sun, 23 Jul 2017 22:34:18 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 C02EEE0E62 for ; Sun, 23 Jul 2017 22:34:18 +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 A482B3417F6 for ; Sun, 23 Jul 2017 22:34:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6E26E74AB for ; Sun, 23 Jul 2017 22:34:16 +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: <1500848040.001ba933be53882118e301105086175a46375dbc.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/kde4-base.eclass X-VCS-Directories: eclass/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 001ba933be53882118e301105086175a46375dbc X-VCS-Branch: master Date: Sun, 23 Jul 2017 22:34:16 +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: 84726f2b-fca5-4991-8c63-6bd2352994d5 X-Archives-Hash: bc1038310234ec48a588d4f2edef5270 commit: 001ba933be53882118e301105086175a46375dbc Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jul 23 22:14:00 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jul 23 22:14:00 2017 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=001ba933 kde4-base.eclass: Drop obsolete minimum GCC check eclass/kde4-base.eclass | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/eclass/kde4-base.eclass b/eclass/kde4-base.eclass index b4b8ad3260..05b1bc0ed9 100644 --- a/eclass/kde4-base.eclass +++ b/eclass/kde4-base.eclass @@ -660,7 +660,7 @@ debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: SRC_URI is ${SRC_URI}" kde4-base_pkg_setup() { debug-print-function ${FUNCNAME} "$@" - if has handbook ${IUSE} || has "+handbook" ${IUSE} && [ "${KDE_HANDBOOK}" != optional ] ; then + if has handbook ${IUSE} || has "+handbook" ${IUSE} && [[ "${KDE_HANDBOOK}" != optional ]] ; then eqawarn "Handbook support is enabled via KDE_HANDBOOK=optional in the ebuild." eqawarn "Please do not just set IUSE=handbook, as this leads to dependency errors." fi @@ -668,16 +668,6 @@ kde4-base_pkg_setup() { # Don't set KDEHOME during compilation, it will cause access violations unset KDEHOME - # Check if gcc compiler is fresh enough. - # In theory should be in pkg_pretend but we check it only for kdelibs there - # and for others we do just quick scan in pkg_setup because pkg_pretend - # executions consume quite some time (ie. when merging 300 packages at once will cause 300 checks) - if [[ ${MERGE_TYPE} != binary ]] && tc-is-gcc; then - [[ $(gcc-major-version) -lt 4 ]] || \ - ( [[ $(gcc-major-version) -eq 4 && $(gcc-minor-version) -le 6 ]] ) \ - && die "Sorry, but gcc-4.6 and earlier wont work for some KDE packages." - fi - KDEDIR=/usr : ${PREFIX:=/usr} EKDEDIR=${EPREFIX}/usr