* [gentoo-commits] proj/catalyst:pending commit in: /, modules/
@ 2013-12-20 0:29 Brian Dolbec
0 siblings, 0 replies; 7+ messages in thread
From: Brian Dolbec @ 2013-12-20 0:29 UTC (permalink / raw
To: gentoo-commits
commit: 6670484675bfeffe36c46afe6a4ae0e0860c05da
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 20 00:07:15 2013 +0000
Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
CommitDate: Fri Dec 20 00:12:07 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=66704846
Set mountmap["icecream"] from settings for now.
mounts and mountmap are source paths.
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..4d31b26 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 c8d31e1..43df545 100644
--- a/modules/generic_stage_target.py
+++ b/modules/generic_stage_target.py
@@ -243,8 +243,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"]
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/catalyst:pending commit in: /, modules/
@ 2013-12-20 0:48 Brian Dolbec
0 siblings, 0 replies; 7+ messages in thread
From: Brian Dolbec @ 2013-12-20 0:48 UTC (permalink / raw
To: gentoo-commits
commit: a373e3b4548adcb63974419a568d1bdb6aa5e01c
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 20 00:07:15 2013 +0000
Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
CommitDate: Fri Dec 20 00:47:00 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=a373e3b4
Set mountmap["icecream"] from settings for now.
mounts and mountmap are source paths.
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 c8d31e1..43df545 100644
--- a/modules/generic_stage_target.py
+++ b/modules/generic_stage_target.py
@@ -243,8 +243,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"]
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/catalyst:pending commit in: /, modules/
@ 2013-12-30 1:44 Brian Dolbec
0 siblings, 0 replies; 7+ messages in thread
From: Brian Dolbec @ 2013-12-30 1:44 UTC (permalink / raw
To: gentoo-commits
commit: 3ca3cbcfd8719b95d23c9aad77f27c3ba1a3efd6
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 20 00:07:15 2013 +0000
Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
CommitDate: Sun Dec 29 18:54:06 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=3ca3cbcf
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 8d98e58..bbea57a 100644
--- a/modules/generic_stage_target.py
+++ b/modules/generic_stage_target.py
@@ -249,8 +249,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"]
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/catalyst:pending commit in: /, modules/
@ 2013-12-31 4:22 Brian Dolbec
0 siblings, 0 replies; 7+ messages in thread
From: Brian Dolbec @ 2013-12-31 4:22 UTC (permalink / raw
To: gentoo-commits
commit: f716556e688ab2fae515485ed675f45904e1a334
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 20 00:07:15 2013 +0000
Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
CommitDate: Tue Dec 31 03:58:32 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=f716556e
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 8d98e58..bbea57a 100644
--- a/modules/generic_stage_target.py
+++ b/modules/generic_stage_target.py
@@ -249,8 +249,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"]
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/catalyst:pending commit in: /, modules/
@ 2013-12-31 4:39 Brian Dolbec
0 siblings, 0 replies; 7+ messages in thread
From: Brian Dolbec @ 2013-12-31 4:39 UTC (permalink / raw
To: gentoo-commits
commit: 76e09ffb9f3d23bb0532d6acce7c69227985c811
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 20 00:07:15 2013 +0000
Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
CommitDate: Tue Dec 31 04:33:35 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=76e09ffb
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 c57c504..c6a06b6 100644
--- a/modules/generic_stage_target.py
+++ b/modules/generic_stage_target.py
@@ -249,8 +249,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"]
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/catalyst:pending commit in: /, modules/
@ 2013-12-31 4:48 Brian Dolbec
0 siblings, 0 replies; 7+ messages in thread
From: Brian Dolbec @ 2013-12-31 4:48 UTC (permalink / raw
To: gentoo-commits
commit: ebf5d0656e30571822f250ea9677b7aea70d641a
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 20 00:07:15 2013 +0000
Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
CommitDate: Tue Dec 31 04:40:14 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=ebf5d065
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 c57c504..c6a06b6 100644
--- a/modules/generic_stage_target.py
+++ b/modules/generic_stage_target.py
@@ -249,8 +249,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"]
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/catalyst:pending commit in: /, modules/
@ 2014-01-03 5:03 Brian Dolbec
0 siblings, 0 replies; 7+ messages in thread
From: Brian Dolbec @ 2014-01-03 5:03 UTC (permalink / raw
To: gentoo-commits
commit: 75f383147ce74c5de6e09d80a8ae43f982fc24c4
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 20 00:07:15 2013 +0000
Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> 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"]
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2014-01-03 5:03 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-20 0:29 [gentoo-commits] proj/catalyst:pending commit in: /, modules/ Brian Dolbec
-- strict thread matches above, loose matches on Subject: below --
2013-12-20 0:48 Brian Dolbec
2013-12-30 1:44 Brian Dolbec
2013-12-31 4:22 Brian Dolbec
2013-12-31 4:39 Brian Dolbec
2013-12-31 4:48 Brian Dolbec
2014-01-03 5:03 Brian Dolbec
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox