commit: c547dd482e070f2ebb64189b8964562ad1741f6e Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Wed Jan 21 06:26:54 2026 +0000 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org> CommitDate: Fri Jan 23 20:24:59 2026 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=c547dd48
stagebase: set `location` to /var/cache/binhost/gentoobinhost Set `location` in binrepos.conf so that fetched binpkgs get stored in a separate location. This will allow selectively enabling verification by default w/o breaking locally-built binpkgs. (Should this be 'gentoo' instead? If so, we should rename [gentoobinhost] to [gentoo] to match the Portage default of $NAME.) Bug: https://bugs.gentoo.org/945384 Bug: https://bugs.gentoo.org/945385 Signed-off-by: Sam James <sam <AT> gentoo.org> Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org> catalyst/base/stagebase.py | 1 + 1 file changed, 1 insertion(+) diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py index 882731a0..41d95db7 100644 --- a/catalyst/base/stagebase.py +++ b/catalyst/base/stagebase.py @@ -1304,6 +1304,7 @@ class StageBase(TargetBase, ClearBase, GenBase): myb.write("priority = 1\n") myb.write("sync-uri = " + self.settings["binhost"] + \ self.settings["binrepo_path"] + "\n") + myb.write("location = /var/cache/binhost/gentoobinhost\n") def fsscript(self): if "autoresume" in self.settings["options"] \
