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 A839813989A for ; Thu, 27 Aug 2015 16:00:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7FE30E0826; Thu, 27 Aug 2015 16:00:49 +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 2A466E0826 for ; Thu, 27 Aug 2015 16:00:49 +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 08065340A27 for ; Thu, 27 Aug 2015 16:00:48 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2968613B for ; Thu, 27 Aug 2015 16:00:46 +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: <1440690399.78de52711edbc85a4e7ca347f7a328b9fb069a40.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/kde5.eclass X-VCS-Directories: eclass/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 78de52711edbc85a4e7ca347f7a328b9fb069a40 X-VCS-Branch: master Date: Thu, 27 Aug 2015 16:00:46 +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: 8918973d-0b15-46f9-9ae4-a0db0858b037 X-Archives-Hash: d3dbf593ed5383695daaabdd34138a63 commit: 78de52711edbc85a4e7ca347f7a328b9fb069a40 Author: Michael Palimaka gentoo org> AuthorDate: Thu Aug 27 15:46:35 2015 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Thu Aug 27 15:46:39 2015 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=78de5271 kde5.eclass: don't make kde-plasma/polkit-kde-agent block kde-apps/kde4-l10n. As sys-auth/polkit-kde-agent was never part of KDE SC 4, it's translations were never installed by kde-l10n, so there's no need to have a blocker. In addition to not being required, the blocker was encountered by all KDE 4 users who had kde-apps/kde4-l10n installed and tried to install a package that requires kde-frameworks/kauth (which pulls in kde-plasma/polkit-kde-agent). Resolving the blocker manually by enabling the minimal USE flag on kde-apps/kde4-l10n caused Plasma 4 translations to be removed. eclass/kde5.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass index cb310d7..28aba19 100644 --- a/eclass/kde5.eclass +++ b/eclass/kde5.eclass @@ -147,7 +147,7 @@ case ${KDE_AUTODEPS} in RDEPEND+=" >=kde-frameworks/kf-env-3" COMMONDEPEND+=" >=dev-qt/qtcore-${QT_MINIMAL}:5" - if [[ ${CATEGORY} = kde-plasma ]]; then + if [[ ${CATEGORY} = kde-plasma && ${PN} != polkit-kde-agent ]]; then RDEPEND+=" !kde-apps/kde4-l10n[-minimal(-)] "