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 27F311389E2 for ; Mon, 24 Nov 2014 22:54:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3584AE0870; Mon, 24 Nov 2014 22:54:10 +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 D5261E0870 for ; Mon, 24 Nov 2014 22:54:09 +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 5B29D340563 for ; Mon, 24 Nov 2014 22:54:08 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0728AAD58 for ; Mon, 24 Nov 2014 22:54:07 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1416869632.a69e34f9c50dfa48660c7c1665f9ff2074b22bd1.mrueg@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/kde4-functions.eclass X-VCS-Directories: eclass/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: a69e34f9c50dfa48660c7c1665f9ff2074b22bd1 X-VCS-Branch: master Date: Mon, 24 Nov 2014 22:54:07 +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: ce76ccbb-e932-4f6a-a44b-5ca7b3ada75b X-Archives-Hash: 8d839ea9ad2738280e5c9e8e28c4e34e commit: a69e34f9c50dfa48660c7c1665f9ff2074b22bd1 Author: Manuel Rüger gentoo org> AuthorDate: Mon Nov 24 22:53:52 2014 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Mon Nov 24 22:53:52 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=a69e34f9 [eclass] Blacklist even more packages. Add FIXME. --- eclass/kde4-functions.eclass | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/eclass/kde4-functions.eclass b/eclass/kde4-functions.eclass index 1285a99..1cb769d 100644 --- a/eclass/kde4-functions.eclass +++ b/eclass/kde4-functions.eclass @@ -286,11 +286,15 @@ add_kdebase_dep() { local ver category=kde-base + # There is no kde-apps version available, only kde-base/${1}:4 or it was moved to plasma + # right now kde-base/${1}:5, probably soon kde-plasma/${1}:5. if [[ ${CATEGORY} == kde-apps && ${1} != kdelibs && ${1} != kdepimlibs && ${1} != baloo-widgets && ${1} != kactivities && ${1} != baloo && ${1} != kfilemetadata && ${1} != pykde4 && ${1} != krosspython && ${1} != nepomuk-core && ${1} != nepomuk-widgets && ${1} != kwin && ${1} != khotkeys && ${1} != systemsettings && ${1} != powerdevil && ${1} != plasma-workspace && - ${1} != krunner && ${1} != plasma-workspace && ${1} != ksysguard && ${1} != kinfocenter ]] ; then + ${1} != krunner && ${1} != plasma-workspace && ${1} != ksysguard && ${1} != kinfocenter && + ${1} != kdeplasma-addons && ${1} != kmenuedit && ${1} != kwrited && ${1} != libtaskmanager && + ${1} != klipper ]] ; then category=kde-apps fi @@ -314,6 +318,8 @@ add_kdebase_dep() { [[ -z ${1} ]] && die "Missing parameter" + #FIXME + # Drop aqua= from kf5 packages echo " >=${category}/${1}-${ver}:4[aqua=${2:+,${2}}]" }