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 9DB65138247 for ; Thu, 9 Oct 2014 17:01:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 84703E0A53; Thu, 9 Oct 2014 17:00:59 +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 34AA1E0A53 for ; Thu, 9 Oct 2014 17:00:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2BEC034041E for ; Thu, 9 Oct 2014 17:00:56 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D9AD27695 for ; Thu, 9 Oct 2014 17:00:54 +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: <1412873996.355c4da66275b190d76d97aff1c008667f5c1e0b.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: 355c4da66275b190d76d97aff1c008667f5c1e0b X-VCS-Branch: master Date: Thu, 9 Oct 2014 17:00:54 +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: c87af5d3-994a-4ced-a64d-fa43e49904a3 X-Archives-Hash: 89529870132f93d6b13ac4ae1c6c64ed commit: 355c4da66275b190d76d97aff1c008667f5c1e0b Author: Davide Pesavento gentoo org> AuthorDate: Thu Oct 9 16:59:56 2014 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Thu Oct 9 16:59:56 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=355c4da6 [qt5-build.eclass] Fix assignments to RESTRICT. --- eclass/qt5-build.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 9382f76..4da3887 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -71,8 +71,8 @@ EGIT_REPO_URI=( IUSE="debug test" -[[ ${PN} == qtwebkit ]] && RESTRICT="mirror" # bug 524584 -[[ ${QT5_BUILD_TYPE} == release && ${QT5_MINOR_VERSION} -le 3 ]] && RESTRICT="test" # bug 457182 +[[ ${PN} == qtwebkit ]] && RESTRICT+=" mirror" # bug 524584 +[[ ${QT5_BUILD_TYPE} == release && ${QT5_MINOR_VERSION} -le 3 ]] && RESTRICT+=" test" # bug 457182 DEPEND=" dev-lang/perl