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 F2640138247 for ; Sun, 15 Dec 2013 04:20:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EF905E0B83; Sun, 15 Dec 2013 04:19:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3C5A5E0B87 for ; Sun, 15 Dec 2013 04:19:53 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 68E4333F57D for ; Sun, 15 Dec 2013 04:19:52 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id A03E5E57A7 for ; Sun, 15 Dec 2013 04:19:49 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1387081064.85861ac2ec6f9258bcad57d230e5820a81ab65b3.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: modules/ X-VCS-Repository: proj/catalyst X-VCS-Files: modules/generic_stage_target.py X-VCS-Directories: modules/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 85861ac2ec6f9258bcad57d230e5820a81ab65b3 X-VCS-Branch: master Date: Sun, 15 Dec 2013 04:19:49 +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: 592bac89-9388-48d9-b912-3b4d8c109165 X-Archives-Hash: f863df56ac4c09b5e7bd6a4e0161504d commit: 85861ac2ec6f9258bcad57d230e5820a81ab65b3 Author: Brian Dolbec gentoo org> AuthorDate: Thu Dec 20 02:56:04 2012 +0000 Commit: Matt Turner gentoo org> CommitDate: Sun Dec 15 04:17:44 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=85861ac2 modules/generic_stage_target.py: Use 'packagedir' instead of '/usr/portage/packages' as the mountmap key W. Trevor King: Refactored Git history for Brian Dolbec's content changes. Reviewed-by: Matt Turner gentoo.org> Signed-off-by: W. Trevor King tremily.us> Signed-off-by: Brian Dolbec gentoo.org> --- modules/generic_stage_target.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/generic_stage_target.py b/modules/generic_stage_target.py index f8dd352..dc02ad2 100644 --- a/modules/generic_stage_target.py +++ b/modules/generic_stage_target.py @@ -195,9 +195,8 @@ class generic_stage_target(generic_target): self.set_pkgcache_path() print "Location of the package cache is "+\ self.settings["pkgcache_path"] - self.mounts.append("/usr/portage/packages") - self.mountmap["/usr/portage/packages"]=\ - self.settings["pkgcache_path"] + self.mounts.append("packagedir") + self.mountmap["packagedir"] = self.settings["pkgcache_path"] if "KERNCACHE" in self.settings: self.set_kerncache_path()