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 7F1FF138247 for ; Fri, 3 Jan 2014 05:03:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DE092E0A92; Fri, 3 Jan 2014 05:03:26 +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 59D6BE0A92 for ; Fri, 3 Jan 2014 05:03:26 +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 83F2A33F473 for ; Fri, 3 Jan 2014 05:03:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id A7870E5533 for ; Fri, 3 Jan 2014 05:03:22 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1388723968.75f383147ce74c5de6e09d80a8ae43f982fc24c4.dol-sen@gentoo> Subject: [gentoo-commits] proj/catalyst:pending commit in: /, modules/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst modules/generic_stage_target.py X-VCS-Directories: / modules/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 75f383147ce74c5de6e09d80a8ae43f982fc24c4 X-VCS-Branch: pending Date: Fri, 3 Jan 2014 05:03:22 +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: b05d6f4d-4e60-46aa-9778-3dad43958603 X-Archives-Hash: 1835afa8b8f4159c8b903e7e1f61ba59 commit: 75f383147ce74c5de6e09d80a8ae43f982fc24c4 Author: Brian Dolbec gentoo org> AuthorDate: Fri Dec 20 00:07:15 2013 +0000 Commit: Brian Dolbec gmail com> CommitDate: Fri Jan 3 04:39:28 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=75f38314 Set mountmap["icecream"] from settings for now. “mountmap” is for source paths. “mounts” is for path-agnostic keys. I plan to add a source_mounts to settings later to compliment the target_mounts paths. --- catalyst | 1 + modules/generic_stage_target.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/catalyst b/catalyst index 82b0942..cb6c022 100755 --- a/catalyst +++ b/catalyst @@ -66,6 +66,7 @@ def parse_config(myconfig): confdefaults = { "distdir": "/usr/portage/distfiles", "hash_function": "crc32", + "icecream": "/var/cache/icecream", "local_overlay": "/usr/local/portage", "options": "", "packagedir": "/usr/portage/packages", diff --git a/modules/generic_stage_target.py b/modules/generic_stage_target.py index 63a8ff5..7919f07 100644 --- a/modules/generic_stage_target.py +++ b/modules/generic_stage_target.py @@ -250,8 +250,8 @@ class generic_stage_target(generic_target): self.env["CCACHE_DIR"] = self.target_mounts["ccache"] if "ICECREAM" in self.settings: - self.mounts.append("/var/cache/icecream") - self.mountmap["/var/cache/icecream"]="/var/cache/icecream" + self.mounts.append("icecream") + self.mountmap["icecream"] = self.settings["icecream"] self.env["PATH"] = self.target_mounts["icecream"] + ":" + \ self.env["PATH"] 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 53C89138247 for ; Mon, 6 Jan 2014 02:00:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B50D6E0BED; Mon, 6 Jan 2014 02:00:55 +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 F12E7E0BEA for ; Mon, 6 Jan 2014 02:00:54 +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 2123E33F71D for ; Mon, 6 Jan 2014 02:00:54 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 149BAE5536 for ; Mon, 6 Jan 2014 02:00:52 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1388723968.75f383147ce74c5de6e09d80a8ae43f982fc24c4.dol-sen@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: /, modules/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst modules/generic_stage_target.py X-VCS-Directories: / modules/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 75f383147ce74c5de6e09d80a8ae43f982fc24c4 X-VCS-Branch: master Date: Mon, 6 Jan 2014 02:00:52 +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: e592d8a1-bf00-48dd-a23e-fec42ce08c6a X-Archives-Hash: 28bccbd49f21749e7e014438d4d1c74b Message-ID: <20140106020052.3mlLpJ-mxCF0IVayPNgJ1SpIXD0-m5dJWEmG8QuPpKg@z> commit: 75f383147ce74c5de6e09d80a8ae43f982fc24c4 Author: Brian Dolbec gentoo org> AuthorDate: Fri Dec 20 00:07:15 2013 +0000 Commit: Brian Dolbec gmail com> CommitDate: Fri Jan 3 04:39:28 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=75f38314 Set mountmap["icecream"] from settings for now. “mountmap” is for source paths. “mounts” is for path-agnostic keys. I plan to add a source_mounts to settings later to compliment the target_mounts paths. --- catalyst | 1 + modules/generic_stage_target.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/catalyst b/catalyst index 82b0942..cb6c022 100755 --- a/catalyst +++ b/catalyst @@ -66,6 +66,7 @@ def parse_config(myconfig): confdefaults = { "distdir": "/usr/portage/distfiles", "hash_function": "crc32", + "icecream": "/var/cache/icecream", "local_overlay": "/usr/local/portage", "options": "", "packagedir": "/usr/portage/packages", diff --git a/modules/generic_stage_target.py b/modules/generic_stage_target.py index 63a8ff5..7919f07 100644 --- a/modules/generic_stage_target.py +++ b/modules/generic_stage_target.py @@ -250,8 +250,8 @@ class generic_stage_target(generic_target): self.env["CCACHE_DIR"] = self.target_mounts["ccache"] if "ICECREAM" in self.settings: - self.mounts.append("/var/cache/icecream") - self.mountmap["/var/cache/icecream"]="/var/cache/icecream" + self.mounts.append("icecream") + self.mountmap["icecream"] = self.settings["icecream"] self.env["PATH"] = self.target_mounts["icecream"] + ":" + \ self.env["PATH"]