From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1067997-garchives=archives.gentoo.org@lists.gentoo.org>
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 855E8138335
	for <garchives@archives.gentoo.org>; Sun, 20 Jan 2019 22:26:52 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 9A97FE085B;
	Sun, 20 Jan 2019 22:26:51 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(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 78B2EE085B
	for <gentoo-commits@lists.gentoo.org>; Sun, 20 Jan 2019 22:26:51 +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 DDF5A335D16
	for <gentoo-commits@lists.gentoo.org>; Sun, 20 Jan 2019 22:26:49 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 88BF3503
	for <gentoo-commits@lists.gentoo.org>; Sun, 20 Jan 2019 22:26:48 +0000 (UTC)
From: "Tim Harder" <radhermit@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" <radhermit@gentoo.org>
Message-ID: <1548023047.362d6477d058e5fefb212b706d7e25c72d0621ba.radhermit@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/pkgcore/
X-VCS-Repository: repo/gentoo
X-VCS-Files: sys-apps/pkgcore/pkgcore-9999.ebuild
X-VCS-Directories: sys-apps/pkgcore/
X-VCS-Committer: radhermit
X-VCS-Committer-Name: Tim Harder
X-VCS-Revision: 362d6477d058e5fefb212b706d7e25c72d0621ba
X-VCS-Branch: master
Date: Sun, 20 Jan 2019 22:26:48 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: e508dc35-7602-4115-8161-36271962a49b
X-Archives-Hash: 1742c5174597ba19f30647581f2b520a

commit:     362d6477d058e5fefb212b706d7e25c72d0621ba
Author:     Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 20 22:21:44 2019 +0000
Commit:     Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Sun Jan 20 22:24:07 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=362d6477

sys-apps/pkgcore: don't run pplugincache for each py version

The cache dir for pkgcore has been moved from the pkgcore.plugins module
dir to /var/cache/pkgcore (or ~/.cache/pkgcore for regular users) so it
only needs to be generated once.

Signed-off-by: Tim Harder <radhermit <AT> gentoo.org>

 sys-apps/pkgcore/pkgcore-9999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/pkgcore/pkgcore-9999.ebuild b/sys-apps/pkgcore/pkgcore-9999.ebuild
index 34a210caba4..0bc10eacfb5 100644
--- a/sys-apps/pkgcore/pkgcore-9999.ebuild
+++ b/sys-apps/pkgcore/pkgcore-9999.ebuild
@@ -53,5 +53,5 @@ python_install_all() {
 }
 
 pkg_postinst() {
-	python_foreach_impl pplugincache
+	pplugincache
 }