From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 402381396D1 for ; Sun, 1 Oct 2017 18:09:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6773F2BC014; Sun, 1 Oct 2017 18:09:41 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 489322BC014 for ; Sun, 1 Oct 2017 18:09:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DC68A341857 for ; Sun, 1 Oct 2017 18:09:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7413C908F for ; Sun, 1 Oct 2017 18:09:38 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1506881243.f09df0f6d83d3ba2a63e441c574aad071632c06d.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/kde4-base.eclass X-VCS-Directories: eclass/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: f09df0f6d83d3ba2a63e441c574aad071632c06d X-VCS-Branch: master Date: Sun, 1 Oct 2017 18:09:38 +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: 0139dbb5-76ee-4693-ba6d-3c844aaef8a1 X-Archives-Hash: 547aa0035d33b8ec0f3ab5165709a40c commit: f09df0f6d83d3ba2a63e441c574aad071632c06d Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Oct 1 18:07:02 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Oct 1 18:07:23 2017 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=f09df0f6 kde4-base.eclass: Drop outdated pkg_postinst warning eclass/kde4-base.eclass | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/eclass/kde4-base.eclass b/eclass/kde4-base.eclass index bac6a24fc1..0c7b4c11bb 100644 --- a/eclass/kde4-base.eclass +++ b/eclass/kde4-base.eclass @@ -994,16 +994,6 @@ kde4-base_pkg_postinst() { einfo "Do _NOT_ file bugs at bugs.gentoo.org because of this ebuild!" echo fi - # for all 3rd party soft tell user that he SHOULD install kdebase-startkde or kdebase-runtime-meta - if [[ ${KDEBASE} != kde-base ]] && \ - ! has_version 'kde-apps/kdebase-runtime-meta'; then - if [[ ${KDE_REQUIRED} == always ]] || ( [[ ${KDE_REQUIRED} == optional ]] && use kde ); then - echo - ewarn "WARNING! Your system configuration does not contain \"kde-apps/kdebase-runtime-meta\"." - ewarn "With this setting you are unsupported by KDE team." - ewarn "All missing features you report for misc packages will be probably ignored or closed as INVALID." - fi - fi fi }