Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Sat, 12 Aug 2017 16:46:42
Message-Id: 1502556375.f557e0c82d81fd592d6e441bd96eff2f4275d767.asturm@gentoo
1 commit: f557e0c82d81fd592d6e441bd96eff2f4275d767
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 22 14:10:30 2017 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 12 16:46:15 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f557e0c8
7
8 kde5-meta-pkg.eclass: Block slot 4 unconditionally
9
10 This eclass has always been unaware of KDE_BLOCK_SLOT4.
11
12 eclass/kde5-meta-pkg.eclass | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/eclass/kde5-meta-pkg.eclass b/eclass/kde5-meta-pkg.eclass
16 index c8415d392a3..a79caf145f9 100644
17 --- a/eclass/kde5-meta-pkg.eclass
18 +++ b/eclass/kde5-meta-pkg.eclass
19 @@ -17,7 +17,7 @@ HOMEPAGE="https://www.kde.org/"
20 LICENSE="metapackage"
21 SLOT="5"
22
23 -if [[ ${KDE_BLOCK_SLOT4} = true && ${CATEGORY} = kde-apps ]]; then
24 +if [[ ${CATEGORY} = kde-apps ]]; then
25 RDEPEND+=" !kde-apps/${PN}:4"
26 fi