From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 076FB13877A for ; Sun, 27 Jul 2014 19:54:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BFF6AE0B28; Sun, 27 Jul 2014 19:54:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4E212E0B28 for ; Sun, 27 Jul 2014 19:54:05 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 288D633FE30 for ; Sun, 27 Jul 2014 19:54:04 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id C81A118BF0 for ; Sun, 27 Jul 2014 19:54:02 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1406490828.c4c66ad230789d5d1ec1bf0b8c735095d4b76dfa.kensington@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: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: c4c66ad230789d5d1ec1bf0b8c735095d4b76dfa X-VCS-Branch: master Date: Sun, 27 Jul 2014 19:54:02 +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: 6d810246-efdb-4224-8e8c-f2483d134ac4 X-Archives-Hash: 7bb2227b34c480a265ad58510bf00f8a commit: c4c66ad230789d5d1ec1bf0b8c735095d4b76dfa Author: Michael Palimaka gentoo org> AuthorDate: Sun Jul 27 19:53:48 2014 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Sun Jul 27 19:53:48 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=c4c66ad2 [eclass] Disable cmake-related tests wrt bug #474004. --- eclass/qt5-build.eclass | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index d089b87..16b5d93 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -261,7 +261,8 @@ qt5-build_src_test() { EOF chmod +x "${testrunner}" - qt5_foreach_target_subdir qt5_qmake + # '-after SUBDIRS-=cmake' disables broken tests - bug #474004 + qt5_foreach_target_subdir qt5_qmake -after SUBDIRS-=cmake qt5_foreach_target_subdir emake _test_runner() { @@ -579,7 +580,7 @@ qt5_base_configure() { qt5_qmake() { local projectdir=${PWD/#${QT5_BUILD_DIR}/${S}} - "${QT5_BUILD_DIR}"/bin/qmake "${projectdir}" \ + "${QT5_BUILD_DIR}"/bin/qmake "${projectdir}" "$@" \ || die "qmake failed (${projectdir})" }