commit: 681afcc20ad4f566e9696ae7464b997c592dbe8e 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: Sun Feb 15 14:59:09 2026 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=681afcc2
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> (cherry picked from commit c547dd482e070f2ebb64189b8964562ad1741f6e) catalyst/base/stagebase.py | 1 + 1 file changed, 1 insertion(+) diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py index ef70e8fa..698e6825 100644 --- a/catalyst/base/stagebase.py +++ b/catalyst/base/stagebase.py @@ -1288,6 +1288,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"] \
