commit: 910ab83113f499e3cb16a6b0c7cbb2203884d41f
Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 26 19:01:40 2014 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Fri Sep 26 19:01:40 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=910ab831
[eclass] Don't search mirrors for beta versions that will only ever be in the
overlay.
---
eclass/kde5.eclass | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
index ea93d39..9b5585f 100644
--- a/eclass/kde5.eclass
+++ b/eclass/kde5.eclass
@@ -217,7 +217,9 @@ _calculate_src_uri() {
case ${PV} in
5.?.[6-9]? )
# Plasma 5 beta releases
-
SRC_URI="mirror://kde/unstable/plasma/${PV}/src/${_kmname}-${PV}.tar.xz" ;;
+
SRC_URI="mirror://kde/unstable/plasma/${PV}/src/${_kmname}-${PV}.tar.xz"
+ RESTRICT+=" mirror"
+ ;;
*)
# Plasma 5 stable releases
SRC_URI="mirror://kde/stable/plasma/${PV}/${_kmname}-${PV}.tar.xz" ;;