diff options
author | 2014-10-07 16:23:39 +0000 | |
---|---|---|
committer | 2014-10-07 16:23:39 +0000 | |
commit | 31693fc18b9d768c8f50108fcda292702eb74295 (patch) | |
tree | a130586277ef073aa21d2ccae2b34f12082045a0 /eclass | |
parent | Stablize on hppa after trivial bash-completion fix. (diff) | |
download | gentoo-2-31693fc18b9d768c8f50108fcda292702eb74295.tar.gz gentoo-2-31693fc18b9d768c8f50108fcda292702eb74295.tar.bz2 gentoo-2-31693fc18b9d768c8f50108fcda292702eb74295.zip |
Restrict mirror for qtwebkit wrt bug #524584
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/qt5-build.eclass | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index f761ea134e36..51a960e1c9f1 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1379 2014/09/28 20:11:05 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1380 2014/10/07 16:23:39 pesa Exp $ + + 07 Oct 2014; Davide Pesavento <pesa@gentoo.org> qt5-build.eclass: + Restrict mirror for qtwebkit wrt bug #524584 28 Sep 2014; Anthony G. Basile <blueness@gentoo.org> pax-utils.eclass: Suppress annoying warning, see diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index bc72dc0fd15c..4d65296573e3 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/qt5-build.eclass,v 1.7 2014/09/22 00:03:25 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/qt5-build.eclass,v 1.8 2014/10/07 16:23:39 pesa Exp $ # @ECLASS: qt5-build.eclass # @MAINTAINER: @@ -71,7 +71,8 @@ EGIT_REPO_URI=( IUSE="debug test" -[[ ${QT5_BUILD_TYPE} == release && ${QT5_MINOR_VERSION} -le 3 ]] && RESTRICT="test" +[[ ${PN} == qtwebkit ]] && RESTRICT="mirror" # bug 524584 +[[ ${QT5_BUILD_TYPE} == release && ${QT5_MINOR_VERSION} -le 3 ]] && RESTRICT="test" # bug 457182 DEPEND=" dev-lang/perl |